From 7b22e222f8f6c187dfe07b202dd1406bf71d8aa7 Mon Sep 17 00:00:00 2001 From: squid-protocol Date: Mon, 31 Aug 2026 14:20:35 -0400 Subject: [PATCH] fix(jcl): route //* comments to the comment surface; wire COND=/MSGLEVEL/debt rules (#2610) prism.py: jcl's line_exclusive delimiter list is (correctly) empty -- //* is a whole-line positional prefix and every JCL statement also starts with //, so the stateless per-line stripper could never express it. Every //* comment line therefore stayed in the code stream: doc_loc was 0 for all JCL, comment_analysis (doc/ownership/debt) ran on an empty string engine-wide, and ownership only counted by accident on the wrong surface. New _strip_jcl_comments whole-line partition (line-count preserving, same slot as the cobol/fortran positional path) with a case-sensitive negative guard for the ten JES3 //*-prefixed control verbs, which are statements. jcl.py: with a live comment surface, wire the signal rules JCL has real morphology for: fragile_debt/planned_debt (shared GLOBAL_* patterns, as cobol), safety = COND= return-code tests, safety_bypasses = COND=EVEN/ ONLY (run despite abend; bounded one-level-paren scan for the combined form), telemetry = MSGLEVEL=/MSGCLASS=. cleanup (DISP DELETE) was deliberately NOT added -- DISP= already feeds io and would double-count. Golden masters re-blessed (both modes): expected diff -- every corpus .jcl's coding/doc LOC split changes, telemetry/debt signals appear on real decks, and the 3D topology reflows globally with the mass change. Found via keyword-rosetta cross-language consistency work (#2581): jcl comment_lines measured ~0 real vs 46-language median 30. Closes #2610 Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01PUfXMUECX4Vq1vqh9mMQqt --- gitgalaxy/core/prism.py | 48 + .../language_standards/languages/jcl.py | 43 +- tests/core_engine/test_prism.py | 46 + tests/extraction/languages/test_jcl_strict.py | 63 + tests/golden_master_audit.json | 30446 ++++++++-------- tests/golden_master_zero_dep_audit.json | 30434 +++++++-------- 6 files changed, 30637 insertions(+), 30443 deletions(-) diff --git a/gitgalaxy/core/prism.py b/gitgalaxy/core/prism.py index 3d9b5cdaa..6871e05c3 100644 --- a/gitgalaxy/core/prism.py +++ b/gitgalaxy/core/prism.py @@ -217,6 +217,21 @@ def __init__( self.PYTHON_DOC_PATTERN = re.compile(PRISM_CONFIG.get("PYTHON_DOC_PATTERN", ""), re.M) self.PHP_HEREDOC_PATTERN = re.compile(PRISM_CONFIG.get("PHP_HEREDOC_PATTERN", ""), re.M) + # #2610: JCL's `//*` comment is a whole-line positional prefix that the + # line_exclusive delimiter stripper can't express (every JCL *statement* + # also starts with `//`, so a bare `//` delimiter would comment out the + # entire language -- which is why gitgalaxy_config.py's per-language + # delimiter list for jcl is deliberately empty). Matched per-line in + # _strip_jcl_comments instead. The negative lookahead keeps the ten + # JES3 control statements (`//*MAIN`, `//*FORMAT`, ...) in the code + # stream: they share the `//*` prefix but are real statements, not + # comments. Deliberately case-SENSITIVE -- JES3 verbs are only valid + # uppercase, while a lowercase `//*main story...` prose comment must + # still strip. + self.JCL_COMMENT_LINE_PATTERN = re.compile( + r"^//\*(?!(?:MAIN|FORMAT|NET|DATASET|ENDDATASET|PROCESS|ENDPROCESS|OPERATOR|PAUSE|ROUTE)\b)" + ) + self.logger.info(f"Structural Scanner Online | Calibrated {len(self.REGEX_MATRIX)} syntax rules.") def split_streams(self, content: str, primary_lang: str) -> PrismResult: @@ -375,6 +390,16 @@ def _strip_segment_comments(self, text: str, lang_id: str, family: str) -> tuple lits.extend(pos_lits.splitlines()) return code, "\n".join(lits) + if lang_id == "jcl": + # #2610: jcl is nominally line_exclusive but its delimiter list is + # (correctly) empty -- see JCL_COMMENT_LINE_PATTERN's construction + # note. Without this branch, every `//*` comment line stayed in the + # code stream, so jcl's comment surface (doc/ownership/debt rules, + # doc_loc) was structurally dead engine-wide. + code, jcl_lits = self._strip_jcl_comments(text) + lits.extend(jcl_lits) + return code, "\n".join(lits) + if family == "line_exclusive": code, single_lits = self._strip_single_line_comments(text, lang_id) if single_lits: @@ -1052,6 +1077,29 @@ def unmask(chunk: str) -> str: # 3. Final Logic Unmasking return unmask(protected_code), lits + def _strip_jcl_comments(self, text: str) -> tuple[str, list[str]]: + """ + Whole-line `//*` comment stripping for JCL (#2610). + + JCL has no inline comment form this engine models -- the comment + statement is the entire physical line, prefix-anchored at column 1 -- + so this is a pure per-line partition with no literal shielding needed + (a `//*` mid-line is operand text, and a line not starting `//*` can + never become a comment partway through). Line count is preserved by + emitting an empty code line per stripped comment, mirroring + _strip_positional_comments, so downstream spatial line numbers stay + aligned with the raw file. JES3 control verbs (`//*MAIN` etc.) are + excluded by JCL_COMMENT_LINE_PATTERN and stay in the code stream. + """ + code, lits = [], [] + for line in text.split("\n"): + if self.JCL_COMMENT_LINE_PATTERN.match(line): + lits.append(line) + code.append("") + else: + code.append(line) + return "\n".join(code), lits + def _strip_positional_comments( self, text: str, abap_mode: bool = False, cobol_mode: bool = False ) -> tuple[str, str]: diff --git a/gitgalaxy/standards/language_standards/languages/jcl.py b/gitgalaxy/standards/language_standards/languages/jcl.py index 355ad7376..9aa012b7d 100644 --- a/gitgalaxy/standards/language_standards/languages/jcl.py +++ b/gitgalaxy/standards/language_standards/languages/jcl.py @@ -11,6 +11,8 @@ import re from typing import Any +from .._shared_patterns import GLOBAL_FRAGILE_DEBT, GLOBAL_PLANNED_DEBT + DEFINITION: dict[str, Any] = { "_meta": { "target_version": "IBM z/OS JCL", @@ -80,9 +82,32 @@ "high_risk_execution": re.compile(r"\bPGM=[A-Za-z0-9_#$@]+\b", re.I), # I/O (Data Set Names and Sysouts) "io": re.compile(r"\b(DSN|DSNAME|SYSOUT|SYSPRINT|DISP=)\b", re.I), - # JCL doesn't have traditional code equivalents for these, keep them null to prevent crashes - "safety": None, + # #2610: JCL's error handling is the COND= operand -- a return-code + # test deciding whether a step runs after a prior step's outcome. + # Unanchored (like io's DISP=/PGM= operands) because COND= routinely + # sits on a `//` continuation line, not the EXEC line itself (the same + # real-corpus shape the args rule's #2482 note documents). The negative + # lookahead keeps the plain bypass forms (COND=EVEN / COND=ONLY) out of + # safety: those are the *absence* of a return-code test and belong to + # safety_bypasses below. A combined form like COND=((4,LT),EVEN) + # deliberately counts BOTH -- it carries a real RC test and a run-even- + # after-abend bypass at once. + "safety": re.compile(r"\bCOND=(?!(?:EVEN|ONLY)\b)", re.I), "api": None, + # #2610: COND=EVEN ("run even if a prior step abended") and COND=ONLY + # ("run only after an abend") execute a step in spite of upstream + # failure -- JCL's native ignore-the-error idiom. Two alternatives: + # the bare form, and the parenthesized combined form + # (COND=((4,LT),EVEN)), whose scan is the bounded one-level-paren + # idiom -- the two branches are disjoint on their first character + # ("(" vs not) and the inner star sits inside literal parens, so no + # position ever partitions ambiguously (ReDoS-safe), and neither + # branch can cross a newline or escape the COND value's own parens to + # reach an unrelated EVEN/ONLY later on the line. + "safety_bypasses": re.compile( + r"\bCOND=(?:EVEN|ONLY)\b|\bCOND=\((?:[^\n()]|\([^\n()]*\))*?\b(?:EVEN|ONLY)\b", + re.I, + ), # BUG FIX: unanchored -- `\bSET\s+NAME=` matched "SET" anywhere in the # file, including inline SYSIN card data (`//SYSIN DD *` ... `/*`) that # isn't a JCL statement at all (e.g. an embedded SQL/shell/config @@ -118,7 +143,19 @@ # captured garbage from that *different* line (including its own "//*" # prefix) instead of correctly failing to match. Bounded to `[ \t]+`. "ownership": re.compile(r"^//\*[ \t]*(?:Author|Created by|Maintainer):[ \t]+(.*)", re.I | re.M), - "telemetry": None, + # #2610: MSGLEVEL= (what the job log records: statements/allocations) + # and MSGCLASS= (where the log goes) are JCL's observability dials -- + # the closest native equivalent of configuring a logger. Unanchored + # like the other operand rules (JOB-card operands continue across `//` + # lines the same way EXEC's do). + "telemetry": re.compile(r"\bMSG(?:LEVEL|CLASS)=", re.I), "debug_prints": None, + # #2610: comment-anchored debt markers. Dead rules before the #2610 + # prism fix (jcl's comment stream was always empty); now that `//*` + # lines reach comment_analysis, a `//* TODO ...` banner in a real job + # deck counts the same way it does in cobol. Shared global patterns, + # same as cobol.py. + "planned_debt": GLOBAL_PLANNED_DEBT, + "fragile_debt": GLOBAL_FRAGILE_DEBT, }, } diff --git a/tests/core_engine/test_prism.py b/tests/core_engine/test_prism.py index 90b62f73b..c06c59b9e 100644 --- a/tests/core_engine/test_prism.py +++ b/tests/core_engine/test_prism.py @@ -466,6 +466,52 @@ def test_prism_strips_comments_against_the_real_config(): assert "a comment" not in result["code_stream"] assert "a comment" in result["comment_stream"] + # jcl (#2610): nominally line_exclusive but with a deliberately empty + # delimiter list (`//` prefixes every statement too), served by its own + # whole-line `//*` stripper instead + result = real_prism.split_streams("//* a comment\n//STEP1 EXEC PGM=IEFBR14\n", "jcl") + assert "a comment" not in result["code_stream"] + assert "a comment" in result["comment_stream"] + assert "EXEC PGM=IEFBR14" in result["code_stream"] + + +def test_prism_jcl_comment_stripping_details(): + """ + #2610: JCL `//*` whole-line comments move to the comment stream while + everything `//`-statement-shaped stays code -- including the ten JES3 + control statements (`//*MAIN` etc.), which share the comment's prefix + but are real statements (uppercase-only, hence the guard being + case-sensitive while a lowercase `//*main ...` prose comment still + strips). Line count must be preserved so downstream spatial line + numbers stay aligned with the raw file. + """ + from gitgalaxy.standards.gitgalaxy_config import LEXICAL_FAMILY_HEURISTICS + from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS + + real_prism = Prism(LEXICAL_FAMILY_HEURISTICS, LANGUAGE_DEFINITIONS) + deck = ( + "//* banner comment\n" + "//*MAIN CLASS=A\n" + "//*main lowercase prose comment\n" + "//ROSETTA JOB\n" + "//STEP1 EXEC PGM=IEFBR14\n" + "//SYSIN DD *\n" + "SET X=1 payload line, not JCL\n" + "/*\n" + ) + result = real_prism.split_streams(deck, "jcl") + code, comments = result["code_stream"], result["comment_stream"] + + assert "banner comment" not in code and "banner comment" in comments + assert "lowercase prose comment" not in code and "lowercase prose comment" in comments + # JES3 control statement stays code, never a "comment" + assert "//*MAIN CLASS=A" in code and "//*MAIN" not in comments + # ordinary statements, inline SYSIN payload, and the /* delimiter stay code + assert "//ROSETTA JOB" in code and "EXEC PGM=IEFBR14" in code + assert "payload line" in code and "/*" in code + # line alignment: stripped lines are blanked, not deleted + assert code.count("\n") == deck.count("\n") + def test_prism_sub_families_fix_the_standard_block_delimiter_gap(): """ diff --git a/tests/extraction/languages/test_jcl_strict.py b/tests/extraction/languages/test_jcl_strict.py index d28d67682..d769e6971 100644 --- a/tests/extraction/languages/test_jcl_strict.py +++ b/tests/extraction/languages/test_jcl_strict.py @@ -83,6 +83,26 @@ ("structural_boundaries", "//$DD DD DUMMY", "// DUMMY"), ("structural_boundaries", "//INC INCLUDE MEMBER=A", "INCLUDE MEMBER=A"), ("structural_boundaries", "//@SET SET X=Y", "SET X=Y"), + + # #2610: safety = COND= return-code tests; the bare bypass forms are + # excluded (they belong to safety_bypasses, not safety) + ("safety", "//S1 EXEC PGM=X,COND=(4,LT)", "//S2 EXEC PGM=Y,COND=EVEN"), + ("safety", "// COND=(0,NE,STEP1)", "//S2 EXEC PGM=Y,COND=ONLY"), + ("safety", "//S3 EXEC PGM=Z,COND=((4,LT),EVEN)", "//S4 EXEC PGM=W,CONDX=(4,LT)"), + + # #2610: safety_bypasses = COND=EVEN / COND=ONLY (run despite abend) + ("safety_bypasses", "//S2 EXEC PGM=Y,COND=EVEN", "//S1 EXEC PGM=X,COND=(4,LT)"), + ("safety_bypasses", "//S2 EXEC PGM=Y,COND=ONLY", "//S1 EXEC PGM=X,COND=(4,LT,STEP1)"), + ("safety_bypasses", "//S3 EXEC PGM=Z,COND=((4,LT),EVEN)", "//S4 EXEC PGM=W,COND=(4,LT),PARM='EVENT'"), + + # #2610: telemetry = job-log verbosity/routing operands + ("telemetry", "//J JOB 1,MSGLEVEL=(1,1)", "//S1 EXEC PGM=X"), + ("telemetry", "//J JOB 1,MSGCLASS=H", "//J JOB 1,CLASS=A"), + + # #2610: comment-anchored debt markers (shared GLOBAL_* patterns; only + # meaningful now that prism routes //* lines to the comment stream) + ("planned_debt", "//* TODO wire the FTP step", "//* all wired up here"), + ("fragile_debt", "//* HACK: overrides the region size", "//* routine banner comment"), ] @@ -294,6 +314,49 @@ def test_jcl_args_redos_immunity(): assert_redos_immune(pattern, many_fake_hops, timeout_sec=3.0) +def test_jcl_cond_safety_vs_bypass_partition(): + """ + #2610: the two COND= rules partition by semantics, not by keyword -- + a plain RC test is safety only, a bare EVEN/ONLY is bypass only, and + the combined form carries both (a real RC test AND a run-after-abend + bypass on the same step). An EVEN-shaped token *outside* the COND + value's own parentheses must not leak into the bypass count. + """ + safety = JCL_RULES["safety"] + bypass = JCL_RULES["safety_bypasses"] + + plain = "//S1 EXEC PGM=X,COND=(4,LT)" + assert safety.search(plain) and not bypass.search(plain) + + bare_even = "//S2 EXEC PGM=Y,COND=EVEN" + assert bypass.search(bare_even) and not safety.search(bare_even) + + combined = "//S3 EXEC PGM=Z,COND=((4,LT),EVEN)" + assert safety.search(combined) and bypass.search(combined) + + # EVEN-ish text later on the line, outside the COND parens, is not a bypass + outside = "//S4 EXEC PGM=W,COND=(4,LT),PARM='EVENT'" + assert safety.search(outside) and not bypass.search(outside) + + # continuation-line COND= (the same real-corpus shape #2482 documents + # for PARM=) still counts -- the rule is operand-anchored, not line-anchored + continuation = "//S5 EXEC PGM=V,\n// COND=ONLY" + assert bypass.search(continuation) + + +def test_jcl_cond_bypass_redos_immunity(): + """ + #2610: the combined-form branch's scan is the bounded one-level-paren + idiom -- alternatives disjoint on their first character, inner star + inside literal parens -- fed here with an adversarial run that never + closes and never reaches EVEN/ONLY (the shape that would matter if + the alternation partitioned ambiguously). + """ + pattern = JCL_RULES["safety_bypasses"] + assert_redos_immune(pattern, "//X EXEC PGM=Y,COND=(" + "(A)," * 20000, timeout_sec=3.0) + assert_redos_immune(pattern, "//X EXEC PGM=Y,COND=(" + "A" * 100000, timeout_sec=3.0) + + def test_jcl_lexical_family_no_block_terminator_state_to_confuse(): """ Lexical-family audit: jcl is `line_exclusive` -- no block comment diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index c6d77f9d2..b49c0ae50 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -11,14 +11,14 @@ "pyyaml": false }, "Target Root Name": "data", - "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-31T16:52:43.293979+00:00", - "Total Scan Duration": "52.43 seconds" + "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", + "Analysis ISO Timestamp": "2026-08-31T18:15:57.117995+00:00", + "Total Scan Duration": "19.9 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -26,7 +26,7 @@ "summary": { "total_files": 3365, "verified_files": 2817, - "total_loc": 836237, + "total_loc": 834627, "dominant_language": "c", "volatility_index": 0.0, "Percent_Visible": 83.7 @@ -236,10 +236,10 @@ } }, "health": { - "avg_cognitive_load": 29.833, - "avg_safety_score": 47.587, - "avg_tech_debt": 42.493, - "avg_documentation": 29.612 + "avg_cognitive_load": 29.79, + "avg_safety_score": 47.68, + "avg_tech_debt": 42.638, + "avg_documentation": 28.959 }, "composition": { "markdown": { @@ -409,8 +409,8 @@ }, "jcl": { "files": 185, - "loc": 7447, - "impact": 944.7400000000002 + "loc": 5837, + "impact": 894.9400000000007 }, "kotlin": { "files": 5, @@ -1152,20 +1152,20 @@ }, "jcl/cics-genapp": { "file_count": 30, - "total_mass": 270.96, + "total_mass": 261.84, "avg_exposures": { - "cognitive_load": 2.94, - "safety_score": 53.83, - "tech_debt": 46.78, - "verification": 2.28, + "cognitive_load": 3.51, + "safety_score": 53.66, + "tech_debt": 51.36, + "verification": 2.24, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.45, "dead_code": 0.0, - "spec_match": 95.33, + "spec_match": 93.33, "stability": 48.33, "churn": 0.0, - "documentation": 11.36, + "documentation": 11.13, "secrets_risk": 0.0 } }, @@ -2658,7 +2658,7 @@ "cognitive_load": 12.92, "safety_score": 32.78, "tech_debt": 13.96, - "verification": 2.46, + "verification": 2.45, "api_exposure": 4.4, "concurrency": 0.0, "state_flux": 0.0, @@ -5009,50 +5009,50 @@ }, "jcl/cash-account-cobol": { "file_count": 3, - "total_mass": 16.82, + "total_mass": 15.76, "avg_exposures": { - "cognitive_load": 4.94, - "safety_score": 83.59, - "tech_debt": 61.73, - "verification": 2.38, + "cognitive_load": 3.42, + "safety_score": 78.21, + "tech_debt": 64.41, + "verification": 2.33, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, - "spec_match": 100.0, + "spec_match": 97.78, "stability": 50.0, "churn": 0.0, - "documentation": 43.29, + "documentation": 40.99, "secrets_risk": 0.0 } }, "jcl/cics-banking-sample-application-cbsa": { "file_count": 99, - "total_mass": 332.32, + "total_mass": 312.88, "avg_exposures": { - "cognitive_load": 6.16, - "safety_score": 51.11, - "tech_debt": 56.97, - "verification": 1.88, + "cognitive_load": 6.08, + "safety_score": 52.59, + "tech_debt": 58.1, + "verification": 1.47, "api_exposure": 1.39, "concurrency": 0.0, - "state_flux": 1.49, + "state_flux": 1.61, "dead_code": 0.0, - "spec_match": 78.45, + "spec_match": 59.93, "stability": 50.0, "churn": 0.0, - "documentation": 53.06, + "documentation": 38.15, "secrets_risk": 0.0 } }, "jcl/cics-java-jcics-samples": { "file_count": 1, - "total_mass": 3.14, + "total_mass": 3.12, "avg_exposures": { - "cognitive_load": 5.96, - "safety_score": 82.6, + "cognitive_load": 6.07, + "safety_score": 83.04, "tech_debt": 0.0, - "verification": 2.37, + "verification": 2.38, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, @@ -5060,45 +5060,45 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 48.08, + "documentation": 48.05, "secrets_risk": 0.0 } }, "jcl/cobol-programming-course": { "file_count": 43, - "total_mass": 211.82, + "total_mass": 204.5, "avg_exposures": { - "cognitive_load": 9.91, - "safety_score": 69.66, - "tech_debt": 80.67, - "verification": 2.29, + "cognitive_load": 6.63, + "safety_score": 71.93, + "tech_debt": 81.27, + "verification": 2.13, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, - "spec_match": 92.25, + "spec_match": 83.1, "stability": 50.0, "churn": 0.0, - "documentation": 55.84, + "documentation": 50.35, "secrets_risk": 0.0 } }, "jcl/zopeneditor-sample": { "file_count": 10, - "total_mass": 110.72, + "total_mass": 97.88, "avg_exposures": { - "cognitive_load": 2.79, - "safety_score": 80.75, - "tech_debt": 68.22, - "verification": 2.36, + "cognitive_load": 4.55, + "safety_score": 84.44, + "tech_debt": 80.85, + "verification": 2.11, "api_exposure": 0.0, "concurrency": 0.0, - "state_flux": 41.96, + "state_flux": 55.48, "dead_code": 0.0, - "spec_match": 100.0, + "spec_match": 88.0, "stability": 50.0, "churn": 0.0, - "documentation": 32.83, + "documentation": 21.53, "secrets_risk": 0.0 } }, @@ -6692,12 +6692,6 @@ } ], "undocumented_critical_path": [ - { - "path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", - "score": 438.658, - "pr": 11.673, - "doc": 37.5789 - }, { "path": "lua/redis/strict.lua", "score": 238.456, @@ -6721,6 +6715,12 @@ "score": 202.605, "pr": 2.031, "doc": 99.7564 + }, + { + "path": "python/fastapi/fastapi/responses.py", + "score": 191.63, + "pr": 4.902, + "doc": 39.0923 } ] }, @@ -122903,9 +122903,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2058.38, + "X": 2058.22, "Y": -5.44, - "Z": -8161.67 + "Z": -8161.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -125095,9 +125095,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2111.04, + "X": 2110.87, "Y": 39.66, - "Z": -8558.89 + "Z": -8558.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -126549,9 +126549,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2381.41, + "X": 2381.25, "Y": 37.4, - "Z": -7649.48 + "Z": -7648.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -127422,9 +127422,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": 1881.29, + "X": 1881.12, "Y": -72.12, - "Z": -7347.4 + "Z": -7346.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -127579,9 +127579,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 1737.35, + "X": 1737.18, "Y": -100.48, - "Z": -7777.54 + "Z": -7776.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -139217,9 +139217,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1545.01, + "X": 1544.85, "Y": -73.67, - "Z": -7976.7 + "Z": -7976.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -139435,9 +139435,9 @@ "Identity Proof": "Single Indicator (Ext: .at)" }, "2. Topological Coordinates": { - "X": 2574.02, + "X": 2573.85, "Y": 98.26, - "Z": -8460.97 + "Z": -8460.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -177320,7 +177320,7 @@ "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "83.78%", "Tech Debt Exposure": "84.11%", - "Testing Exposure": "2.77%", + "Testing Exposure": "2.76%", "API Exposure": "1.24%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -257941,9 +257941,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -891.71, + "X": -891.7, "Y": -107.16, - "Z": -8287.16 + "Z": -8287.02 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -258098,9 +258098,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -767.69, + "X": -767.68, "Y": -297.2, - "Z": -7142.27 + "Z": -7142.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -258261,9 +258261,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -598.56, + "X": -598.55, "Y": -160.14, - "Z": -7921.99 + "Z": -7921.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -259136,9 +259136,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -956.53, + "X": -956.52, "Y": -177.82, - "Z": -7355.7 + "Z": -7355.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -260588,9 +260588,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -661.47, + "X": -661.46, "Y": -224.26, - "Z": -7722.68 + "Z": -7722.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263008,9 +263008,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -1183.26, + "X": -1183.25, "Y": -105.25, - "Z": -7729.68 + "Z": -7729.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263468,9 +263468,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -330.04, + "X": -330.03, "Y": -352.58, - "Z": -7362.04 + "Z": -7361.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263680,9 +263680,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -192.18, + "X": -192.16, "Y": -226.17, - "Z": -7754.42 + "Z": -7754.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -356246,9 +356246,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.61, + "X": 3101.32, "Y": -96.09, - "Z": -9885.04 + "Z": -9884.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -357160,9 +357160,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.24, + "X": 2746.96, "Y": -174.73, - "Z": -9333.82 + "Z": -9332.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -358608,9 +358608,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3073.21, + "X": 3072.92, "Y": -49.48, - "Z": -9616.2 + "Z": -9615.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -360340,9 +360340,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3356.73, + "X": 3356.44, "Y": 40.54, - "Z": -9276.06 + "Z": -9275.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -360508,9 +360508,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2575.92, + "X": 2575.63, "Y": -244.18, - "Z": -9678.39 + "Z": -9677.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -428278,9 +428278,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5211.22, + "X": -5210.58, "Y": -302.43, - "Z": 6994.6 + "Z": 6993.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -428481,9 +428481,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5693.18, + "X": -5692.54, "Y": -263.75, - "Z": 7144.05 + "Z": 7143.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -430109,9 +430109,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5843.94, + "X": -5843.31, "Y": -117.52, - "Z": 7899.42 + "Z": 7898.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -430441,9 +430441,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5373.19, + "X": -5372.56, "Y": -177.79, - "Z": 7689.62 + "Z": 7688.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -431405,9 +431405,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5642.02, + "X": -5641.39, "Y": -322.11, - "Z": 6747.61 + "Z": 6746.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -432678,9 +432678,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -6002.8, + "X": -6002.16, "Y": -147.87, - "Z": 7283.07 + "Z": 7282.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -434041,9 +434041,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -6222.6, + "X": -6221.97, "Y": -246.69, - "Z": 7232.11 + "Z": 7231.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -441424,9 +441424,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7380.28, + "X": 7379.65, "Y": 165.91, - "Z": -8428.83 + "Z": -8428.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -442227,9 +442227,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6999.67, + "X": 6999.03, "Y": 265.38, - "Z": -7713.76 + "Z": -7713.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443197,9 +443197,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6787.87, + "X": 6787.23, "Y": 225.2, - "Z": -7949.41 + "Z": -7948.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443478,9 +443478,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7825.34, + "X": 7824.7, "Y": 134.51, - "Z": -8174.62 + "Z": -8173.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443750,9 +443750,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7638.48, + "X": 7637.84, "Y": 311.63, - "Z": -7253.96 + "Z": -7253.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444028,9 +444028,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7292.93, + "X": 7292.29, "Y": 257.91, - "Z": -7908.85 + "Z": -7908.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445138,9 +445138,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7202.11, + "X": 7201.47, "Y": 404.61, - "Z": -7209.25 + "Z": -7208.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445529,9 +445529,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.49, + "X": 3754.12, "Y": -127.57, - "Z": -9731.67 + "Z": -9730.85 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -445686,9 +445686,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4533.89, + "X": 4533.52, "Y": -109.1, - "Z": -9552.37 + "Z": -9551.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446918,9 +446918,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3541.43, + "X": 3541.07, "Y": -122.2, - "Z": -9221.12 + "Z": -9220.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447638,9 +447638,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4001.27, + "X": 4000.91, "Y": -115.21, - "Z": -9116.94 + "Z": -9116.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -448960,9 +448960,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4066.08, + "X": 4065.71, "Y": -150.26, - "Z": -9702.76 + "Z": -9701.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450009,9 +450009,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3853.66, + "X": 3853.29, "Y": -147.74, - "Z": -8520.24 + "Z": -8519.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450381,9 +450381,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3774.77, + "X": 3774.4, "Y": -155.51, - "Z": -8958.16 + "Z": -8957.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452209,9 +452209,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4360.32, + "X": 4359.96, "Y": -127.18, - "Z": -8644.37 + "Z": -8643.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544150,9 +544150,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1159.5, + "X": 1159.37, "Y": 225.95, - "Z": -6393.35 + "Z": -6392.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544368,9 +544368,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2028.81, + "X": 2028.68, "Y": 207.83, - "Z": -7210.43 + "Z": -7209.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544556,9 +544556,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1195.59, + "X": 1195.45, "Y": 264.26, - "Z": -7672.82 + "Z": -7672.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544734,9 +544734,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 882.31, + "X": 882.18, "Y": 256.41, - "Z": -6412.95 + "Z": -6412.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544760,7 +544760,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.96%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.98%", + "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -544912,9 +544912,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1881.57, + "X": 1881.44, "Y": 219.35, - "Z": -6626.11 + "Z": -6625.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545110,9 +545110,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1602.26, + "X": 1602.13, "Y": 249.49, - "Z": -7446.05 + "Z": -7445.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545288,9 +545288,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1526.71, + "X": 1526.58, "Y": 168.24, - "Z": -6165.4 + "Z": -6164.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545466,9 +545466,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1057.59, + "X": 1057.46, "Y": 287.14, - "Z": -7506.33 + "Z": -7505.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545654,9 +545654,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1771.1, + "X": 1770.97, "Y": 272.25, - "Z": -7277.06 + "Z": -7276.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545912,9 +545912,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 715.84, + "X": 715.71, "Y": 233.98, - "Z": -6512.34 + "Z": -6511.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -546110,9 +546110,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 854.89, + "X": 854.76, "Y": 245.54, - "Z": -6914.81 + "Z": -6914.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -546318,9 +546318,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1000.59, + "X": 1000.46, "Y": 203.57, - "Z": -6727.38 + "Z": -6726.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -546588,9 +546588,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1350.77, + "X": 1350.63, "Y": 210.13, - "Z": -6903.89 + "Z": -6903.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -546926,9 +546926,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": 1952.48, + "X": 1952.35, "Y": 177.61, - "Z": -6262.23 + "Z": -6261.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -547094,9 +547094,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 742.1, + "X": 741.96, "Y": 294.77, - "Z": -7442.34 + "Z": -7441.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -547272,9 +547272,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1566.78, + "X": 1566.65, "Y": 200.61, - "Z": -6733.61 + "Z": -6732.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -547464,9 +547464,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1356.16, + "X": 1356.03, "Y": 252.59, - "Z": -7436.76 + "Z": -7436.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -551658,7 +551658,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.31%", + "Testing Exposure": "1.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -552513,7 +552513,7 @@ "Cognitive Load Exposure": "76.15%", "Error & Exception Exposure": "96.5%", "Tech Debt Exposure": "57.2%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "1.17%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -560180,9 +560180,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": -5241.59, + "X": -5241.03, "Y": -220.14, - "Z": 8057.04 + "Z": 8056.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -560611,9 +560611,9 @@ "Identity Proof": "Metadata Anchor (Makefile.PL)" }, "2. Topological Coordinates": { - "X": -5440.69, + "X": -5440.12, "Y": -177.34, - "Z": 7761.73 + "Z": 7760.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -560772,9 +560772,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": -4953.87, + "X": -4953.31, "Y": -211.99, - "Z": 7621.77 + "Z": 7620.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -561299,9 +561299,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": -4881.2, + "X": -4880.63, "Y": -142.36, - "Z": 7464.58 + "Z": 7463.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -561551,9 +561551,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": -4607.68, + "X": -4607.11, "Y": -214.74, - "Z": 8272.97 + "Z": 8272.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565628,9 +565628,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3339.07, + "X": -3338.87, "Y": 123.4, - "Z": -5947.7 + "Z": -5947.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565785,9 +565785,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2146.74, + "X": -2146.54, "Y": -7.48, - "Z": -6025.66 + "Z": -6025.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565965,9 +565965,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2898.78, + "X": -2898.58, "Y": 104.01, - "Z": -5592.58 + "Z": -5592.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566182,9 +566182,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2671.84, + "X": -2671.64, "Y": 39.61, - "Z": -6488.56 + "Z": -6488.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566836,9 +566836,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3003.95, + "X": -3003.75, "Y": 31.14, - "Z": -6597.21 + "Z": -6596.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566997,9 +566997,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2458.46, + "X": -2458.26, "Y": 19.06, - "Z": -6681.59 + "Z": -6681.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567156,9 +567156,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2295.89, + "X": -2295.69, "Y": -60.08, - "Z": -6550.69 + "Z": -6550.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567473,9 +567473,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3249.99, + "X": -3249.79, "Y": 136.04, - "Z": -6170.14 + "Z": -6169.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567715,9 +567715,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2740.24, + "X": -2740.04, "Y": 79.27, - "Z": -6234.27 + "Z": -6233.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -568165,9 +568165,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2472.15, + "X": -2471.95, "Y": 57.03, - "Z": -5577.77 + "Z": -5577.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -568938,9 +568938,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3021.46, + "X": -3021.26, "Y": 86.64, - "Z": -5979.09 + "Z": -5978.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572251,9 +572251,9 @@ "Identity Proof": "Single Indicator (Ext: .podspec)" }, "2. Topological Coordinates": { - "X": -2820.07, + "X": -2819.9, "Y": 66.77, - "Z": -6847.19 + "Z": -6846.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572419,9 +572419,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2669.08, + "X": -2668.92, "Y": 286.85, - "Z": -7523.03 + "Z": -7522.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572609,9 +572609,9 @@ "Identity Proof": "Metadata Anchor (Package.swift)" }, "2. Topological Coordinates": { - "X": -2287.36, + "X": -2287.2, "Y": 252.72, - "Z": -7626.02 + "Z": -7625.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572768,9 +572768,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -3243.62, + "X": -3243.45, "Y": 166.02, - "Z": -7237.91 + "Z": -7237.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -573008,9 +573008,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2966.86, + "X": -2966.69, "Y": 82.32, - "Z": -6913.53 + "Z": -6913.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -573668,9 +573668,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2391.81, + "X": -2391.65, "Y": 126.68, - "Z": -6882.31 + "Z": -6881.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -573978,9 +573978,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2708.71, + "X": -2708.55, "Y": 135.59, - "Z": -7404.25 + "Z": -7403.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -583924,9 +583924,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -7997.68, + "X": -7997.17, "Y": 134.84, - "Z": 6229.53 + "Z": 6229.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -584464,9 +584464,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7446.03, + "X": -7445.52, "Y": 124.77, - "Z": 6525.23 + "Z": 6524.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -584621,9 +584621,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -7736.54, + "X": -7736.03, "Y": 160.35, - "Z": 5640.01 + "Z": 5639.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -584809,9 +584809,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7712.39, + "X": -7711.88, "Y": 101.25, - "Z": 6029.36 + "Z": 6028.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -585274,9 +585274,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5190.91, + "X": 5190.5, "Y": 237.38, - "Z": -9064.59 + "Z": -9063.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -585431,9 +585431,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4396.26, + "X": 4395.86, "Y": 229.37, - "Z": -9471.75 + "Z": -9470.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -585589,9 +585589,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.55, + "X": 4895.15, "Y": 292.43, - "Z": -9844.47 + "Z": -9843.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -587625,9 +587625,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4901.47, + "X": 4901.07, "Y": 202.09, - "Z": -9501.84 + "Z": -9501.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -589359,9 +589359,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4599.67, + "X": 4599.26, "Y": 227.35, - "Z": -9002.45 + "Z": -9001.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590182,9 +590182,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 463.34, + "X": 463.33, "Y": -200.51, - "Z": -9534.46 + "Z": -9534.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -590339,9 +590339,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 110.42, + "X": 110.41, "Y": -101.16, - "Z": -8990.4 + "Z": -8990.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590867,9 +590867,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 356.13, + "X": 356.12, "Y": -98.31, - "Z": -9205.37 + "Z": -9205.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -603374,9 +603374,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 488.57, + "X": 488.53, "Y": 159.93, - "Z": -7401.25 + "Z": -7400.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -603572,9 +603572,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 374.97, + "X": 374.93, "Y": 105.89, - "Z": -8360.8 + "Z": -8360.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -603743,9 +603743,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 1256.51, + "X": 1256.46, "Y": 195.61, - "Z": -7862.92 + "Z": -7862.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -603914,9 +603914,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 655.25, + "X": 655.2, "Y": 155.7, - "Z": -8085.23 + "Z": -8084.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -604229,9 +604229,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 926.24, + "X": 926.19, "Y": 215.76, - "Z": -7443.58 + "Z": -7443.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -604431,9 +604431,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 418.66, + "X": 418.61, "Y": 119.95, - "Z": -7685.5 + "Z": -7684.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -604852,9 +604852,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 187.64, + "X": 187.6, "Y": 151.98, - "Z": -8105.84 + "Z": -8105.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -605154,9 +605154,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 691.99, + "X": 691.95, "Y": 156.84, - "Z": -8393.13 + "Z": -8392.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -605650,9 +605650,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 1122.91, + "X": 1122.86, "Y": 174.24, - "Z": -8234.41 + "Z": -8233.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628165,7 +628165,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.81%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.39%", + "Testing Exposure": "3.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -641870,9 +641870,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3516.24, + "X": 3515.9, "Y": 71.06, - "Z": -8332.32 + "Z": -8331.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642078,9 +642078,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2648.93, + "X": 2648.6, "Y": 152.18, - "Z": -7788.57 + "Z": -7787.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642246,9 +642246,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3253.24, + "X": 3252.91, "Y": 174.96, - "Z": -7677.11 + "Z": -7676.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642403,9 +642403,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3062.26, + "X": 3061.92, "Y": 89.43, - "Z": -8675.48 + "Z": -8674.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642721,9 +642721,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.89, + "X": 2925.56, "Y": 80.1, - "Z": -8861.51 + "Z": -8860.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642889,9 +642889,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3083.15, + "X": 3082.82, "Y": 118.21, - "Z": -8096.06 + "Z": -8095.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643457,9 +643457,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2490.44, + "X": 2490.11, "Y": 140.87, - "Z": -7952.9 + "Z": -7952.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643655,9 +643655,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3743.03, + "X": 3742.69, "Y": 118.51, - "Z": -8298.49 + "Z": -8297.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643843,9 +643843,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2908.49, + "X": 2908.16, "Y": 179.25, - "Z": -7608.0 + "Z": -7607.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644061,9 +644061,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3381.88, + "X": 3381.54, "Y": 110.37, - "Z": -8947.9 + "Z": -8947.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644218,9 +644218,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2795.05, + "X": 2794.72, "Y": 125.85, - "Z": -8077.2 + "Z": -8076.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644456,9 +644456,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2774.16, + "X": 2773.83, "Y": 129.36, - "Z": -8575.33 + "Z": -8574.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644684,9 +644684,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2412.66, + "X": 2412.33, "Y": 97.98, - "Z": -8660.58 + "Z": -8659.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644852,9 +644852,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3651.4, + "X": 3651.07, "Y": 99.96, - "Z": -8041.78 + "Z": -8040.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645050,9 +645050,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3334.35, + "X": 3334.01, "Y": 92.83, - "Z": -7743.87 + "Z": -7742.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645218,9 +645218,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.79, + "X": 2580.46, "Y": 110.01, - "Z": -8384.19 + "Z": -8383.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645386,9 +645386,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3617.05, + "X": 3616.72, "Y": 137.93, - "Z": -7859.06 + "Z": -7858.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -645568,9 +645568,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1678.78, + "X": 1678.73, "Y": 197.84, - "Z": -9023.2 + "Z": -9022.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646080,9 +646080,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1930.58, + "X": 1930.52, "Y": 180.21, - "Z": -9201.56 + "Z": -9201.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -648592,9 +648592,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2015.93, + "X": 2015.88, "Y": 232.31, - "Z": -9585.79 + "Z": -9585.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657149,9 +657149,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5543.92, + "X": 5543.46, "Y": 137.98, - "Z": -9184.27 + "Z": -9183.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657306,9 +657306,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5619.68, + "X": 5619.22, "Y": 260.73, - "Z": -8066.21 + "Z": -8065.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657470,9 +657470,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5478.71, + "X": 5478.25, "Y": 205.12, - "Z": -8550.58 + "Z": -8549.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658098,9 +658098,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5855.55, + "X": 5855.09, "Y": 149.3, - "Z": -9179.53 + "Z": -9178.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658446,9 +658446,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5305.12, + "X": 5304.66, "Y": 269.32, - "Z": -8740.3 + "Z": -8739.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658704,9 +658704,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5808.31, + "X": 5807.85, "Y": 186.55, - "Z": -8852.98 + "Z": -8852.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -659162,9 +659162,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6071.37, + "X": 6070.91, "Y": 99.09, - "Z": -8310.73 + "Z": -8310.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -659450,9 +659450,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6184.4, + "X": 6183.94, "Y": 55.62, - "Z": -8989.05 + "Z": -8988.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665955,7 +665955,7 @@ "Cognitive Load Exposure": "99.68%", "Error & Exception Exposure": "89.8%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.03%", + "Testing Exposure": "3.02%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -685274,9 +685274,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -920.57, + "X": -920.55, "Y": -227.61, - "Z": -5536.27 + "Z": -5536.13 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -685431,9 +685431,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -877.25, + "X": -877.23, "Y": -197.73, - "Z": -6313.73 + "Z": -6313.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685729,9 +685729,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -473.64, + "X": -473.62, "Y": -240.93, - "Z": -6480.14 + "Z": -6480.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685907,9 +685907,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1155.25, + "X": -1155.22, "Y": -217.67, - "Z": -6626.89 + "Z": -6626.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686105,9 +686105,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1429.13, + "X": -1429.11, "Y": -227.48, - "Z": -6277.73 + "Z": -6277.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686283,9 +686283,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -377.7, + "X": -377.68, "Y": -171.66, - "Z": -6829.47 + "Z": -6829.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686451,9 +686451,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1053.89, + "X": -1053.87, "Y": -280.11, - "Z": -7108.01 + "Z": -7107.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686629,9 +686629,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1038.08, + "X": -1038.05, "Y": -260.02, - "Z": -5850.07 + "Z": -5849.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686817,9 +686817,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -328.18, + "X": -328.16, "Y": -217.08, - "Z": -5753.51 + "Z": -5753.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686995,9 +686995,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -678.34, + "X": -678.32, "Y": -218.82, - "Z": -5702.5 + "Z": -5702.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687173,9 +687173,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1186.99, + "X": -1186.97, "Y": -258.37, - "Z": -5942.44 + "Z": -5942.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687491,9 +687491,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -361.24, + "X": -361.22, "Y": -249.93, - "Z": -5941.36 + "Z": -5941.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687669,9 +687669,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -891.35, + "X": -891.33, "Y": -281.13, - "Z": -6660.4 + "Z": -6660.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687917,9 +687917,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1717.16, + "X": -1717.14, "Y": -270.39, - "Z": -6240.98 + "Z": -6240.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688085,9 +688085,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1455.19, + "X": -1455.17, "Y": -297.08, - "Z": -6115.78 + "Z": -6115.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688253,9 +688253,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1545.11, + "X": -1545.08, "Y": -255.54, - "Z": -6387.12 + "Z": -6386.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688431,9 +688431,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -636.19, + "X": -636.17, "Y": -194.72, - "Z": -6874.92 + "Z": -6874.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688619,9 +688619,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1327.24, + "X": -1327.22, "Y": -288.84, - "Z": -5476.23 + "Z": -5476.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688797,9 +688797,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -634.62, + "X": -634.6, "Y": -205.38, - "Z": -5978.99 + "Z": -5978.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688995,9 +688995,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -217.47, + "X": -217.45, "Y": -216.95, - "Z": -6332.43 + "Z": -6332.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -693773,9 +693773,9 @@ "Identity Proof": "Prose Anchor (MIT-LICENSE)" }, "2. Topological Coordinates": { - "X": -7191.31, + "X": -7190.63, "Y": -214.32, - "Z": 5775.87 + "Z": 5775.25 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -693930,9 +693930,9 @@ "Identity Proof": "Metadata Anchor (Rakefile)" }, "2. Topological Coordinates": { - "X": -6950.23, + "X": -6949.54, "Y": -212.88, - "Z": 5712.52 + "Z": 5711.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -694137,9 +694137,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -7452.47, + "X": -7451.78, "Y": -200.67, - "Z": 6329.12 + "Z": 6328.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -694564,9 +694564,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -7170.42, + "X": -7169.73, "Y": -180.03, - "Z": 6419.02 + "Z": 6418.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -695147,9 +695147,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -6993.02, + "X": -6992.34, "Y": -156.99, - "Z": 6244.51 + "Z": 6243.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -695559,9 +695559,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -6540.99, + "X": -6540.31, "Y": -234.2, - "Z": 6142.29 + "Z": 6141.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -695820,9 +695820,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -6678.18, + "X": -6677.49, "Y": -168.22, - "Z": 6650.76 + "Z": 6650.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -696245,9 +696245,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -7066.53, + "X": -7065.84, "Y": -72.13, - "Z": 6787.98 + "Z": 6787.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702094,9 +702094,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1575.64, + "X": -1575.62, "Y": -141.56, - "Z": -8611.52 + "Z": -8611.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702376,9 +702376,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1287.77, + "X": -1287.75, "Y": -203.92, - "Z": -7929.46 + "Z": -7929.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702609,9 +702609,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1880.52, + "X": -1880.5, "Y": -280.56, - "Z": -7970.41 + "Z": -7970.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702864,9 +702864,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1551.76, + "X": -1551.74, "Y": -165.03, - "Z": -8428.39 + "Z": -8428.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -703595,9 +703595,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1706.49, + "X": -1706.47, "Y": -276.55, - "Z": -7691.04 + "Z": -7690.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -703793,9 +703793,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1132.38, + "X": -1132.36, "Y": -115.73, - "Z": -8506.94 + "Z": -8506.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -704033,9 +704033,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -2036.73, + "X": -2036.7, "Y": -170.9, - "Z": -8298.88 + "Z": -8298.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -707571,7 +707571,7 @@ "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.85%", + "Testing Exposure": "2.84%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -715459,7 +715459,7 @@ "Cognitive Load Exposure": "97.77%", "Error & Exception Exposure": "99.69%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.54%", + "Testing Exposure": "2.53%", "API Exposure": "7.02%", "Concurrency Exposure": "99.87%", "State Flux Exposure": "100.0%", @@ -719356,7 +719356,7 @@ "Cognitive Load Exposure": "55.28%", "Error & Exception Exposure": "94.89%", "Tech Debt Exposure": "98.69%", - "Testing Exposure": "3.04%", + "Testing Exposure": "3.03%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -721232,7 +721232,7 @@ "Cognitive Load Exposure": "91.04%", "Error & Exception Exposure": "99.63%", "Tech Debt Exposure": "51.42%", - "Testing Exposure": "2.66%", + "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -721442,7 +721442,7 @@ "Cognitive Load Exposure": "99.67%", "Error & Exception Exposure": "99.24%", "Tech Debt Exposure": "99.61%", - "Testing Exposure": "3.39%", + "Testing Exposure": "3.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.85%", @@ -721899,9 +721899,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -3943.16, + "X": -3942.54, "Y": -144.51, - "Z": 6356.72 + "Z": 6355.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -722120,9 +722120,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4389.21, + "X": -4388.59, "Y": -201.18, - "Z": 6206.38 + "Z": 6205.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -722351,9 +722351,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4768.57, + "X": -4767.96, "Y": -238.08, - "Z": 7144.89 + "Z": 7144.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -722611,9 +722611,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4094.76, + "X": -4094.14, "Y": -102.0, - "Z": 6986.23 + "Z": 6985.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -722842,9 +722842,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4377.42, + "X": -4376.8, "Y": -189.44, - "Z": 6856.74 + "Z": 6855.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -723083,9 +723083,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4650.45, + "X": -4649.83, "Y": -228.02, - "Z": 6479.97 + "Z": 6479.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -723353,9 +723353,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -5156.93, + "X": -5156.32, "Y": -271.62, - "Z": 7037.48 + "Z": 7036.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -723594,9 +723594,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4195.26, + "X": -4194.64, "Y": -145.97, - "Z": 6405.16 + "Z": 6404.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -723845,9 +723845,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4906.43, + "X": -4905.81, "Y": -232.73, - "Z": 6175.73 + "Z": 6174.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -724095,9 +724095,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -5067.99, + "X": -5067.37, "Y": -236.14, - "Z": 6391.7 + "Z": 6390.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -724346,9 +724346,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4826.11, + "X": -4825.49, "Y": -274.46, - "Z": 6870.14 + "Z": 6869.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -724607,9 +724607,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4555.82, + "X": -4555.21, "Y": -209.6, - "Z": 6151.25 + "Z": 6150.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -724867,9 +724867,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -5031.88, + "X": -5031.26, "Y": -245.56, - "Z": 7160.41 + "Z": 7159.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -725122,9 +725122,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4383.11, + "X": -4382.49, "Y": -138.74, - "Z": 7133.32 + "Z": 7132.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -725354,9 +725354,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -5187.51, + "X": -5186.89, "Y": -317.43, - "Z": 6477.72 + "Z": 6476.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -731532,9 +731532,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6268.32, + "X": -6267.76, "Y": -220.38, - "Z": 7543.96 + "Z": 7543.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -731700,9 +731700,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6514.74, + "X": -6514.18, "Y": -198.77, - "Z": 6717.43 + "Z": 6716.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732002,9 +732002,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6552.92, + "X": -6552.37, "Y": -210.0, - "Z": 7451.29 + "Z": 7450.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732305,9 +732305,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6765.45, + "X": -6764.9, "Y": -122.11, - "Z": 7372.79 + "Z": 7372.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732563,9 +732563,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6982.78, + "X": -6982.23, "Y": -77.95, - "Z": 7076.29 + "Z": 7075.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732768,9 +732768,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5619.33, + "X": 5618.7, "Y": -266.49, - "Z": -6270.6 + "Z": -6269.74 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -732925,9 +732925,9 @@ "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": 4796.64, + "X": 4796.02, "Y": -119.0, - "Z": -6799.27 + "Z": -6798.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733193,9 +733193,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4253.01, + "X": 4252.39, "Y": -65.57, - "Z": -6270.34 + "Z": -6269.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733352,9 +733352,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4319.59, + "X": 4318.96, "Y": -45.97, - "Z": -6584.52 + "Z": -6583.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733514,9 +733514,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4468.17, + "X": 4467.55, "Y": 104.72, - "Z": -7644.04 + "Z": -7643.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733685,9 +733685,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3908.95, + "X": 3908.32, "Y": 56.25, - "Z": -6834.31 + "Z": -6833.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733842,9 +733842,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5407.21, + "X": 5406.59, "Y": -187.04, - "Z": -6452.44 + "Z": -6451.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734003,9 +734003,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5252.49, + "X": 5251.87, "Y": -40.13, - "Z": -6980.08 + "Z": -6979.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734166,9 +734166,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4670.85, + "X": 4670.23, "Y": -181.04, - "Z": -6038.06 + "Z": -6037.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734327,9 +734327,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5059.16, + "X": 5058.54, "Y": 71.52, - "Z": -7234.62 + "Z": -7233.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734486,9 +734486,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5480.53, + "X": 5479.91, "Y": -120.37, - "Z": -6840.91 + "Z": -6840.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734643,9 +734643,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4386.96, + "X": 4386.34, "Y": -167.98, - "Z": -5886.76 + "Z": -5885.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734800,9 +734800,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4580.34, + "X": 4579.71, "Y": -115.23, - "Z": -6530.41 + "Z": -6529.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734957,9 +734957,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5647.14, + "X": 5646.52, "Y": -51.69, - "Z": -6906.76 + "Z": -6905.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735130,9 +735130,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4976.2, + "X": 4975.58, "Y": -279.3, - "Z": -6116.04 + "Z": -6115.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735289,9 +735289,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4802.71, + "X": 4802.08, "Y": -308.97, - "Z": -5815.8 + "Z": -5814.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735448,9 +735448,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5102.05, + "X": 5101.42, "Y": -223.34, - "Z": -6434.61 + "Z": -6433.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735607,9 +735607,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4473.22, + "X": 4472.6, "Y": -273.55, - "Z": -5695.68 + "Z": -5694.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735775,9 +735775,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4605.64, + "X": 4605.02, "Y": 85.75, - "Z": -7112.67 + "Z": -7111.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735934,9 +735934,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4810.14, + "X": 4809.51, "Y": -20.86, - "Z": -7112.74 + "Z": -7111.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736091,9 +736091,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4260.59, + "X": 4259.97, "Y": 93.02, - "Z": -7131.9 + "Z": -7131.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736248,9 +736248,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5371.95, + "X": 5371.32, "Y": 1.17, - "Z": -7203.9 + "Z": -7203.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736405,9 +736405,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5677.28, + "X": 5676.66, "Y": -125.95, - "Z": -6631.97 + "Z": -6631.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736562,9 +736562,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5277.48, + "X": 5276.85, "Y": -299.12, - "Z": -5743.83 + "Z": -5742.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736721,9 +736721,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4240.82, + "X": 4240.2, "Y": -7.73, - "Z": -6944.48 + "Z": -6943.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736880,9 +736880,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4762.59, + "X": 4761.96, "Y": 95.18, - "Z": -7280.69 + "Z": -7279.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737039,9 +737039,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4103.43, + "X": 4102.81, "Y": -111.44, - "Z": -6139.78 + "Z": -6138.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737196,9 +737196,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5440.41, + "X": 5439.78, "Y": -196.51, - "Z": -6235.9 + "Z": -6235.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737355,9 +737355,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4070.63, + "X": 4070.01, "Y": -62.97, - "Z": -6732.43 + "Z": -6731.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737512,9 +737512,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5057.66, + "X": 5057.03, "Y": 133.54, - "Z": -7432.75 + "Z": -7431.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747135,9 +747135,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 430.1, + "X": 429.89, "Y": 215.41, - "Z": -5341.87 + "Z": -5341.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747313,9 +747313,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1262.31, + "X": 1262.1, "Y": 229.38, - "Z": -6043.96 + "Z": -6043.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747481,9 +747481,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2649.54, + "X": 2649.33, "Y": 238.99, - "Z": -5403.2 + "Z": -5402.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747649,9 +747649,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1250.95, + "X": 1250.73, "Y": 278.88, - "Z": -3911.89 + "Z": -3911.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747817,9 +747817,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2390.46, + "X": 2390.25, "Y": 284.2, - "Z": -5605.43 + "Z": -5604.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747985,9 +747985,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 878.18, + "X": 877.96, "Y": 266.7, - "Z": -3993.88 + "Z": -3993.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748153,9 +748153,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 457.9, + "X": 457.69, "Y": 276.4, - "Z": -5036.15 + "Z": -5035.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748321,9 +748321,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 766.04, + "X": 765.82, "Y": 265.73, - "Z": -4384.42 + "Z": -4383.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748489,9 +748489,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1477.61, + "X": 1477.39, "Y": 280.46, - "Z": -6120.35 + "Z": -6119.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748657,9 +748657,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2208.57, + "X": 2208.36, "Y": 275.5, - "Z": -4085.98 + "Z": -4085.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748825,9 +748825,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2074.01, + "X": 2073.8, "Y": 275.68, - "Z": -5393.15 + "Z": -5392.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748993,9 +748993,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 753.81, + "X": 753.59, "Y": 224.68, - "Z": -4882.14 + "Z": -4881.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749161,9 +749161,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 813.43, + "X": 813.22, "Y": 259.07, - "Z": -4069.91 + "Z": -4069.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749329,9 +749329,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1694.58, + "X": 1694.37, "Y": 203.09, - "Z": -4073.81 + "Z": -4073.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749497,9 +749497,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 914.67, + "X": 914.45, "Y": 255.36, - "Z": -5719.85 + "Z": -5719.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749665,9 +749665,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1088.43, + "X": 1088.22, "Y": 202.97, - "Z": -4078.4 + "Z": -4077.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749833,9 +749833,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2360.72, + "X": 2360.51, "Y": 223.08, - "Z": -5218.49 + "Z": -5217.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750001,9 +750001,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1191.57, + "X": 1191.35, "Y": 210.17, - "Z": -5743.82 + "Z": -5743.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750169,9 +750169,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2365.86, + "X": 2365.65, "Y": 277.86, - "Z": -4336.33 + "Z": -4335.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750337,9 +750337,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 575.63, + "X": 575.42, "Y": 264.53, - "Z": -4599.29 + "Z": -4598.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750505,9 +750505,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2064.74, + "X": 2064.52, "Y": 268.41, - "Z": -5844.79 + "Z": -5844.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750675,9 +750675,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1908.63, + "X": 1908.42, "Y": 289.22, - "Z": -5209.94 + "Z": -5209.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750843,9 +750843,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1276.56, + "X": 1276.34, "Y": 208.11, - "Z": -5533.25 + "Z": -5532.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751011,9 +751011,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1001.73, + "X": 1001.52, "Y": 206.3, - "Z": -5137.04 + "Z": -5136.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751179,9 +751179,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 706.11, + "X": 705.89, "Y": 218.87, - "Z": -5480.53 + "Z": -5479.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751347,9 +751347,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 658.03, + "X": 657.81, "Y": 284.17, - "Z": -5227.35 + "Z": -5226.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751515,9 +751515,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2143.28, + "X": 2143.07, "Y": 283.4, - "Z": -5190.34 + "Z": -5189.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751683,9 +751683,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2532.81, + "X": 2532.59, "Y": 231.84, - "Z": -5071.27 + "Z": -5070.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751851,9 +751851,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1718.2, + "X": 1717.98, "Y": 273.51, - "Z": -4155.79 + "Z": -4155.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752019,9 +752019,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1748.25, + "X": 1748.04, "Y": 209.93, - "Z": -5384.92 + "Z": -5384.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752237,9 +752237,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1070.41, + "X": 1070.2, "Y": 259.42, - "Z": -4359.85 + "Z": -4359.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752415,9 +752415,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1360.07, + "X": 1359.85, "Y": 221.01, - "Z": -5589.96 + "Z": -5589.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752593,9 +752593,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1352.27, + "X": 1352.06, "Y": 285.47, - "Z": -4323.67 + "Z": -4322.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752771,9 +752771,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1960.23, + "X": 1960.01, "Y": 215.29, - "Z": -4123.35 + "Z": -4122.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752979,9 +752979,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2531.77, + "X": 2531.56, "Y": 284.84, - "Z": -4482.1 + "Z": -4481.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753147,9 +753147,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 463.45, + "X": 463.24, "Y": 224.63, - "Z": -4462.28 + "Z": -4461.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753315,9 +753315,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 999.58, + "X": 999.37, "Y": 243.05, - "Z": -5733.63 + "Z": -5732.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753483,9 +753483,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1494.09, + "X": 1493.88, "Y": 243.37, - "Z": -4225.3 + "Z": -4224.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753651,9 +753651,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1917.28, + "X": 1917.06, "Y": 254.93, - "Z": -3952.27 + "Z": -3951.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753819,9 +753819,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1893.96, + "X": 1893.75, "Y": 273.87, - "Z": -5884.15 + "Z": -5883.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753987,9 +753987,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1690.79, + "X": 1690.57, "Y": 207.01, - "Z": -5914.72 + "Z": -5914.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754155,9 +754155,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1249.0, + "X": 1248.79, "Y": 216.16, - "Z": -4606.2 + "Z": -4605.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754353,9 +754353,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1486.42, + "X": 1486.21, "Y": 268.86, - "Z": -4903.37 + "Z": -4902.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754551,9 +754551,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 929.52, + "X": 929.3, "Y": 233.51, - "Z": -4860.88 + "Z": -4860.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754729,9 +754729,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1511.98, + "X": 1511.77, "Y": 200.17, - "Z": -5161.54 + "Z": -5160.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754927,9 +754927,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2340.54, + "X": 2340.32, "Y": 253.48, - "Z": -4739.37 + "Z": -4738.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -755125,9 +755125,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2024.95, + "X": 2024.74, "Y": 221.59, - "Z": -4803.55 + "Z": -4802.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -755333,9 +755333,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 882.75, + "X": 882.54, "Y": 230.87, - "Z": -5354.97 + "Z": -5354.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -755541,9 +755541,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2051.59, + "X": 2051.38, "Y": 233.32, - "Z": -4470.71 + "Z": -4470.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -755749,9 +755749,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1727.2, + "X": 1726.99, "Y": 256.36, - "Z": -4520.8 + "Z": -4520.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -756021,9 +756021,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1558.96, + "X": 1558.88, "Y": 47.06, - "Z": -8275.49 + "Z": -8274.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -756279,9 +756279,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1358.84, + "X": 1358.77, "Y": 24.82, - "Z": -9039.18 + "Z": -9038.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -756537,9 +756537,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 789.93, + "X": 789.85, "Y": 93.43, - "Z": -8752.23 + "Z": -8751.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -756765,9 +756765,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1274.99, + "X": 1274.92, "Y": 99.49, - "Z": -8918.07 + "Z": -8917.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -757033,9 +757033,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1054.57, + "X": 1054.49, "Y": 159.02, - "Z": -8485.81 + "Z": -8485.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -757301,9 +757301,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1134.89, + "X": 1134.82, "Y": 144.73, - "Z": -8414.57 + "Z": -8414.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -757479,9 +757479,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1713.75, + "X": 1713.67, "Y": -10.87, - "Z": -9201.58 + "Z": -9201.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -758439,7 +758439,7 @@ "Cognitive Load Exposure": "96.76%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "85.14%", - "Testing Exposure": "2.48%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -766111,9 +766111,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3963.82, + "X": 3963.5, "Y": 165.09, - "Z": -10504.92 + "Z": -10504.12 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -766268,9 +766268,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3947.89, + "X": 3947.57, "Y": 184.98, - "Z": -10128.74 + "Z": -10127.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766626,9 +766626,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3727.28, + "X": 3726.96, "Y": 160.01, - "Z": -9795.16 + "Z": -9794.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -770828,9 +770828,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -659.63, + "X": -659.65, "Y": 170.29, - "Z": -4734.21 + "Z": -4733.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -770996,9 +770996,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 91.97, + "X": 91.95, "Y": 168.57, - "Z": -3954.9 + "Z": -3954.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771164,9 +771164,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1.81, + "X": 1.8, "Y": 260.28, - "Z": -5450.93 + "Z": -5450.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771332,9 +771332,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 707.39, + "X": 707.38, "Y": 260.15, - "Z": -4366.98 + "Z": -4366.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771500,9 +771500,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 665.79, + "X": 665.77, "Y": 221.96, - "Z": -4647.59 + "Z": -4646.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771748,9 +771748,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -265.28, + "X": -265.3, "Y": 207.95, - "Z": -4191.27 + "Z": -4190.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771916,9 +771916,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 670.51, + "X": 670.49, "Y": 306.88, - "Z": -5263.33 + "Z": -5262.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -772084,9 +772084,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 130.05, + "X": 130.03, "Y": 279.83, - "Z": -5191.54 + "Z": -5190.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -772332,9 +772332,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -152.54, + "X": -152.55, "Y": 218.53, - "Z": -4692.94 + "Z": -4692.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -772630,9 +772630,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 364.07, + "X": 364.06, "Y": 192.87, - "Z": -4529.16 + "Z": -4528.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -772828,9 +772828,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -401.97, + "X": -401.98, "Y": 236.52, - "Z": -4757.76 + "Z": -4757.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773116,9 +773116,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 561.7, + "X": 561.68, "Y": 284.23, - "Z": -4910.3 + "Z": -4909.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773304,9 +773304,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 82.19, + "X": 82.18, "Y": 205.05, - "Z": -4804.38 + "Z": -4803.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773622,9 +773622,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 268.98, + "X": 268.96, "Y": 220.44, - "Z": -4096.6 + "Z": -4095.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773790,9 +773790,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -481.17, + "X": -481.19, "Y": 229.59, - "Z": -5016.55 + "Z": -5015.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773960,9 +773960,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -164.52, + "X": -164.53, "Y": 268.58, - "Z": -5435.91 + "Z": -5435.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -774148,9 +774148,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 347.4, + "X": 347.38, "Y": 274.52, - "Z": -5358.77 + "Z": -5358.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -774305,9 +774305,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -61.75, + "X": -61.76, "Y": 218.34, - "Z": -4185.47 + "Z": -4184.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -774493,9 +774493,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 757.87, + "X": 757.86, "Y": 245.35, - "Z": -4960.72 + "Z": -4959.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -774663,9 +774663,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -507.45, + "X": -507.47, "Y": 196.48, - "Z": -4412.03 + "Z": -4411.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -785703,9 +785703,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2278.58, + "X": -2278.28, "Y": 22.79, - "Z": -3488.68 + "Z": -3488.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -785976,9 +785976,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2333.1, + "X": -2332.8, "Y": -95.23, - "Z": -4091.83 + "Z": -4091.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -786156,9 +786156,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2620.77, + "X": -2620.47, "Y": 79.93, - "Z": -3613.54 + "Z": -3612.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -786337,9 +786337,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1856.43, + "X": -1856.13, "Y": 241.11, - "Z": -2562.73 + "Z": -2562.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -786521,9 +786521,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2440.32, + "X": -2440.02, "Y": -30.26, - "Z": -3824.33 + "Z": -3823.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -786725,9 +786725,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2061.12, + "X": -2060.82, "Y": 128.87, - "Z": -3295.02 + "Z": -3294.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787048,9 +787048,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2083.21, + "X": -2082.91, "Y": -36.94, - "Z": -3996.2 + "Z": -3995.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787291,9 +787291,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1824.57, + "X": -1824.27, "Y": -23.52, - "Z": -3913.48 + "Z": -3912.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787607,9 +787607,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2516.57, + "X": -2516.27, "Y": 167.99, - "Z": -3170.03 + "Z": -3169.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787788,9 +787788,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2237.9, + "X": -2237.6, "Y": 204.15, - "Z": -2764.52 + "Z": -2763.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787980,9 +787980,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2381.08, + "X": -2380.78, "Y": 57.34, - "Z": -3393.96 + "Z": -3393.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -788201,9 +788201,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1569.78, + "X": -1569.48, "Y": 102.21, - "Z": -3308.29 + "Z": -3307.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -788434,9 +788434,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2008.24, + "X": -2007.94, "Y": 155.58, - "Z": -2873.6 + "Z": -2873.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -788677,9 +788677,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1615.39, + "X": -1615.09, "Y": 168.66, - "Z": -3002.01 + "Z": -3001.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -788905,9 +788905,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -990.59, + "X": -990.28, "Y": 99.83, - "Z": -3392.18 + "Z": -3391.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789085,9 +789085,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1290.19, + "X": -1289.89, "Y": -39.56, - "Z": -4222.38 + "Z": -4221.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789296,9 +789296,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1243.52, + "X": -1243.21, "Y": 130.02, - "Z": -3255.35 + "Z": -3254.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789586,9 +789586,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1180.7, + "X": -1180.4, "Y": 3.97, - "Z": -3570.04 + "Z": -3569.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789797,9 +789797,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1662.12, + "X": -1661.82, "Y": -119.51, - "Z": -4464.74 + "Z": -4464.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789967,9 +789967,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1807.32, + "X": -1807.02, "Y": 65.58, - "Z": -3558.26 + "Z": -3557.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -790470,9 +790470,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1389.62, + "X": -1389.32, "Y": 31.17, - "Z": -3606.4 + "Z": -3605.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -790732,9 +790732,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1557.15, + "X": -1556.85, "Y": -60.48, - "Z": -4089.96 + "Z": -4089.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -790993,9 +790993,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1924.65, + "X": -1924.35, "Y": -120.31, - "Z": -4218.12 + "Z": -4217.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791184,9 +791184,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1237.61, + "X": -1237.31, "Y": 152.5, - "Z": -2943.04 + "Z": -2942.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791373,44 +791373,44 @@ } } }, - "jcl/cics-banking-sample-application-cbsa": { - "Directory Group Magnitude": 332.32, - "File Count": 99, + "groovy/spock_specs": { + "Directory Group Magnitude": 317.28, + "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "6.16%", - "Error & Exception Exposure": "51.11%", - "Tech Debt Exposure": "56.97%", - "Testing Exposure": "1.88%", - "API Exposure": "1.39%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "1.49%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "78.45%", + "Cognitive Load Exposure": "12.86%", + "Error & Exception Exposure": "18.31%", + "Tech Debt Exposure": "96.54%", + "Testing Exposure": "2.26%", + "API Exposure": "0.0%", + "Concurrency Exposure": "1.63%", + "State Flux Exposure": "9.56%", + "Commented Logic Exposure": "0.34%", + "Specification Exposure": "96.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "53.06%", + "Documentation Exposure": "44.66%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl": { + "groovy/spock_specs/org_spockframework_builder_PojoBuilderSpec.groovy": { "1. Artifact Identity": { - "Filename": "ABNDPROC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_builder_PojoBuilderSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_builder_PojoBuilderSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1061.8, - "Y": 112.97, - "Z": -2906.95 + "X": -3642.99, + "Y": 172.93, + "Z": -2988.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791419,52 +791419,152 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 216, + "Coding LOC": 166, + "Documentation LOC": 14, + "Structural Magnitude": 21.02, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Tech Debt Exposure": "98.63%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "16.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "\"configure primitives\"", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 123 + }, + { + "Function Name": "\"parse enum value\"", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 153, + "End Line": 167 + }, + { + "Function Name": "\"adding elements to collection\"", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 98 + }, + { + "Function Name": "\"configure nested property\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 44 + }, + { + "Function Name": "\"configure collection property that has concrete declared type\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 58, + "End Line": 69 + }, + { + "Function Name": "\"configure collection property and choose collection type\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 83 + }, + { + "Function Name": "\"access local variable\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 125, + "End Line": 137 + }, + { + "Function Name": "\"access field\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 151 + }, + { + "Function Name": "\"configure collection property\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 55 + }, + { + "Function Name": "\"configure top-level property\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 24, + "End Line": 32 + }, + { + "Function Name": "LinkedList", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 75, + "End Line": 76 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 30, + "Function Parameters": 11, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 9, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -791472,13 +791572,13 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 20, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 7, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, @@ -791496,7 +791596,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -791507,7 +791607,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 146, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -791524,15 +791624,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 9, + "Design Camel Case": 2, + "Design Snake Case": 7, "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -791556,32 +791656,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl": { + "groovy/spock_specs/org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy": { "1. Artifact Identity": { - "Filename": "ACCLOAD.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1664.7, - "Y": 19.69, - "Z": -2898.68 + "X": -4129.02, + "Y": 231.25, + "Z": -2018.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791590,70 +791689,90 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 50, + "Coding LOC": 22, + "Documentation LOC": 13, + "Structural Magnitude": 4.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.227 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "11.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "44.23%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"class file of regular class isn't considered a runnable spec\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 25, + "End Line": 28 + }, + { + "Function Name": "\"class file of abstract spec isn't considered a runnable spec\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 33 + }, + { + "Function Name": "\"class file of concrete spec is considered a runnable spec\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 18, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 4, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -791676,9 +791795,9 @@ "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 1, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -791695,15 +791814,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -791729,30 +791848,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.spockframework.util.ReflectionUtil", + "spock.lang.*" ] }, - "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl": { + "groovy/spock_specs/org_spockframework_datapipes_DataPipesIteratorSpec.groovy": { "1. Artifact Identity": { - "Filename": "ACCOFFL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_datapipes_DataPipesIteratorSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_datapipes_DataPipesIteratorSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -352.65, - "Y": 110.7, - "Z": -1030.33 + "X": -3915.54, + "Y": 193.13, + "Z": -2404.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791761,70 +791880,210 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, - "Control Flow Ratio": "0.0%", + "Total LOC": 175, + "Coding LOC": 120, + "Documentation LOC": 21, + "Structural Magnitude": 25.6, + "Control Flow Ratio": "7.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.093 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "6.74%", + "Error & Exception Exposure": "53.85%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "17.04%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "\"Iterable uses the Groovy default size method to estimate number of iterations\"", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 46, + "End Line": 57 + }, + { + "Function Name": "hasNext", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 156, + "End Line": 163 + }, + { + "Function Name": "next", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 165, + "End Line": 172 + }, + { + "Function Name": "\"Collection data provider will use size method to estimate number of iterations\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 44 + }, + { + "Function Name": "\"Iterable with size method shall use the size method to estimate number of iterations\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 71 + }, + { + "Function Name": "\"Iterator shall be only called once\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 85 + }, + { + "Function Name": "runIterations", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 87, + "End Line": 96 + }, + { + "Function Name": "dataProvider", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 98, + "End Line": 101 + }, + { + "Function Name": "getDataProvider", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 103, + "End Line": 107 + }, + { + "Function Name": "iterator", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 113, + "End Line": 117 + }, + { + "Function Name": "size", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 123 + }, + { + "Function Name": "size", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 130, + "End Line": 133 + }, + { + "Function Name": "iterator", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 135, + "End Line": 139 + }, + { + "Function Name": "iterator", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 145, + "End Line": 149 + }, + { + "Function Name": "cleanup", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 29, + "End Line": 31 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 39, + "Function Parameters": 15, + "Function/Method Declarations": 16, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 12, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 9, + "Generic Type Abstractions": 2, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -791839,17 +792098,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 1, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 7, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 113, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -791866,15 +792125,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 17, + "Design Camel Case": 12, + "Design Snake Case": 5, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Duplicate Logic": 3, + "Orphaned Logic": 8, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -791898,32 +792157,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.util.Objects.requireNonNull", + "org.spockframework.EmbeddedSpecification", + "spock.lang.Issue", + "spock.util.EmbeddedSpecRunner" ] }, - "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_DataSpec.groovy": { "1. Artifact Identity": { - "Filename": "BANKDATA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_DataSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_DataSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 576.41, - "Y": 44.61, - "Z": -1874.34 + "X": -3741.74, + "Y": 172.48, + "Z": -2369.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791932,90 +792193,350 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 115, - "Coding LOC": 114, - "Documentation LOC": 0, - "Structural Magnitude": 9.18, - "Control Flow Ratio": "0.0%", + "Total LOC": 602, + "Coding LOC": 293, + "Documentation LOC": 221, + "Structural Magnitude": 101.76, + "Control Flow Ratio": "29.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.229 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.8%", - "Tech Debt Exposure": "37.14%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "11.05%", + "Error & Exception Exposure": "61.03%", + "Tech Debt Exposure": "99.94%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "71.17%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.21%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BANKDAT1", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 38, + "Function Name": "\"named multi-variable data pipes\"", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 357, + "End Line": 378 + }, + { + "Function Name": "\"nested and named multi-variable data pipes\"", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 380, + "End Line": 393 + }, + { + "Function Name": "\"multiple data provider combined\"", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 92, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 104, + "End Line": 195 + }, + { + "Function Name": "\"only single data providers are combined - part 2\"", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 244, + "End Line": 318 + }, + { + "Function Name": "\"only single data providers are combined - part 1\"", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 46, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 197, + "End Line": 242 + }, + { + "Function Name": "\"nested multi-variable data pipes\"", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 340, + "End Line": 355 + }, + { + "Function Name": "in", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 586, + "End Line": 600 + }, + { + "Function Name": "\"type coercion for data variable values with own coercion\"", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 507, + "End Line": 535 + }, + { + "Function Name": "\"type coercion for data variable values\"", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 497, + "End Line": 504 + }, + { + "Function Name": "setupSpec", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 17, + "End Line": 31 + }, + { + "Function Name": "\"maximum of two numbers combined assignment\"", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 479, + "End Line": 494 + }, + { + "Function Name": "\"maximum of two numbers data variable assignment\"", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 395, + "End Line": 405 + }, + { + "Function Name": "\"excluding iterations\"", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 584, + "End Line": 593 + }, + { + "Function Name": "cleanupSpec", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 33, + "End Line": 35 + }, + { + "Function Name": "\"multiple tables\"", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 93 + "Start Line": 50, + "End Line": 68 }, { - "Function Name": "BANKDAT0", + "Function Name": "\"multiple tables with top border\"", "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 55 + "Start Line": 84, + "End Line": 102 }, { - "Function Name": "BANKDAT5", + "Function Name": "\"maximum of two numbers previous column access over multiple tables\"", "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, + "Lines of Code (LOC)": 22, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 94, - "End Line": 114 + "Start Line": 434, + "End Line": 455 + }, + { + "Function Name": "\"single column\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 48 + }, + { + "Function Name": "\"multiple tables joined\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 70, + "End Line": 82 + }, + { + "Function Name": "\"maximum of two numbers sql data variable assignment\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 407, + "End Line": 419 + }, + { + "Function Name": "\"maximum of two numbers previous column access\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 421, + "End Line": 432 + }, + { + "Function Name": "\"data pipes\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 537, + "End Line": 547 + }, + { + "Function Name": "\"maximum of two numbers multi-assignment star\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 468, + "End Line": 477 + }, + { + "Function Name": "\"#lastName\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 571, + "End Line": 580 + }, + { + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 321, + "End Line": 327 + }, + { + "Function Name": "\"maximum of two numbers star\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 330, + "End Line": 338 + }, + { + "Function Name": "\"maximum of two numbers multi-assignment\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 458, + "End Line": 465 + }, + { + "Function Name": "\"#person is #person.age years old\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 550, + "End Line": 557 + }, + { + "Function Name": "\"#person.name.toUpperCase()\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 560, + "End Line": 567 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 17, - "Function Parameters": 0, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 18, + "Sequential Logic Declarations": 44, + "Function Parameters": 30, + "Function/Method Declarations": 29, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, - "I/O and Network Boundaries": 25, + "High-Risk Execution Commands": 6, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 22, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 59, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 3, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 2, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Collection Iterators / Comprehensions": 3, + "Scientific & Mathematical Operations": 12, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 6, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -792040,7 +792561,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 32, + "Structural Space Indentations": 284, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792057,15 +792578,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 20, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 19, + "Design Camel Case": 1, + "Design Snake Case": 18, "Design Pascal Case": 0, - "Design Upper Case": 20, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 28, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -792073,7 +792594,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -792082,41 +792603,44 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 7, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "@BANK_DBRMLIB@", - "@BANK_LOADLIB@", - "@BANK_PREFIX@.CUSTOMER", - "@DB2_HLQ@.SDSNLOAD" + "groovy.sql.Sql", + "groovy.transform.ToString", + "org.junit.platform.engine.TestDescriptor.Type.TEST", + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.GroovyRuntimeUtil", + "spock.lang.Shared", + "spock.util.mop.Use" ] }, - "jcl/cics-banking-sample-application-cbsa/BATCH.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v1_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BATCH.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BATCH.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v1_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v1_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 118.57, - "Y": 42.98, - "Z": -1854.54 + "X": -2834.37, + "Y": 120.23, + "Z": -2144.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792125,70 +792649,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 57, - "Coding LOC": 56, - "Documentation LOC": 0, - "Structural Magnitude": 8.82, + "Total LOC": 16, + "Coding LOC": 10, + "Documentation LOC": 3, + "Structural Magnitude": 1.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "82.34%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.42%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.57%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.53%", + "Documentation Exposure": "50.45%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "COBOL", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 41 - }, - { - "Function Name": "LKED", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 15, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 56 + "Start Line": 7, + "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 42, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 43, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -792196,9 +792710,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 3, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -792223,7 +792737,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792240,15 +792754,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 50, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -792265,50 +792779,38 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..ADATA(&MEMBER)", - "&CBSAHLQ..COBOL(&MEMBER)", - "&CBSAHLQ..DEBUG(&MEMBER)", - "&CBSAHLQ..DSECT", - "&CBSAHLQ..LKED(&MEMBER)", - "&CBSAHLQ..LOADLIB", - "&CICSHLQ..SDFHCOB", - "&CICSHLQ..SDFHLOAD", - "&CICSHLQ..SDFHSAMP", - "&COBOLHLQ..SIGYCOMP", - "&DB2HLQ..SDSNLOAD", - "&LEHLQ..SCEELKED", - "&LEHLQ..SCEESAMP" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v2_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1ACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v2_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v2_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1283.73, - "Y": 71.83, - "Z": -1249.13 + "X": -3195.59, + "Y": 107.4, + "Z": -2990.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792317,51 +792819,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 23, + "Coding LOC": 13, + "Documentation LOC": 6, + "Structural Magnitude": 2.86, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.06%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "57.34%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1ACC", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 8, + "End Line": 19 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -792370,7 +792872,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -792378,7 +792880,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -792405,7 +792907,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792422,15 +792924,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -792454,32 +792956,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v3_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v3_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v3_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -177.49, - "Y": 87.13, - "Z": -3616.39 + "X": -4103.8, + "Y": 193.73, + "Z": -1453.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792488,51 +792989,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 1.76, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -792541,7 +793042,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -792549,7 +793050,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -792576,7 +793077,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792593,11 +793094,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -792625,32 +793126,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v4_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v4_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v4_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1156.67, - "Y": 103.73, - "Z": -2146.04 + "X": -4536.44, + "Y": 207.29, + "Z": -2819.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792659,51 +793159,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 21, + "Coding LOC": 15, + "Documentation LOC": 2, + "Structural Magnitude": 1.9, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "67.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CAM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 8, + "End Line": 19 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -792712,17 +793212,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -792747,7 +793247,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792764,15 +793264,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -792797,31 +793297,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Rollup", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v5_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CCA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v5_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v5_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1575.12, - "Y": 48.41, - "Z": -1297.75 + "X": -2907.64, + "Y": 68.82, + "Z": -2757.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792830,51 +793330,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 1.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.01%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"maximum of #a and #b is #c\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 17 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -792883,7 +793383,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -792891,7 +793391,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -792918,7 +793418,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792935,11 +793435,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -792967,32 +793467,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v6_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CCM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v6_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v6_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1381.49, - "Y": 71.87, - "Z": -3155.41 + "X": -4035.07, + "Y": 137.55, + "Z": -3268.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793001,51 +793500,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 1.76, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CCM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 8 + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -793054,7 +793553,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -793062,7 +793561,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -793089,7 +793588,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793106,15 +793605,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793138,32 +793637,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v7_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CCS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v7_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v7_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1187.28, - "Y": 91.83, - "Z": -1930.58 + "X": -3299.81, + "Y": 148.65, + "Z": -1686.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793172,51 +793670,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 25, + "Coding LOC": 18, + "Documentation LOC": 2, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.278 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "13.14%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "62.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 22 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -793225,7 +793723,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -793233,7 +793731,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 2, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -793260,7 +793758,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793277,11 +793775,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -793309,32 +793807,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CDM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 123.04, - "Y": 67.75, - "Z": -739.07 + "X": -3035.11, + "Y": 152.32, + "Z": -2703.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793343,70 +793840,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 28, + "Coding LOC": 20, + "Documentation LOC": 2, + "Structural Magnitude": 4.2, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.85 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Cognitive Load Exposure": "59.87%", + "Error & Exception Exposure": "70.63%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "47.5%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "59.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CDM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"I run first\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 10, + "End Line": 17 + }, + { + "Function Name": "\"I run second\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 25 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 8, + "Function Parameters": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 4, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 2, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793420,7 +793927,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -793431,7 +793938,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793448,15 +793955,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793480,32 +793987,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification", + "spock.lang.Stepwise", + "spock.util.mop.ConfineMetaClassChanges" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_ExtensionStoreSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CRA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_ExtensionStoreSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_ExtensionStoreSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1195.76, - "Y": 62.82, - "Z": -3592.37 + "X": -3937.37, + "Y": 175.76, + "Z": -2947.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793514,70 +794022,110 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, - "Control Flow Ratio": "0.0%", + "Total LOC": 136, + "Coding LOC": 78, + "Documentation LOC": 36, + "Structural Magnitude": 14.66, + "Control Flow Ratio": "11.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.287 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Cognitive Load Exposure": "13.57%", + "Error & Exception Exposure": "59.53%", + "Tech Debt Exposure": "99.6%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", + "Concurrency Exposure": "48.84%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "15.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "executionStop", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 119, + "End Line": 133 + }, + { + "Function Name": "\"extension store example\"", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 53, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 36, + "End Line": 88 + }, + { + "Function Name": "executionStart", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 113, + "End Line": 117 + }, + { + "Function Name": "visitSpec", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 108, + "End Line": 111 + }, + { + "Function Name": "setup", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 34 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 24, + "Function Parameters": 9, + "Function/Method Declarations": 5, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Unit Test Assertions": 3, + "Asynchronous/Concurrent Execution": 2, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 4, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 6, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 13, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793590,19 +794138,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Ad-hoc Print / Debug Statements": 5, + "Explicit Type Casts": 1, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 3, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 3, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 58, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793619,15 +794167,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 7, + "Design Camel Case": 1, + "Design Snake Case": 3, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 5, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793651,32 +794199,44 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 14, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.util.concurrent.ConcurrentHashMap", + "java.util.concurrent.atomic.AtomicInteger", + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.IStandardStreamsListener", + "org.spockframework.runtime.StandardStreamsCapturer", + "org.spockframework.runtime.extension.IGlobalExtension", + "org.spockframework.runtime.extension.IMethodInterceptor", + "org.spockframework.runtime.extension.ISpockExecution", + "org.spockframework.runtime.extension.IStore.Namespace", + "org.spockframework.runtime.model.SpecInfo", + "org.spockframework.runtime.model.parallel.Resources", + "spock.lang.AutoCleanup", + "spock.lang.ResourceLock", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1DAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 499.25, - "Y": 90.73, - "Z": -647.76 + "X": -4491.58, + "Y": 158.1, + "Z": -2435.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793685,51 +794245,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, - "Control Flow Ratio": "0.0%", + "Total LOC": 37, + "Coding LOC": 15, + "Documentation LOC": 17, + "Structural Magnitude": 2.9, + "Control Flow Ratio": "10.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.4 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "19.78%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "47.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, + "Function Name": "\"FancyMockMaker usage\"", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Control Flow Ratio": "20.0%", + "Start Line": 24, + "End Line": 35 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 9, + "Function Parameters": 2, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -793738,17 +794298,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793773,7 +794333,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793790,12 +794350,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -793824,30 +794384,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.spockframework.EmbeddedSpecification", + "org.spockframework.mock.CannotCreateMockException" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_IgnoreIfDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1DAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_IgnoreIfDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_IgnoreIfDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -603.92, - "Y": 128.09, - "Z": -3321.9 + "X": -4326.63, + "Y": 208.93, + "Z": -2156.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793856,51 +794416,111 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 92, + "Coding LOC": 52, + "Documentation LOC": 24, + "Structural Magnitude": 10.34, + "Control Flow Ratio": "6.7%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.212 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "10.4%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "21.91%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1DAM", + "Function Name": "\"IgnoreIf can be configured to be inherited\"", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 89 + }, + { + "Function Name": "\"I will run everywhere but not on Windows\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 34 + }, + { + "Function Name": "\"I'll run everywhere but on Windows\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 14 + }, + { + "Function Name": "\"I will run everywhere but on Windows\"", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 17, + "End Line": 17 + }, + { + "Function Name": "\"I'll run everywhere but on Windows or anywhere on Java 8\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 25 + }, + { + "Function Name": "\"I'll run everywhere but on Windows and only if a != 5 and b < 6\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 43 + }, + { + "Function Name": "\"For the given reason, I will not run on MacOS\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 58, + "End Line": 58 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 14, + "Function Parameters": 7, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -793909,17 +794529,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 9, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 1, + "Decorators and Annotations": 8, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793944,7 +794564,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 46, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793961,15 +794581,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793993,32 +794613,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.extension.builtin.PreconditionContext", + "spock.lang.IgnoreIf" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_InterceptorSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1DCM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_InterceptorSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_InterceptorSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1752.04, - "Y": 82.49, - "Z": -1809.2 + "X": -3170.43, + "Y": 138.84, + "Z": -2435.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794027,70 +794648,110 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 111, + "Coding LOC": 65, + "Documentation LOC": 34, + "Structural Magnitude": 11.9, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "98.27%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Commented Logic Exposure": "10.07%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "16.58%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1DCM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "visitSpecAnnotation", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 50, + "End Line": 82 + }, + { + "Function Name": "visitFeatureAnnotation", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 109 + }, + { + "Function Name": "I", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 96, + "End Line": 100 + }, + { + "Function Name": "I", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 40, + "End Line": 40 + }, + { + "Function Name": "\"a method\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 32, + "End Line": 35 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 20, + "Function Parameters": 14, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 3, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 6, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Decorators and Annotations": 8, + "Generic Type Abstractions": 1, + "Collection Iterators / Comprehensions": 3, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 10, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794115,7 +794776,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 43, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794132,15 +794793,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794164,32 +794825,40 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 10, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.lang.annotation.ElementType", + "java.lang.annotation.Retention", + "java.lang.annotation.RetentionPolicy", + "java.lang.annotation.Target", + "org.spockframework.runtime.extension.AbstractMethodInterceptor", + "org.spockframework.runtime.extension.ExtensionAnnotation", + "org.spockframework.runtime.extension.IAnnotationDrivenExtension", + "org.spockframework.runtime.model.FeatureInfo", + "org.spockframework.runtime.model.SpecInfo", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_IssueDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1DCS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_IssueDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_IssueDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -919.81, - "Y": 68.17, - "Z": -3092.56 + "X": -3773.03, + "Y": 91.68, + "Z": -3022.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794198,51 +794867,71 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 26, + "Coding LOC": 19, + "Documentation LOC": 2, + "Structural Magnitude": 3.98, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "12.48%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "61.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"Foo should do bar\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 12 + }, + { + "Function Name": "\"I have two related issues\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 17 + }, + { + "Function Name": "\"I have three related issues\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 8, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -794251,17 +794940,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 5, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794286,7 +794975,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794303,15 +794992,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794337,30 +795026,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Issue", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1MAI.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -991.65, - "Y": 71.63, - "Z": -1490.13 + "X": -3563.39, + "Y": 134.72, + "Z": -3195.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794369,70 +795058,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 44, + "Coding LOC": 19, + "Documentation LOC": 20, + "Structural Magnitude": 2.28, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Cognitive Load Exposure": "12.48%", + "Error & Exception Exposure": "80.34%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "38.91%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1MAI", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"preferredMockMaker configuration setting\"", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 25, + "End Line": 42 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794446,7 +795135,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -794457,7 +795146,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794474,15 +795163,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794506,32 +795195,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.RunContext", + "spock.mock.MockMakers" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_ParameterInjectionSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1TFM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_ParameterInjectionSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_ParameterInjectionSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 720.48, - "Y": 113.75, - "Z": -3565.82 + "X": -3453.67, + "Y": 123.97, + "Z": -2154.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794540,52 +795230,112 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 65, + "Coding LOC": 49, + "Documentation LOC": 4, + "Structural Magnitude": 18.88, + "Control Flow Ratio": "12.5%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.233 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "11.23%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "33.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1TFM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 - } + "Function Name": "visitParameterAnnotation", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 51, + "End Line": 62 + }, + { + "Function Name": "\"test\"", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 31 + }, + { + "Function Name": "SpockExecutionException", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 60 + }, + { + "Function Name": "setupSpec", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 17, + "End Line": 19 + }, + { + "Function Name": "setup", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 22, + "End Line": 24 + }, + { + "Function Name": "cleanup", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 36 + }, + { + "Function Name": "cleanupSpec", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 40 + } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 21, + "Function Parameters": 7, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 4, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -794593,17 +795343,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 5, + "Generic Type Abstractions": 2, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 10, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794618,7 +795368,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -794628,7 +795378,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 30, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794645,15 +795395,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794677,32 +795427,40 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 10, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.lang.annotation.ElementType", + "java.lang.annotation.Retention", + "java.lang.annotation.RetentionPolicy", + "java.lang.annotation.Target", + "org.spockframework.runtime.SpockExecutionException", + "org.spockframework.runtime.extension.ExtensionAnnotation", + "org.spockframework.runtime.extension.IAnnotationDrivenExtension", + "org.spockframework.runtime.extension.ParameterResolver", + "org.spockframework.runtime.model.ParameterInfo", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1TFN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1846.58, - "Y": 28.3, - "Z": -2411.35 + "X": -3328.93, + "Y": 111.83, + "Z": -2603.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794711,70 +795469,90 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, - "Control Flow Ratio": "0.0%", + "Total LOC": 41, + "Coding LOC": 30, + "Documentation LOC": 6, + "Structural Magnitude": 16.0, + "Control Flow Ratio": "9.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.95 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "69.0%", + "Error & Exception Exposure": "85.37%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "44.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "\"I have various problems in certain situations\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 29 + }, + { + "Function Name": "\"I'm not yet implemented on windows, but I am on other operating systems\"", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 10, + "End Line": 10 + }, + { + "Function Name": "\"This feature isn't deployed out to production yet, and isn't expected to pass\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 18 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 10, + "Function Parameters": 5, + "Function/Method Declarations": 5, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 5, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794789,7 +795567,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -794797,9 +795575,9 @@ "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 1, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 23, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794816,15 +795594,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 6, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794848,32 +795626,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.opentest4j.TestAbortedException", + "spock.lang.PendingFeature", + "spock.lang.PendingFeatureIf", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_RequiresDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1UAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_RequiresDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_RequiresDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -794.96, - "Y": 57.41, - "Z": -1229.36 + "X": -4460.95, + "Y": 195.02, + "Z": -1859.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794882,51 +795662,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 24, + "Coding LOC": 16, + "Documentation LOC": 4, + "Structural Magnitude": 2.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.312 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "14.8%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "63.59%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "\"I'll only run on Windows\"", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 8, + "End Line": 8 + }, + { + "Function Name": "\"I'll run only on Windows with Java 8\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -794935,17 +795725,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 3, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794970,7 +795760,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794987,15 +795777,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795021,30 +795811,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Requires", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_RetryDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1UAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_RetryDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_RetryDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 992.71, - "Y": 22.85, - "Z": -768.48 + "X": -4150.79, + "Y": 165.97, + "Z": -2555.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795053,70 +795843,190 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 103, + "Coding LOC": 75, + "Documentation LOC": 10, + "Structural Magnitude": 17.9, + "Control Flow Ratio": "5.9%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.136 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Cognitive Load Exposure": "7.91%", + "Error & Exception Exposure": "69.11%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "23.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1UAM", + "Function Name": "\"only retry if condition on failure holds\"", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 34, + "End Line": 36 + }, + { + "Function Name": "\"retry failing feature methods\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 49 + }, + { + "Function Name": "\"retry with setup and cleanup\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 57 + }, + { + "Function Name": "\"retry 3 times\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 21 + }, + { + "Function Name": "\"retry 5 times\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 26 + }, + { + "Function Name": "\"only retry on IOException\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 31 + }, + { + "Function Name": "\"retry after 1000 ms delay\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 62 + }, + { + "Function Name": "\"will be retried using its own config\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 78 + }, + { + "Function Name": "\"only retry if condition on instance holds\"", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 38, + "End Line": 38 + }, + { + "Function Name": "\"will be retried with config from class\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 73 + }, + { + "Function Name": "inherited", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 87 + }, + { + "Function Name": "foo", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 93 + }, + { + "Function Name": "bar", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 98, + "End Line": 100 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 32, + "Function Parameters": 13, + "Function/Method Declarations": 13, + "Class/Entity Declarations": 6, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 15, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 13, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795141,7 +796051,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 54, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795158,15 +796068,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 11, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795190,32 +796100,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 4, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "groovy.sql.Sql", + "spock.lang.Retry", + "spock.lang.Shared", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_SeeDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNKMENU.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_SeeDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_SeeDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 361.0, - "Y": 79.59, - "Z": -3797.74 + "X": -3760.36, + "Y": 213.89, + "Z": -1594.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795224,51 +796136,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 21, + "Coding LOC": 15, + "Documentation LOC": 2, + "Structural Magnitude": 2.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "67.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"Even more information is available on the feature\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 12 + }, + { + "Function Name": "\"And even more information is available on the feature\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 18 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -795277,17 +796199,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 4, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795312,7 +796234,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795329,15 +796251,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795363,30 +796285,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.See", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_SnapshotDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BTCHSQL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_SnapshotDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_SnapshotDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 661.58, - "Y": 85.57, - "Z": -3200.25 + "X": -4266.05, + "Y": 153.16, + "Z": -2960.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795395,22 +796317,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 64, + "Coding LOC": 31, + "Documentation LOC": 23, + "Structural Magnitude": 6.22, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.161 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "8.67%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795418,47 +796340,77 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "28.25%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", + "Function Name": "\"using parameter based snapshot\"", "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 40, + "End Line": 43 + }, + { + "Function Name": "\"using field based snapshot\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 29, + "End Line": 35 + }, + { + "Function Name": "\"custom matching\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 61 + }, + { + "Function Name": "\"multi snapshot\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 47, + "End Line": 51 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 14, + "Function Parameters": 6, + "Function/Method Declarations": 4, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 10, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 7, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795483,7 +796435,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 21, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795500,15 +796452,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795516,7 +796468,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -795525,39 +796477,44 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 7, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "org.hamcrest.MatcherAssert", + "org.hamcrest.MatcherAssert.assertThat", + "org.hamcrest.Matchers", + "org.hamcrest.Matchers.equalTo", + "spock.lang.Snapshot", + "spock.lang.Snapshotter", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_StepwiseDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "CBSACSD.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_StepwiseDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_StepwiseDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 590.97, - "Y": 84.6, - "Z": -799.31 + "X": -3447.53, + "Y": 134.09, + "Z": -3065.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795566,60 +796523,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 1.86, + "Total LOC": 52, + "Coding LOC": 28, + "Documentation LOC": 15, + "Structural Magnitude": 6.76, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.321 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "15.26%", + "Error & Exception Exposure": "69.53%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "68.07%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "36.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "DFHCSDUP", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "\"Annotation on feature\"", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 23, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 23 + "Start Line": 28, + "End Line": 50 + }, + { + "Function Name": "\"Annotation on spec\"", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 26 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 10, + "Function Parameters": 2, + "Function/Method Declarations": 2, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 10, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 4, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -795629,7 +796596,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795654,7 +796621,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 22, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795671,15 +796638,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795696,7 +796663,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -795709,27 +796676,27 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "@CBSA_INSTALL@(BANK)", - "@CICS_PREFIX@.SDFHLOAD", - "@CSD_PREFIX@.DFHCSD" + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.extension.builtin.PreconditionContext", + "spock.lang.IgnoreIf" ] }, - "jcl/cics-banking-sample-application-cbsa/CICS.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_SubjectDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "CICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CICS.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_SubjectDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_SubjectDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -122.69, - "Y": 75.46, - "Z": -2233.27 + "X": -3895.48, + "Y": 168.14, + "Z": -1908.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795738,65 +796705,44 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 59, - "Coding LOC": 58, - "Documentation LOC": 0, - "Structural Magnitude": 8.86, + "Total LOC": 27, + "Coding LOC": 14, + "Documentation LOC": 8, + "Structural Magnitude": 15.28, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "81.76%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.14%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.78%", + "Documentation Exposure": "57.55%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "COBOL", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 42 - }, - { - "Function Name": "LKED", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 58 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 43, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 3, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 43, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -795806,12 +796752,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 4, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795825,7 +796771,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -795836,7 +796782,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795853,11 +796799,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 50, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -795878,51 +796824,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..ADATA(&MEMBER)", - "&CBSAHLQ..COBOL(&MEMBER)", - "&CBSAHLQ..DEBUG(&MEMBER)", - "&CBSAHLQ..DSECT", - "&CBSAHLQ..LKED(&MEMBER)", - "&CBSAHLQ..LOADLIB", - "&CICSHLQ..SDFHCOB", - "&CICSHLQ..SDFHLOAD", - "&CICSHLQ..SDFHSAMP", - "&COBOLHLQ..SIGYCOMP", - "&DB2HLQ..SDSNLOAD", - "&LEHLQ..SCEELKED", - "&LEHLQ..SCEESAMP" + "spock.lang.Specification", + "spock.lang.Subject" ] }, - "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_TagDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "CICSTS56.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_TagDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_TagDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Alert": "TYPOSQUATTING THREAT: 'DSNC10/SDSNLOD2' mimics 'DSNC10/SDSNLOAD'", - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 351.34, - "Y": 47.48, - "Z": -2730.67 + "X": -4274.87, + "Y": 119.03, + "Z": -3023.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795931,130 +796865,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 183, - "Coding LOC": 182, - "Documentation LOC": 0, - "Structural Magnitude": 19.74, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 2.56, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "81.31%", - "Tech Debt Exposure": "59.5%", - "Testing Exposure": "2.39%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.04%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.17%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CICS", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 100, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 142 - }, - { - "Function Name": "PRTDMPB", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 166 - }, - { - "Function Name": "PRTDMPA", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 143, - "End Line": 153 - }, - { - "Function Name": "PRTAUXT", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 167, - "End Line": 176 - }, - { - "Function Name": "CICSCNTL", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 34 - }, - { - "Function Name": "DTCNTL", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, + "Function Name": "\"has two tags\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 42 + "Start Line": 13, + "End Line": 16 }, { - "Function Name": "PRTBUXT", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "\"has one tag\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 177, - "End Line": 182 + "Start Line": 9, + "End Line": 11 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 70, - "Function Parameters": 4, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 7, - "I/O and Network Boundaries": 123, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 2, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -796079,7 +796963,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -796096,15 +796980,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 109, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 109, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -796117,62 +797001,43 @@ "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 1, + "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 21, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&INDEX2..SDFHAUTH", - "&INDEX2..SDFHLOAD", - "&INDEX3..SEYUAUTH", - "&INDEX3..SEYULOAD", - "ADCD.Z25A.TCPPARMS(GBLTDATA)", - "CBSA.CICSBSA.LOADLIB", - "CEE.SCEECICS", - "CEE.SCEERUN", - "CEE.SCEERUN2", - "DFH560.CICS.EQADPFMB", - "DFH560.CICS.SDFHLINK", - "DFH560.DFHCMACD", - "DFH560.EQAIVP.LOAD", - "DFH560.SDFHLIC", - "DFH560.SYSIN(DFHPLT)", - "DSNC10.SDSNLOAD", - "DSNC10.SDSNLOD2", - "ISM330.SEQAMOD", - "SYS1.MIGLIB", - "SYS1.SIEAMIGE", - "TCPIP.SEZATCP" + "spock.lang.Specification", + "spock.lang.Tag" ] }, - "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_TempDirDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "COMPALL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "org_spockframework_docs_extension_TempDirDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_TempDirDocSpec.groovy", + "Language": "Groovy", + "Architect": "dqyuan", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 255.21, - "Y": 92.42, - "Z": -2313.16 + "X": -3499.36, + "Y": 192.9, + "Z": -1985.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -796181,22 +797046,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 175, - "Coding LOC": 174, - "Documentation LOC": 0, - "Structural Magnitude": 49.18, + "Total LOC": 54, + "Coding LOC": 29, + "Documentation LOC": 13, + "Structural Magnitude": 6.38, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.172 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "7.16%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.48%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -796204,418 +797069,68 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.47%", + "Documentation Exposure": "33.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "XFRFUN", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 97, - "End Line": 103 - }, - { - "Function Name": "ABNDPROC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 15 - }, - { - "Function Name": "BANKDATA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "setupSpec", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 16, - "End Line": 19 - }, - { - "Function Name": "BNK1MAI", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 - }, - { - "Function Name": "BNKMENU", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 28 - }, - { - "Function Name": "CRDTAGY1", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 32 + "End Line": 35 }, { - "Function Name": "CRDTAGY2", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "demo", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 36 + "Start Line": 43, + "End Line": 50 }, { - "Function Name": "CRDTAGY3", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "setup", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 37, + "Start Line": 38, "End Line": 40 - }, - { - "Function Name": "CRDTAGY4", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 44 - }, - { - "Function Name": "CRDTAGY5", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 48 - }, - { - "Function Name": "CREACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 49, - "End Line": 52 - }, - { - "Function Name": "CRECUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 56 - }, - { - "Function Name": "DBCRFUN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 60 - }, - { - "Function Name": "DELACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 64 - }, - { - "Function Name": "DELCUS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 68 - }, - { - "Function Name": "GETCOMPY", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 72 - }, - { - "Function Name": "GETSCODE", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 76 - }, - { - "Function Name": "INQACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 80 - }, - { - "Function Name": "INQACCCU", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 84 - }, - { - "Function Name": "INQCUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 88 - }, - { - "Function Name": "UPDACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 92 - }, - { - "Function Name": "UPDCUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 93, - "End Line": 96 - }, - { - "Function Name": "BNK1ACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 108 - }, - { - "Function Name": "BNK1CAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 109, - "End Line": 113 - }, - { - "Function Name": "BNK1CAC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 117 - }, - { - "Function Name": "BNK1CCA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 121 - }, - { - "Function Name": "BNK1CCM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 122, - "End Line": 126 - }, - { - "Function Name": "BNK1CCS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 130 - }, - { - "Function Name": "BNK1CDM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 135 - }, - { - "Function Name": "BNK1CRA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 139 - }, - { - "Function Name": "BNK1DAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 140, - "End Line": 144 - }, - { - "Function Name": "BNK1DAC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 145, - "End Line": 148 - }, - { - "Function Name": "BNK1DCM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 153 - }, - { - "Function Name": "BNK1DCS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 158 - }, - { - "Function Name": "BNK1TFM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 159, - "End Line": 163 - }, - { - "Function Name": "BNK1TFN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 167 - }, - { - "Function Name": "BNK1UAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 172 - }, - { - "Function Name": "BNK1UAC", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 173, - "End Line": 174 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 38, - "Function Parameters": 0, - "Function/Method Declarations": 38, + "Sequential Logic Declarations": 10, + "Function Parameters": 3, + "Function/Method Declarations": 3, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 9, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 5, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 38, - "Authorship Metadata": 0, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -796639,7 +797154,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 23, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -796656,15 +797171,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 95, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 95, - "Design Short Vars": 38, + "Design Upper Case": 0, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -796688,32 +797203,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.nio.file.Path", + "spock.lang.*", + "spock.util.io.FileSystemFixture" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_UseDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "CRDTAGY1.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_UseDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_UseDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1242.32, - "Y": 7.87, - "Z": -1185.67 + "X": -3135.13, + "Y": 152.75, + "Z": -1843.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -796722,51 +797238,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 2.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.09%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, + "Function Name": "avg", + "Structural Impact": 1.5, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 8 + }, + { + "Function Name": "\"can use avg() method\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 12, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -796775,17 +797301,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -796799,7 +797325,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -796810,7 +797336,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -796827,11 +797353,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -796861,30 +797387,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification", + "spock.util.mop.Use" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl": { + "groovy/spock_specs/org_spockframework_docs_interaction_BuilderExampleSpec.groovy": { "1. Artifact Identity": { - "Filename": "CRDTAGY2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_interaction_BuilderExampleSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_interaction_BuilderExampleSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1295.11, - "Y": 114.22, - "Z": -2311.7 + "X": -2855.91, + "Y": 123.04, + "Z": -2214.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -796893,51 +797419,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 40, + "Coding LOC": 27, + "Documentation LOC": 2, + "Structural Magnitude": 2.54, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.185 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "9.46%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Tech Debt Exposure": "99.71%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "51.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"build example\"", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 27 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 8, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 3, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -796946,17 +797472,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -796981,7 +797507,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797000,9 +797526,9 @@ "Vectorized Math & Tensor Operations": 0, "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -797032,82 +797558,96 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "groovy.transform.builder.*", + "spock.lang.Specification" ] - }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl": { + } + } + }, + "sqlite/mediawiki_sqlite_tables": { + "Directory Group Magnitude": 315.54, + "File Count": 11, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "90.9%", + "Static: Literature & Documentation": "9.1%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "5.49%", + "Error & Exception Exposure": "33.6%", + "Tech Debt Exposure": "90.91%", + "Testing Exposure": "1.62%", + "API Exposure": "0.42%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "63.03%", + "Instability Exposure": "45.45%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "36.66%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "sqlite/mediawiki_sqlite_tables/COPYING": { "1. Artifact Identity": { - "Filename": "CRDTAGY3.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl", - "Language": "Jcl", + "Filename": "COPYING", + "Path": "sqlite/mediawiki_sqlite_tables/COPYING", + "Language": "Plaintext", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Folder Dominant Lang": "sqlite", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 1596.65, - "Y": 35.44, - "Z": -3067.33 + "X": -2341.96, + "Y": -8.88, + "Z": -7213.53 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 379, + "Coding LOC": 0, + "Documentation LOC": 307, + "Structural Magnitude": 7.58, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -797127,7 +797667,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797169,15 +797709,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797201,32 +797741,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-block_target.sql": { "1. Artifact Identity": { - "Filename": "CRDTAGY4.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl", - "Language": "Jcl", + "Filename": "patch-block_target.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-block_target.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -57.99, - "Y": 44.26, - "Z": -604.43 + "X": -1794.18, + "Y": 10.01, + "Z": -7748.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797235,52 +797772,142 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, + "Total LOC": 42, + "Coding LOC": 30, "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Structural Magnitude": 12.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.167 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "8.84%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "50.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2, + "End Line": 15 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 17, + "End Line": 17 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 19 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 21 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 37 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 39, + "End Line": 39 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 41 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -797298,7 +797925,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797323,7 +797950,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797340,15 +797967,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797372,32 +797999,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-collation.sql": { "1. Artifact Identity": { - "Filename": "CRDTAGY5.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl", - "Language": "Jcl", + "Filename": "patch-collation.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-collation.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -547.3, - "Y": 80.95, - "Z": -3773.44 + "X": -1599.29, + "Y": 32.75, + "Z": -7728.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797407,34 +798031,44 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, + "Coding LOC": 5, "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Structural Magnitude": 2.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "0.82%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "29.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, @@ -797447,11 +798081,11 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -797469,7 +798103,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797494,7 +798128,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797511,15 +798145,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797543,32 +798177,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREACC.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql": { "1. Artifact Identity": { - "Filename": "CREACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREACC.jcl", - "Language": "Jcl", + "Filename": "patch-existencelinks.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 790.95, - "Y": 65.39, - "Z": -2927.12 + "X": -2381.44, + "Y": -73.32, + "Z": -6947.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797578,35 +798209,45 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, + "Coding LOC": 6, "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.0%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "34.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, @@ -797618,15 +798259,15 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -797640,7 +798281,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797665,7 +798306,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797682,15 +798323,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797714,32 +798355,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-file.sql": { "1. Artifact Identity": { - "Filename": "CRECUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl", - "Language": "Jcl", + "Filename": "patch-file.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-file.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 423.48, - "Y": 103.32, - "Z": -1118.48 + "X": -2106.91, + "Y": -108.36, + "Z": -6909.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797748,56 +798386,156 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, + "Total LOC": 47, + "Coding LOC": 33, "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Structural Magnitude": 13.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.152 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "8.36%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "47.17%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 25 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2, + "End Line": 7 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 42 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 9 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 27 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 29 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 31, + "End Line": 31 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 46 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -797811,7 +798549,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797836,7 +798574,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797853,15 +798591,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 11, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797885,32 +798623,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql": { "1. Artifact Identity": { - "Filename": "CREDB00.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl", - "Language": "Jcl", + "Filename": "patch-user-user_is_temp.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1151.48, - "Y": 87.8, - "Z": -2635.73 + "X": -1334.79, + "Y": -96.87, + "Z": -6905.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797919,57 +798654,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Total LOC": 7, + "Coding LOC": 2, + "Documentation LOC": 4, + "Structural Magnitude": 3.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 3.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.09%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "11.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "ALTER_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 5, + "End Line": 6 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -798007,7 +798742,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798024,11 +798759,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -798040,7 +798775,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -798049,39 +798784,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql": { "1. Artifact Identity": { - "Filename": "CREDB2L.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl", - "Language": "Jcl", + "Filename": "patch-user_autocreate_serial-uas_year.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -247.9, - "Y": 110.87, - "Z": -2016.63 + "X": -1380.27, + "Y": -43.7, + "Z": -7502.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798090,66 +798822,96 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 27, - "Coding LOC": 26, - "Documentation LOC": 0, - "Structural Magnitude": 5.22, + "Total LOC": 28, + "Coding LOC": 18, + "Documentation LOC": 4, + "Structural Magnitude": 6.26, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.192 + "Raw Cognitive Density": 0.278 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.79%", - "Error & Exception Exposure": "92.71%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.42%", - "API Exposure": "6.59%", + "Cognitive Load Exposure": "13.14%", + "Error & Exception Exposure": "84.62%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "87.14%", + "Documentation Exposure": "60.42%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 20 + "Start Line": 14, + "End Line": 19 }, { - "Function Name": "STEP20", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 9 + }, + { + "Function Name": "INSERT_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 21, - "End Line": 26 + "End Line": 25 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 27 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 3, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -798183,12 +798945,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Resource Deallocation & Cleanup": 2, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798205,15 +798967,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 11, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 5, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798230,39 +798992,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..DB2.JCL.INSTALL", - "&HLQ..DB2.JCL.INSTALL(EMPTY)" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREI101.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql": { "1. Artifact Identity": { - "Filename": "CREI101.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI101.jcl", - "Language": "Jcl", + "Filename": "patch-watchlist_label.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -60.83, - "Y": 80.97, - "Z": -1557.66 + "X": -2064.86, + "Y": 59.16, + "Z": -7604.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798271,55 +799030,85 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 23, + "Total LOC": 17, + "Coding LOC": 12, "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Structural Magnitude": 4.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "60.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 1, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 14 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -798376,15 +799165,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798392,7 +799181,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -798401,39 +799190,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREI201.jcl": { + "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql": { "1. Artifact Identity": { - "Filename": "CREI201.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI201.jcl", - "Language": "Jcl", + "Filename": "searchindex-fts3.sql", + "Path": "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -42.5, - "Y": 55.23, - "Z": -3283.0 + "X": -2034.62, + "Y": -148.41, + "Z": -6689.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798442,56 +799228,76 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Total LOC": 19, + "Coding LOC": 6, + "Documentation LOC": 9, + "Structural Magnitude": 5.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.38%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.1%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.14%", + "API Exposure": "4.63%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "37.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", + "Function Name": "INSERT_Statement", "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 18 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 6, + "End Line": 16 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -798525,12 +799331,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798547,15 +799353,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798563,7 +799369,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -798572,39 +799378,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREI301.jcl": { + "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql": { "1. Artifact Identity": { - "Filename": "CREI301.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI301.jcl", - "Language": "Jcl", + "Filename": "searchindex-no-fts.sql", + "Path": "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1169.85, - "Y": 46.65, - "Z": -1983.63 + "X": -1605.34, + "Y": -145.6, + "Z": -6950.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798614,54 +799417,124 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, - "Control Flow Ratio": "0.0%", + "Coding LOC": 13, + "Documentation LOC": 5, + "Structural Magnitude": 10.16, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.462 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "98.81%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "58.49%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "DELETE_Statement", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 18 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 6, + "End Line": 6 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 23 + "End Line": 9 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 10 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 20 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 8, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -798696,7 +799569,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -798718,15 +799591,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 8, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798734,7 +799607,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -798743,39 +799616,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREL001.jcl": { + "sqlite/mediawiki_sqlite_tables/tables-generated.sql": { "1. Artifact Identity": { - "Filename": "CREL001.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL001.jcl", - "Language": "Jcl", + "Filename": "tables-generated.sql", + "Path": "sqlite/mediawiki_sqlite_tables/tables-generated.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 589.4, - "Y": 100.45, - "Z": -2675.2 + "X": -1805.21, + "Y": -74.03, + "Z": -7206.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798784,1098 +799654,2026 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 5.2, + "Total LOC": 948, + "Coding LOC": 683, + "Documentation LOC": 4, + "Structural Magnitude": 247.46, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.49%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", + "Documentation Exposure": "13.37%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 27 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 51 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 103, + "End Line": 112 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 220, + "End Line": 236 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 251, + "End Line": 262 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 286, + "End Line": 301 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 381, + "End Line": 390 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 442, + "End Line": 452 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 485, + "End Line": 498 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 511, + "End Line": 522 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 580, + "End Line": 589 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 629, + "End Line": 645 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 685, + "End Line": 694 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 731, + "End Line": 740 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 743, + "End Line": 755 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 809, + "End Line": 827 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 836, + "End Line": 851 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 69 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.4, "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 + "Start Line": 80, + "End Line": 88 }, { - "Function Name": "STEP20", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 122, + "End Line": 128 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 316, + "End Line": 322 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 338, + "End Line": 346 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 536, + "End Line": 542 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 610, + "End Line": 616 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 673, + "End Line": 680 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 768, + "End Line": 774 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 11, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 2, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.BUILDJCL", - "&HLQ..CICSBSA.BUILDJCL(EMPTY)" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL002.jcl": { - "1. Artifact Identity": { - "Filename": "CREL002.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL002.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 269.07, - "Y": 63.91, - "Z": -1549.38 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 91, + "End Line": 96 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.ADATA" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL003.jcl": { - "1. Artifact Identity": { - "Filename": "CREL003.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL003.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -253.54, - "Y": 89.52, - "Z": -2852.34 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 171, + "End Line": 176 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.LOADLIB" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL004.jcl": { - "1. Artifact Identity": { - "Filename": "CREL004.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL004.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 1069.26, - "Y": 79.99, - "Z": -1990.79 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 196, + "End Line": 201 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DBRM" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL005.jcl": { - "1. Artifact Identity": { - "Filename": "CREL005.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL005.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -450.91, - "Y": 130.59, - "Z": -1909.03 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 208, + "End Line": 213 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.LKED" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL006.jcl": { - "1. Artifact Identity": { - "Filename": "CREL006.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL006.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 467.18, - "Y": 36.16, - "Z": -1637.88 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 5.2, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 349, + "End Line": 354 + }, { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 + "Start Line": 361, + "End Line": 366 }, { - "Function Name": "STEP20", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 11, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 2, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.BMS", - "&HLQ..CICSBSA.BMS(EMPTY)" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL007.jcl": { - "1. Artifact Identity": { - "Filename": "CREL007.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL007.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 468.21, - "Y": 58.35, - "Z": -3264.13 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 371, + "End Line": 376 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 406, + "End Line": 411 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 414, + "End Line": 419 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 432, + "End Line": 437 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 475, + "End Line": 480 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 549, + "End Line": 554 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 565, + "End Line": 570 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 707, + "End Line": 712 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 719, + "End Line": 724 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 781, + "End Line": 786 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 860, + "End Line": 865 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 875, + "End Line": 880 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 897, + "End Line": 902 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 907, + "End Line": 912 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 9 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 117 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 145 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 157 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 162, + "End Line": 166 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 179, + "End Line": 182 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 187, + "End Line": 191 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 275, + "End Line": 279 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 332, + "End Line": 335 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 398, + "End Line": 401 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 424, + "End Line": 427 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 530, + "End Line": 533 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 574, + "End Line": 577 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 594, + "End Line": 598 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 603, + "End Line": 607 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 665, + "End Line": 668 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 760, + "End Line": 763 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 790, + "End Line": 793 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 796, + "End Line": 799 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 802, + "End Line": 806 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 868, + "End Line": 872 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 887, + "End Line": 890 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 923, + "End Line": 927 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 932, + "End Line": 936 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 941, + "End Line": 945 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 13 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 31 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 53 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 55 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 57 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 59 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 71 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 73 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 75 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 77 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 98, + "End Line": 98 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 100 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 119 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 130, + "End Line": 130 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 132, + "End Line": 132 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 134, + "End Line": 134 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 138 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 147, + "End Line": 147 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 149 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 151, + "End Line": 151 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 159, + "End Line": 159 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 168 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 184, + "End Line": 184 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 193, + "End Line": 193 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 203, + "End Line": 203 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 205, + "End Line": 205 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 215, + "End Line": 215 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 217, + "End Line": 217 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 238 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 240, + "End Line": 242 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 244, + "End Line": 244 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 246, + "End Line": 246 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 248, + "End Line": 248 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 264, + "End Line": 264 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 266, + "End Line": 266 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 268 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 270 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 272, + "End Line": 272 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 281, + "End Line": 283 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 303, + "End Line": 303 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 305, + "End Line": 305 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 307, + "End Line": 307 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 309, + "End Line": 309 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 311, + "End Line": 313 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 324, + "End Line": 324 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 326, + "End Line": 328 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 330, + "End Line": 330 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 356, + "End Line": 356 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 358, + "End Line": 358 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 368, + "End Line": 368 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 378, + "End Line": 378 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 392, + "End Line": 392 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 394, + "End Line": 394 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 396, + "End Line": 396 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 403, + "End Line": 403 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 421, + "End Line": 421 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 429, + "End Line": 429 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 439, + "End Line": 439 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 454, + "End Line": 454 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 456, + "End Line": 456 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 458, + "End Line": 460 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 462, + "End Line": 462 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 464, + "End Line": 466 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 468, + "End Line": 468 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 470, + "End Line": 472 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 482, + "End Line": 482 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 500, + "End Line": 500 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 502, + "End Line": 502 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 504, + "End Line": 504 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 506, + "End Line": 506 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 508, + "End Line": 508 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 524, + "End Line": 524 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 526, + "End Line": 526 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 528, + "End Line": 528 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 544, + "End Line": 544 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 546, + "End Line": 546 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 556, + "End Line": 556 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 558, + "End Line": 558 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 560, + "End Line": 560 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 562, + "End Line": 562 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 572, + "End Line": 572 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 591, + "End Line": 591 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 600, + "End Line": 600 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 618, + "End Line": 618 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 620, + "End Line": 622 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 624, + "End Line": 626 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 647, + "End Line": 647 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 649, + "End Line": 651 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 653, + "End Line": 653 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 655, + "End Line": 657 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 659, + "End Line": 659 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 661, + "End Line": 661 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 663, + "End Line": 663 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 670, + "End Line": 670 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 682, + "End Line": 682 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 696, + "End Line": 696 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 698, + "End Line": 698 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 700, + "End Line": 700 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 702, + "End Line": 704 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 714, + "End Line": 714 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 716, + "End Line": 716 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 726, + "End Line": 726 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 728, + "End Line": 728 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 757, + "End Line": 757 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 765, + "End Line": 765 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 776, + "End Line": 778 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 788, + "End Line": 788 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 829, + "End Line": 829 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 831, + "End Line": 831 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 833, + "End Line": 833 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 853, + "End Line": 853 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 855, + "End Line": 855 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 857, + "End Line": 857 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 882, + "End Line": 882 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 884, + "End Line": 884 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 892, + "End Line": 892 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 894, + "End Line": 894 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 904, + "End Line": 904 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 914, + "End Line": 914 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 916, + "End Line": 916 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 918, + "End Line": 920 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 929, + "End Line": 929 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 938, + "End Line": 938 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 947, + "End Line": 947 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 134, + "Class/Entity Declarations": 64, + "Defensive Programming Constructs": 83, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -799914,7 +801712,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 398, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -799922,7 +801720,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -799931,15 +801729,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 198, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799956,96 +801754,108 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DEBUG" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL008.jcl": { + "9. Extracted Dependencies": [] + } + } + }, + "python/wtfpython": { + "Directory Group Magnitude": 313.92, + "File Count": 6, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "83.3%", + "Static: Literature & Documentation": "16.7%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "21.73%", + "Error & Exception Exposure": "29.68%", + "Tech Debt Exposure": "37.59%", + "Testing Exposure": "14.42%", + "API Exposure": "3.61%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "33.33%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "62.22%", + "Instability Exposure": "41.67%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "7.42%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "python/wtfpython/README.md": { "1. Artifact Identity": { - "Filename": "CREL008.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL008.jcl", - "Language": "Jcl", + "Filename": "README.md", + "Path": "python/wtfpython/README.md", + "Language": "Markdown", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 745.7, - "Y": 65.31, - "Z": -1646.6 + "X": -4576.34, + "Y": 99.18, + "Z": 10610.36 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, + "Total LOC": 4180, + "Coding LOC": 0, + "Documentation LOC": 3118, + "Structural Magnitude": 83.6, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800101,19 +801911,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, - "Instructional Code Examples": 0, + "Instructional Code Examples": 504, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Structured Literature Headers": 174, + "Hyperlinked Literature References": 171, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -800126,110 +801936,87 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.CBSAMOD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREL009.jcl": { + "python/wtfpython/2_tricky_strings.py": { "1. Artifact Identity": { - "Filename": "CREL009.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL009.jcl", - "Language": "Jcl", + "Filename": "2_tricky_strings.py", + "Path": "python/wtfpython/2_tricky_strings.py", + "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -305.08, - "Y": 127.91, - "Z": -2458.45 + "X": -4313.79, + "Y": 191.44, + "Z": 10129.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 5.2, + "Total LOC": 20, + "Coding LOC": 12, + "Documentation LOC": 3, + "Structural Magnitude": 15.24, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.167 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", + "Documentation Exposure": "9.54%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 6, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 6, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -800242,7 +802029,7 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 8, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -800281,12 +802068,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 6, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 6, "Design Pascal Case": 0, - "Design Upper Case": 11, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -800306,108 +802093,95 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.COBOL", - "&HLQ..CICSBSA.COBOL(EMPTY)" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREL010.jcl": { + "python/wtfpython/insert_ids.py": { "1. Artifact Identity": { - "Filename": "CREL010.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL010.jcl", - "Language": "Jcl", + "Filename": "insert_ids.py", + "Path": "python/wtfpython/insert_ids.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 986.53, - "Y": 70.68, - "Z": -2412.03 + "X": -4069.66, + "Y": 187.76, + "Z": 10761.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, + "Total LOC": 25, + "Coding LOC": 15, "Documentation LOC": 0, - "Structural Magnitude": 5.2, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Structural Magnitude": 8.4, + "Control Flow Ratio": "44.4%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 1.15 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", + "Cognitive Load Exposure": "83.2%", + "Error & Exception Exposure": "88.67%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", + "Testing Exposure": "2.34%", + "API Exposure": "4.25%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "generate_random_id_comment", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 + "Start Line": 9, + "End Line": 11 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 4, "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, + "Function Parameters": 1, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -800420,7 +802194,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800445,7 +802219,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800462,11 +802236,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 5, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 5, "Design Pascal Case": 0, - "Design Upper Case": 11, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800487,107 +802261,96 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DSECT", - "&HLQ..CICSBSA.DSECT(EMPTY)" + "uuid" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL011.jcl": { + "python/wtfpython/mixed_tabs_and_spaces.py": { "1. Artifact Identity": { - "Filename": "CREL011.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL011.jcl", - "Language": "Jcl", + "Filename": "mixed_tabs_and_spaces.py", + "Path": "python/wtfpython/mixed_tabs_and_spaces.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Mixed (75.0% Spaces / 25.0% Tabs)", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -89.13, - "Y": 44.49, - "Z": -1833.94 + "X": -4807.34, + "Y": 107.58, + "Z": 10237.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, + "Total LOC": 8, + "Coding LOC": 6, "Documentation LOC": 0, - "Structural Magnitude": 5.2, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, + "Structural Magnitude": 4.22, + "Control Flow Ratio": "33.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", + "Testing Exposure": "1.04%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", + "Documentation Exposure": "4.77%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 + "Function Name": "square", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 2, + "Function Parameters": 1, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800614,7 +802377,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -800625,8 +802388,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 1, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800643,11 +802406,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 11, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800668,114 +802431,181 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.REORG", - "&HLQ..CICSBSA.REORG(EMPTY)" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl": { + "python/wtfpython/notebook_generator.py": { "1. Artifact Identity": { - "Filename": "CRELIBS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl", - "Language": "Jcl", + "Filename": "notebook_generator.py", + "Path": "python/wtfpython/notebook_generator.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -440.53, - "Y": 85.05, - "Z": -2106.17 + "X": -4390.23, + "Y": 179.55, + "Z": 10396.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 20, - "Documentation LOC": 0, - "Structural Magnitude": 3.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 398, + "Coding LOC": 245, + "Documentation LOC": 89, + "Structural Magnitude": 199.8, + "Control Flow Ratio": "65.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.35 + "Raw Cognitive Density": 0.898 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.76%", - "Error & Exception Exposure": "89.45%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "32.19%", + "Error & Exception Exposure": "89.44%", + "Tech Debt Exposure": "25.51%", + "Testing Exposure": "80.0%", + "API Exposure": "6.52%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "47.5%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.25%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "IEFBR14", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "parse_example_parts", + "Structural Impact": 57.1, + "Lines of Code (LOC)": 103, + "Control Flow Branches": 25, + "Input Parameters": 3, + "Control Flow Ratio": "92.6%", + "Start Line": 96, + "End Line": 198 + }, + { + "Function Name": "convert_to_cells", + "Structural Impact": 16.2, + "Lines of Code (LOC)": 81, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 228, + "End Line": 308 + }, + { + "Function Name": "convert_to_notebook", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 311, + "End Line": 342 + }, + { + "Function Name": "inspect_and_sanitize_code_lines", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 208, + "End Line": 225 + }, + { + "Function Name": "remove_from_beginning", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 201, + "End Line": 205 + }, + { + "Function Name": "is_interactive_statement", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 89, + "End Line": 93 + }, + { + "Function Name": "generate_code_block", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 20 + "Start Line": 57, + "End Line": 72 + }, + { + "Function Name": "generate_markdown_block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 86 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 13, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "Control Flow Branches": 56, + "Sequential Logic Declarations": 29, + "Function Parameters": 9, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 17, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 8, + "State Mutations / Variable Reassignments": 81, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 25, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 12, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 3, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -800785,19 +802615,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 226, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800814,13 +802644,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 15, + "Core Var Decl": 69, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 67, "Design Pascal Case": 0, - "Design Upper Case": 15, + "Design Upper Case": 2, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 1, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -800846,101 +802676,92 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 12, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "CREDB2L", - "CREL001", - "CREL002", - "CREL003", - "CREL004", - "CREL005", - "CREL006", - "CREL007", - "CREL008", - "CREL009", - "CREL010", - "CREL011" + "json", + "os", + "pprint", + "sys" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl": { + "python/wtfpython/noxfile.py": { "1. Artifact Identity": { - "Filename": "CRESG01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl", - "Language": "Jcl", + "Filename": "noxfile.py", + "Path": "python/wtfpython/noxfile.py", + "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 725.74, - "Y": 47.34, - "Z": -1122.52 + "X": -3977.43, + "Y": 253.19, + "Z": 10025.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, + "Total LOC": 14, + "Coding LOC": 8, "Documentation LOC": 0, - "Structural Magnitude": 2.02, - "Control Flow Ratio": "0.0%", + "Structural Magnitude": 2.66, + "Control Flow Ratio": "14.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.375 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.28%", + "API Exposure": "5.12%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "6.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "tests", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 12, + "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Sequential Logic Declarations": 6, - "Function Parameters": 0, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800949,12 +802770,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800979,7 +802800,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800995,13 +802816,13 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -801012,7 +802833,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801021,39 +802842,64 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "nox", + "nox.sessions", + "typing" ] - }, - "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl": { + } + } + }, + "jcl/cics-banking-sample-application-cbsa": { + "Directory Group Magnitude": 312.88, + "File Count": 99, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "6.08%", + "Error & Exception Exposure": "52.59%", + "Tech Debt Exposure": "58.1%", + "Testing Exposure": "1.47%", + "API Exposure": "1.39%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "1.61%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "59.93%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "38.15%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl": { "1. Artifact Identity": { - "Filename": "CRESG02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl", + "Filename": "ABNDPROC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -787.26, - "Y": 59.35, - "Z": -2709.88 + "X": -1061.47, + "Y": 112.96, + "Z": -2906.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801062,55 +802908,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801125,7 +802971,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801150,7 +802996,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801167,11 +803013,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801183,7 +803029,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801192,7 +803038,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801201,30 +803047,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl": { + "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl": { "1. Artifact Identity": { - "Filename": "CRESG03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl", + "Filename": "ACCLOAD.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1411.84, - "Y": 32.73, - "Z": -2490.12 + "X": 1664.29, + "Y": 19.7, + "Z": -2898.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801233,55 +803079,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801296,7 +803142,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801321,7 +803167,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801338,11 +803184,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801354,7 +803200,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801363,7 +803209,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801372,30 +803218,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl": { + "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl": { "1. Artifact Identity": { - "Filename": "CRETB01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl", + "Filename": "ACCOFFL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 895.66, - "Y": 83.43, - "Z": -1831.75 + "X": -352.52, + "Y": 110.7, + "Z": -1030.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801404,55 +803250,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 36, - "Documentation LOC": 0, - "Structural Magnitude": 3.12, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.139 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.59%", - "Error & Exception Exposure": "80.94%", - "Tech Debt Exposure": "97.7%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.66%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 28, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 36 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801467,7 +803313,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801492,7 +803338,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801509,11 +803355,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801525,7 +803371,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801534,7 +803380,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801543,18 +803389,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl": { + "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl": { "1. Artifact Identity": { - "Filename": "CRETB02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl", + "Filename": "BANKDATA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -801564,9 +803410,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 838.84, - "Y": 105.09, - "Z": -2726.45 + "X": 188.46, + "Y": 52.61, + "Z": -1700.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801575,22 +803421,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 34, - "Documentation LOC": 0, - "Structural Magnitude": 2.98, + "Total LOC": 115, + "Coding LOC": 64, + "Documentation LOC": 50, + "Structural Magnitude": 7.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.147 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.76%", - "Error & Exception Exposure": "81.76%", - "Tech Debt Exposure": "98.4%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "86.07%", + "Tech Debt Exposure": "98.43%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801598,32 +803444,52 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.3%", + "Documentation Exposure": "12.05%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 26, + "Function Name": "BANKDAT1", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 23, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 34 + "Start Line": 56, + "End Line": 78 + }, + { + "Function Name": "BANKDAT0", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 36, + "End Line": 55 + }, + { + "Function Name": "BANKDAT5", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 94, + "End Line": 114 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 17, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 3, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 3, + "I/O and Network Boundaries": 25, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801650,7 +803516,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -801663,7 +803529,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 32, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801680,15 +803546,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 20, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 20, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801705,39 +803571,41 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 3, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "@BANK_DBRMLIB@", + "@BANK_LOADLIB@", + "@BANK_PREFIX@.CUSTOMER", + "@DB2_HLQ@.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl": { + "jcl/cics-banking-sample-application-cbsa/BATCH.jcl": { "1. Artifact Identity": { - "Filename": "CRETB03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl", + "Filename": "BATCH.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BATCH.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -594.26, - "Y": 90.86, - "Z": -2436.19 + "X": -193.46, + "Y": 52.39, + "Z": -2438.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801746,22 +803614,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 29, - "Coding LOC": 27, - "Documentation LOC": 0, - "Structural Magnitude": 2.54, + "Total LOC": 57, + "Coding LOC": 52, + "Documentation LOC": 4, + "Structural Magnitude": 8.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.185 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.62%", - "Error & Exception Exposure": "84.86%", - "Tech Debt Exposure": "99.71%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "73.59%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801769,32 +803637,42 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "53.19%", + "Documentation Exposure": "32.71%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Function Name": "COBOL", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 36, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 6, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 28 + "Start Line": 5, + "End Line": 40 + }, + { + "Function Name": "LKED", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 42, + "End Line": 56 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 42, + "Function Parameters": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801834,7 +803712,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801851,15 +803729,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 50, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 50, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801867,7 +803745,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801876,39 +803754,50 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&CBSAHLQ..ADATA(&MEMBER)", + "&CBSAHLQ..COBOL(&MEMBER)", + "&CBSAHLQ..DEBUG(&MEMBER)", + "&CBSAHLQ..DSECT", + "&CBSAHLQ..LKED(&MEMBER)", + "&CBSAHLQ..LOADLIB", + "&CICSHLQ..SDFHCOB", + "&CICSHLQ..SDFHLOAD", + "&CICSHLQ..SDFHSAMP", + "&COBOLHLQ..SIGYCOMP", + "&DB2HLQ..SDSNLOAD", + "&LEHLQ..SCEELKED", + "&LEHLQ..SCEESAMP" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl": { "1. Artifact Identity": { - "Filename": "CRETS01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl", + "Filename": "BNK1ACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -331.11, - "Y": 47.7, - "Z": -1135.32 + "X": 1283.4, + "Y": 71.83, + "Z": -1249.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801917,55 +803806,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1ACC", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801980,7 +803869,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802005,7 +803894,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -802022,15 +803911,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802038,7 +803927,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -802047,7 +803936,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802055,31 +803944,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl": { "1. Artifact Identity": { - "Filename": "CRETS02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl", + "Filename": "BNK1CAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 48.24, - "Y": 114.88, - "Z": -3297.43 + "X": -177.42, + "Y": 87.12, + "Z": -3615.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802088,55 +803977,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -802151,7 +804040,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802176,7 +804065,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -802193,11 +804082,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -802209,7 +804098,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -802218,7 +804107,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802227,30 +804116,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl": { "1. Artifact Identity": { - "Filename": "CRETS03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl", + "Filename": "BNK1CAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1224.33, - "Y": 74.41, - "Z": -1535.68 + "X": -1156.32, + "Y": 103.72, + "Z": -2145.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802259,55 +804148,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1CAM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -802322,7 +804211,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802347,7 +804236,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -802364,15 +804253,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802380,7 +804269,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -802389,7 +804278,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802397,31 +804286,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl": { "1. Artifact Identity": { - "Filename": "DB2BIND.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl", + "Filename": "BNK1CCA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 713.06, - "Y": 36.88, - "Z": -2480.31 + "X": 1574.74, + "Y": 48.42, + "Z": -1297.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802430,65 +804319,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 110, - "Coding LOC": 98, - "Documentation LOC": 0, - "Structural Magnitude": 8.86, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.94%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.0%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BIND", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 78, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 89 - }, - { - "Function Name": "GRANT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 109 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 24, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 38, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -802528,7 +804407,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -802545,15 +804424,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 27, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 27, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802561,7 +804440,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 3, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -802570,39 +804449,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&BANKDBRM(BANKDATA)", - "&BANKDBRM(CREACC)", - "&BANKDBRM(CRECUST)", - "&BANKDBRM(DBCRFUN)", - "&BANKDBRM(DELACC)", - "&BANKDBRM(DELCUS)", - "&BANKDBRM(INQACC)", - "&BANKDBRM(INQACCCU)", - "&BANKDBRM(UPDACC)", - "&BANKDBRM(XFRFUN)", - "&DB2HLQ..SDSNEXIT", - "&DB2HLQ..SDSNLOAD", - "CBSA.DB2.JCL.INSTALL", + "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl": { "1. Artifact Identity": { - "Filename": "DBCRFUN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl", + "Filename": "BNK1CCM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802612,9 +804479,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1855.1, - "Y": -1.05, - "Z": -1755.93 + "X": 1381.15, + "Y": 71.87, + "Z": -3154.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802623,42 +804490,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "BNK1CCM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -802728,15 +804595,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802761,19 +804628,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl": { "1. Artifact Identity": { - "Filename": "DEFAULT.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", + "Filename": "BNK1CCS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802783,9 +804650,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 90.11, - "Y": 88.15, - "Z": -2113.1 + "X": -1186.93, + "Y": 91.82, + "Z": -1930.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802794,46 +804661,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 48, - "Coding LOC": 47, - "Documentation LOC": 0, - "Structural Magnitude": 24.94, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", - "Popularity Rank": 44, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.489 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.25%", - "Error & Exception Exposure": "78.18%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.62%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.58%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 9, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 9, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -802846,7 +804724,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802888,15 +804766,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802920,17 +804798,20 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 44, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 65 + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "jcl/cics-banking-sample-application-cbsa/DELACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl": { "1. Artifact Identity": { - "Filename": "DELACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DELACC.jcl", + "Filename": "BNK1CDM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802940,9 +804821,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -476.58, - "Y": 126.94, - "Z": -3031.76 + "X": 123.04, + "Y": 67.75, + "Z": -739.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802951,42 +804832,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Testing Exposure": "0.66%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "BNK1CDM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -803000,7 +804881,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -803056,11 +804937,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -803089,7 +804970,7 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, @@ -803098,10 +804979,10 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl": { "1. Artifact Identity": { - "Filename": "DELCUS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl", + "Filename": "BNK1CRA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -803111,9 +804992,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1302.2, - "Y": 28.49, - "Z": -2172.9 + "X": 1195.48, + "Y": 62.83, + "Z": -3591.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803123,29 +805004,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -803171,7 +805052,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -803235,7 +805116,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803262,29 +805143,29 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl": { "1. Artifact Identity": { - "Filename": "DROPDB2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl", + "Filename": "BNK1DAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 188.45, - "Y": 54.46, - "Z": -2856.16 + "X": 499.16, + "Y": 90.74, + "Z": -647.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803293,55 +805174,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 33, - "Documentation LOC": 0, - "Structural Magnitude": 3.16, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.152 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.85%", - "Error & Exception Exposure": "82.18%", - "Tech Debt Exposure": "98.69%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.17%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 30, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 38 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803356,7 +805237,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803381,7 +805262,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803398,11 +805279,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -803414,7 +805295,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803423,7 +805304,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803432,30 +805313,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl": { "1. Artifact Identity": { - "Filename": "DRPDB00.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl", + "Filename": "BNK1DAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -910.39, - "Y": 119.17, - "Z": -2213.69 + "X": -603.73, + "Y": 128.09, + "Z": -3321.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803464,55 +805345,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1DAM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803527,7 +805408,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803552,7 +805433,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803569,15 +805450,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803585,7 +805466,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803594,7 +805475,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803602,31 +805483,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl": { "1. Artifact Identity": { - "Filename": "DRPI101.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl", + "Filename": "BNK1DCM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1110.33, - "Y": 22.41, - "Z": -3192.84 + "X": 1751.61, + "Y": 82.5, + "Z": -1808.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803635,55 +805516,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1DCM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803698,7 +805579,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803723,7 +805604,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803740,15 +805621,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803756,7 +805637,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803765,7 +805646,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803773,31 +805654,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl": { "1. Artifact Identity": { - "Filename": "DRPI201.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl", + "Filename": "BNK1DCS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 345.8, - "Y": 83.0, - "Z": -970.96 + "X": -919.55, + "Y": 68.16, + "Z": -3091.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803806,55 +805687,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803869,7 +805750,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803894,7 +805775,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803911,11 +805792,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -803927,7 +805808,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803936,7 +805817,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803945,30 +805826,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl": { "1. Artifact Identity": { - "Filename": "DRPI301.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl", + "Filename": "BNK1MAI.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -574.37, - "Y": 112.19, - "Z": -3082.23 + "X": -991.35, + "Y": 71.62, + "Z": -1489.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803977,55 +805858,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1MAI", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804040,7 +805921,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804065,7 +805946,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804082,15 +805963,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -804098,7 +805979,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804107,7 +805988,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804115,31 +805996,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl", + "Filename": "BNK1TFM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1516.92, - "Y": 72.68, - "Z": -2314.62 + "X": 720.33, + "Y": 113.75, + "Z": -3565.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804148,55 +806029,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1TFM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804211,7 +806092,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804236,7 +806117,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804253,15 +806134,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -804269,7 +806150,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804278,7 +806159,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804286,31 +806167,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl", + "Filename": "BNK1TFN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -682.71, - "Y": 109.01, - "Z": -1343.37 + "X": 1846.14, + "Y": 28.31, + "Z": -2411.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804319,55 +806200,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804382,7 +806263,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804407,7 +806288,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804424,11 +806305,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804440,7 +806321,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804449,7 +806330,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804458,30 +806339,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl", + "Filename": "BNK1UAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 486.08, - "Y": 63.84, - "Z": -3413.44 + "X": -794.73, + "Y": 57.4, + "Z": -1229.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804490,55 +806371,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804553,7 +806434,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804578,7 +806459,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804595,11 +806476,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804611,7 +806492,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804620,7 +806501,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804629,30 +806510,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl": { "1. Artifact Identity": { - "Filename": "DRPTB01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl", + "Filename": "BNK1UAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1052.91, - "Y": 34.93, - "Z": -1063.92 + "X": 992.49, + "Y": 22.86, + "Z": -768.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804661,55 +806542,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1UAM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804724,7 +806605,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804749,7 +806630,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804766,15 +806647,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -804782,7 +806663,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804791,7 +806672,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804799,31 +806680,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl": { "1. Artifact Identity": { - "Filename": "DRPTB02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl", + "Filename": "BNKMENU.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -976.76, - "Y": 107.55, - "Z": -2591.31 + "X": 360.94, + "Y": 79.59, + "Z": -3797.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804832,55 +806713,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804895,7 +806776,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804920,7 +806801,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804937,11 +806818,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804953,7 +806834,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804962,7 +806843,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804971,18 +806852,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl": { + "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl": { "1. Artifact Identity": { - "Filename": "DRPTB03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl", + "Filename": "BTCHSQL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -804992,9 +806873,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1379.5, - "Y": 74.55, - "Z": -2932.13 + "X": 661.38, + "Y": 85.57, + "Z": -3199.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805004,21 +806885,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805026,7 +806907,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -805078,7 +806959,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805150,22 +807031,22 @@ "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl": { + "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl": { "1. Artifact Identity": { - "Filename": "DRPTS01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl", + "Filename": "CBSACSD.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -105.57, - "Y": 83.15, - "Z": -881.25 + "X": 590.81, + "Y": 84.6, + "Z": -799.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805174,42 +807055,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 24, + "Coding LOC": 10, + "Documentation LOC": 13, + "Structural Magnitude": 1.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "93.7%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.64%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "41.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "DFHCSDUP", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 17, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -805222,7 +807103,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805249,7 +807130,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805262,7 +807143,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805279,15 +807160,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805295,7 +807176,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805311,32 +807192,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "@CBSA_INSTALL@(BANK)", + "@CICS_PREFIX@.SDFHLOAD", + "@CSD_PREFIX@.DFHCSD" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl": { + "jcl/cics-banking-sample-application-cbsa/CICS.jcl": { "1. Artifact Identity": { - "Filename": "DRPTS02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl", + "Filename": "CICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CICS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -238.09, - "Y": 77.5, - "Z": -3584.62 + "X": 577.65, + "Y": 58.05, + "Z": -1824.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805345,22 +807227,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 59, + "Coding LOC": 53, + "Documentation LOC": 5, + "Structural Magnitude": 8.66, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "73.32%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805368,32 +807250,42 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "31.74%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "COBOL", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 36, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 6, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 5, + "End Line": 40 + }, + { + "Function Name": "LKED", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 58 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 43, + "Function Parameters": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805433,7 +807325,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805450,15 +807342,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 50, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 50, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805466,7 +807358,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805475,39 +807367,51 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&CBSAHLQ..ADATA(&MEMBER)", + "&CBSAHLQ..COBOL(&MEMBER)", + "&CBSAHLQ..DEBUG(&MEMBER)", + "&CBSAHLQ..DSECT", + "&CBSAHLQ..LKED(&MEMBER)", + "&CBSAHLQ..LOADLIB", + "&CICSHLQ..SDFHCOB", + "&CICSHLQ..SDFHLOAD", + "&CICSHLQ..SDFHSAMP", + "&COBOLHLQ..SIGYCOMP", + "&DB2HLQ..SDSNLOAD", + "&LEHLQ..SCEELKED", + "&LEHLQ..SCEESAMP" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl": { + "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl": { "1. Artifact Identity": { - "Filename": "DRPTS03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl", + "Filename": "CICSTS56.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, + "Alert": "TYPOSQUATTING THREAT: 'DSNC10/SDSNLOD2' mimics 'DSNC10/SDSNLOAD'", "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1531.67, - "Y": 49.66, - "Z": -1896.56 + "X": 351.16, + "Y": 47.47, + "Z": -2728.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805516,22 +807420,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 183, + "Coding LOC": 108, + "Documentation LOC": 74, + "Structural Magnitude": 17.26, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "65.31%", + "Tech Debt Exposure": "91.38%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805539,32 +807443,92 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CICS", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 98, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 140 + }, + { + "Function Name": "PRTDMPA", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 143, + "End Line": 151 + }, + { + "Function Name": "PRTDMPB", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 162 + }, + { + "Function Name": "PRTAUXT", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 167, + "End Line": 172 + }, + { + "Function Name": "PRTBUXT", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 177, + "End Line": 182 + }, + { + "Function Name": "CICSCNTL", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 31 + }, + { + "Function Name": "DTCNTL", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 70, + "Function Parameters": 4, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 115, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805604,7 +807568,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805621,15 +807585,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 104, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 104, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805637,36 +807601,55 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, + "Non-Standard Unicode / Homoglyphs": 1, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 7, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 21, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&INDEX2..SDFHAUTH", + "&INDEX2..SDFHLOAD", + "&INDEX3..SEYUAUTH", + "&INDEX3..SEYULOAD", + "ADCD.Z25A.TCPPARMS(GBLTDATA)", + "CBSA.CICSBSA.LOADLIB", + "CEE.SCEECICS", + "CEE.SCEERUN", + "CEE.SCEERUN2", + "DFH560.CICS.EQADPFMB", + "DFH560.CICS.SDFHLINK", + "DFH560.DFHCMACD", + "DFH560.EQAIVP.LOAD", + "DFH560.SDFHLIC", + "DFH560.SYSIN(DFHPLT)", + "DSNC10.SDSNLOAD", + "DSNC10.SDSNLOD2", + "ISM330.SEQAMOD", + "SYS1.MIGLIB", + "SYS1.SIEAMIGE", + "TCPIP.SEZATCP" ] }, - "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl": { + "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl": { "1. Artifact Identity": { - "Filename": "EXTDCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl", + "Filename": "COMPALL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -805676,9 +807659,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1229.73, - "Y": 139.07, - "Z": -1697.43 + "X": 255.16, + "Y": 92.42, + "Z": -2312.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805687,51 +807670,421 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 175, + "Coding LOC": 87, + "Documentation LOC": 87, + "Structural Magnitude": 47.44, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.68%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "XFRFUN", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 97, + "End Line": 103 + }, + { + "Function Name": "ABNDPROC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 12, + "End Line": 15 + }, + { + "Function Name": "BANKDATA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 19 + }, + { + "Function Name": "BNK1MAI", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 + }, + { + "Function Name": "BNKMENU", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 28 + }, + { + "Function Name": "CRDTAGY1", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 32 + }, + { + "Function Name": "CRDTAGY2", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 36 + }, + { + "Function Name": "CRDTAGY3", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 40 + }, + { + "Function Name": "CRDTAGY4", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 44 + }, + { + "Function Name": "CRDTAGY5", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 45, + "End Line": 48 + }, + { + "Function Name": "CREACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 49, + "End Line": 52 + }, + { + "Function Name": "CRECUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 56 + }, + { + "Function Name": "DBCRFUN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 60 + }, + { + "Function Name": "DELACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 64 + }, + { + "Function Name": "DELCUS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 68 + }, + { + "Function Name": "GETCOMPY", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 72 + }, + { + "Function Name": "GETSCODE", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 76 + }, + { + "Function Name": "INQACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 80 + }, + { + "Function Name": "INQACCCU", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 84 + }, + { + "Function Name": "INQCUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 88 + }, + { + "Function Name": "UPDACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 92 + }, + { + "Function Name": "UPDCUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 93, + "End Line": 96 + }, + { + "Function Name": "BNK1ACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 104, + "End Line": 108 + }, + { + "Function Name": "BNK1CAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 109, + "End Line": 113 + }, + { + "Function Name": "BNK1CAC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 117 + }, + { + "Function Name": "BNK1CCA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 121 + }, + { + "Function Name": "BNK1CCM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 122, + "End Line": 126 + }, + { + "Function Name": "BNK1CCS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 130 + }, + { + "Function Name": "BNK1CDM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 135 + }, + { + "Function Name": "BNK1CRA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 139 + }, + { + "Function Name": "BNK1DAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 140, + "End Line": 144 + }, + { + "Function Name": "BNK1DAC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 145, + "End Line": 148 + }, + { + "Function Name": "BNK1DCM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 153 + }, + { + "Function Name": "BNK1DCS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 158 + }, + { + "Function Name": "BNK1TFM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 159, + "End Line": 163 + }, + { + "Function Name": "BNK1TFN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 164, + "End Line": 167 + }, + { + "Function Name": "BNK1UAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 172 + }, + { + "Function Name": "BNK1UAC", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 173, + "End Line": 173 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 38, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 38, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -805750,7 +808103,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 38, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -805762,7 +808115,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805792,15 +808145,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 57, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 57, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805830,14 +808183,14 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CTSSVT.CICSBSA.BUILDJCL", + "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl": { "1. Artifact Identity": { - "Filename": "GETCOMPY.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl", + "Filename": "CRDTAGY1.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -805847,9 +808200,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -432.87, - "Y": 64.92, - "Z": -1378.27 + "X": 1242.03, + "Y": 7.88, + "Z": -1185.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805859,29 +808212,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -805907,7 +808260,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -805971,7 +808324,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805998,17 +808351,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl": { "1. Artifact Identity": { - "Filename": "GETSCODE.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl", + "Filename": "CRDTAGY2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806018,9 +808371,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 296.61, - "Y": 66.66, - "Z": -3121.47 + "X": -1294.76, + "Y": 114.21, + "Z": -2311.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806030,29 +808383,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -806078,7 +808431,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806142,7 +808495,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806169,17 +808522,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/INQACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl": { "1. Artifact Identity": { - "Filename": "INQACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQACC.jcl", + "Filename": "CRDTAGY3.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806189,9 +808542,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1031.51, - "Y": 17.6, - "Z": -1455.49 + "X": 1596.28, + "Y": 35.44, + "Z": -3066.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806201,29 +808554,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -806249,7 +808602,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806313,7 +808666,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806340,17 +808693,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl": { "1. Artifact Identity": { - "Filename": "INQACCCU.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl", + "Filename": "CRDTAGY4.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806360,9 +808713,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -792.69, - "Y": 60.97, - "Z": -2440.85 + "X": -57.94, + "Y": 44.26, + "Z": -604.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806372,29 +808725,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -806420,7 +808773,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806484,7 +808837,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806511,17 +808864,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 4 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl": { "1. Artifact Identity": { - "Filename": "INQCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl", + "Filename": "CRDTAGY5.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806531,9 +808884,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1122.94, - "Y": 37.72, - "Z": -3052.05 + "X": -547.15, + "Y": 80.95, + "Z": -3772.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806543,29 +808896,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -806591,7 +808944,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806655,7 +809008,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806682,29 +809035,29 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 5 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREACC.jcl": { "1. Artifact Identity": { - "Filename": "INSTDB2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl", + "Filename": "CREACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 868.89, - "Y": 20.29, - "Z": -1946.89 + "X": -671.2, + "Y": 93.84, + "Z": -1857.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806713,56 +809066,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 106, - "Coding LOC": 90, - "Documentation LOC": 0, - "Structural Magnitude": 5.8, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "67.62%", - "Tech Debt Exposure": "50.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.14%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 90, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 105 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806801,7 +809154,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 38, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806818,15 +809171,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 10, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 10, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806834,7 +809187,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806843,28 +809196,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "&DB2HLQ..SDSNLOAD", - "CBSA.DB2.JCL.INSTALL", + "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl": { "1. Artifact Identity": { - "Filename": "MAPGEN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl", + "Filename": "CRECUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806874,9 +809226,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 54.82, - "Y": 60.89, - "Z": -2834.4 + "X": 784.49, + "Y": 102.61, + "Z": -2919.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806885,86 +809237,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 50, - "Coding LOC": 49, - "Documentation LOC": 0, - "Structural Magnitude": 7.68, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.102 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.88%", - "Error & Exception Exposure": "84.5%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.42%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.57%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "ASMDSECT", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 49 - }, - { - "Function Name": "LINKMAP", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 39 - }, - { - "Function Name": "ASMMAP", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 32 - }, - { - "Function Name": "COPY", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 19 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 25, - "Function Parameters": 3, - "Function/Method Declarations": 4, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 28, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806978,7 +809300,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -807020,15 +809342,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 41, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 41, - "Design Short Vars": 1, + "Design Upper Case": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807045,30 +809367,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..BMS(&MEMBER)", - "&CBSAHLQ..DSECT(&MEMBER)", - "&CBSAHLQ..LOADLIB(&MEMBER)", - "&CICSHLQ..SDFHMAC", - "SYS1.MACLIB" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/RACF001.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl": { "1. Artifact Identity": { - "Filename": "RACF001.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RACF001.jcl", + "Filename": "CREDB00.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -807078,9 +809397,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -956.25, - "Y": 107.25, - "Z": -1683.88 + "X": 1150.86, + "Y": 87.81, + "Z": -2635.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807089,10 +809408,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, + "Total LOC": 24, "Coding LOC": 19, - "Documentation LOC": 0, - "Structural Magnitude": 1.98, + "Documentation LOC": 4, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -807103,8 +809422,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.74%", "Error & Exception Exposure": "88.86%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -807112,32 +809431,32 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.74%", + "Documentation Exposure": "58.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "TSO", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 19 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 4, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -807164,7 +809483,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807177,7 +809496,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807194,15 +809513,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807210,7 +809529,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807226,29 +809545,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl": { "1. Artifact Identity": { - "Filename": "REPLCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl", + "Filename": "CREDB2L.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1358.87, - "Y": 39.07, - "Z": -2077.68 + "X": -246.85, + "Y": 110.85, + "Z": -2016.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807257,56 +809579,66 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.12, + "Total LOC": 27, + "Coding LOC": 11, + "Documentation LOC": 15, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "69.32%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "JOBSTEP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 21 + "Start Line": 12, + "End Line": 17 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 25 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -807345,7 +809677,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807362,15 +809694,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 14, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807387,7 +809719,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -807395,19 +809727,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "FEU.Z25A.PROCLIB" + "&HLQ..DB2.JCL.INSTALL", + "&HLQ..DB2.JCL.INSTALL(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI101.jcl": { "1. Artifact Identity": { - "Filename": "REPLSIP.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl", + "Filename": "CREI101.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI101.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -807417,9 +809749,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -756.02, - "Y": 126.69, - "Z": -1637.12 + "X": -60.63, + "Y": 80.96, + "Z": -1557.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807428,22 +809760,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.12, + "Total LOC": 24, + "Coding LOC": 19, + "Documentation LOC": 4, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.39%", + "Cognitive Load Exposure": "8.74%", + "Error & Exception Exposure": "88.86%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -807451,25 +809783,25 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "JOBSTEP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 21 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, @@ -807503,7 +809835,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807516,7 +809848,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807533,11 +809865,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 14, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -807549,7 +809881,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807571,26 +809903,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "DFH560.SYSIN" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI201.jcl": { "1. Artifact Identity": { - "Filename": "RESTCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl", + "Filename": "CREI201.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI201.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -823.7, - "Y": 95.34, - "Z": -2964.51 + "X": -42.32, + "Y": 55.22, + "Z": -3282.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807599,55 +809931,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.56, + "Total LOC": 24, + "Coding LOC": 19, + "Documentation LOC": 4, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.1%", + "Cognitive Load Exposure": "8.74%", + "Error & Exception Exposure": "88.86%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "58.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -807674,7 +810006,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807687,7 +810019,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807704,11 +810036,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -807720,7 +810052,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807729,36 +810061,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI301.jcl": { "1. Artifact Identity": { - "Filename": "RESTZOSC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl", + "Filename": "CREI301.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI301.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1641.7, - "Y": -0.79, - "Z": -2559.22 + "X": 1169.24, + "Y": 46.66, + "Z": -1983.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807767,55 +810102,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.56, + "Total LOC": 24, + "Coding LOC": 19, + "Documentation LOC": 4, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.1%", + "Cognitive Load Exposure": "8.74%", + "Error & Exception Exposure": "88.86%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "58.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -807842,7 +810177,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807855,7 +810190,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807872,11 +810207,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -807888,7 +810223,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807897,24 +810232,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL001.jcl": { "1. Artifact Identity": { - "Filename": "SHUTCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl", + "Filename": "CREL001.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL001.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -807924,9 +810262,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -607.58, - "Y": 72.27, - "Z": -1232.22 + "X": 588.86, + "Y": 100.45, + "Z": -2673.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807935,56 +810273,66 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.56, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.1%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", + "Function Name": "STEP10", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -808040,15 +810388,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808056,7 +810404,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808065,24 +810413,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..CICSBSA.BUILDJCL", + "&HLQ..CICSBSA.BUILDJCL(EMPTY)" + ] }, - "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL002.jcl": { "1. Artifact Identity": { - "Filename": "SHUTZOSC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl", + "Filename": "CREL002.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL002.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808092,9 +810443,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 172.92, - "Y": 79.17, - "Z": -3677.87 + "X": -216.03, + "Y": 80.65, + "Z": -2972.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808103,56 +810454,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.56, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.1%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "95.75%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", + "Function Name": "STEP10", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -808208,15 +810559,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808224,7 +810575,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808233,24 +810584,26 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..CICSBSA.ADATA" + ] }, - "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL003.jcl": { "1. Artifact Identity": { - "Filename": "UPDACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl", + "Filename": "CREL003.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL003.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808260,9 +810613,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 117.7, - "Y": 75.65, - "Z": -1124.73 + "X": 1092.93, + "Y": 56.25, + "Z": -2114.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808271,42 +810624,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "95.75%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -808318,8 +810671,8 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -808334,7 +810687,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808376,11 +810729,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -808401,27 +810754,26 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.LOADLIB" ] }, - "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL004.jcl": { "1. Artifact Identity": { - "Filename": "UPDCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl", + "Filename": "CREL004.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL004.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808431,9 +810783,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -669.75, - "Y": 58.87, - "Z": -2019.49 + "X": -451.35, + "Y": 112.62, + "Z": -1617.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808442,42 +810794,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "95.75%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", - "API Exposure": "5.78%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.8%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 8 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -808489,8 +810841,8 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -808505,7 +810857,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808547,11 +810899,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -808572,27 +810924,26 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.DBRM" ] }, - "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL005.jcl": { "1. Artifact Identity": { - "Filename": "XFRFUN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl", + "Filename": "CREL005.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL005.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808602,9 +810953,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -264.48, - "Y": 59.68, - "Z": -3112.72 + "X": 435.07, + "Y": 116.14, + "Z": -3235.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808613,42 +810964,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "95.75%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -808660,8 +811011,8 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -808676,7 +811027,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808718,11 +811069,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -808743,27 +811094,26 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.LKED" ] }, - "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL006.jcl": { "1. Artifact Identity": { - "Filename": "ZOSCSEC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl", + "Filename": "CREL006.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL006.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808773,9 +811123,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 891.55, - "Y": 97.13, - "Z": -3573.43 + "X": 466.79, + "Y": 36.17, + "Z": -1638.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808784,56 +811134,66 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.96, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.12%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BPXIT", - "Structural Impact": 1.7, + "Function Name": "STEP10", + "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -808889,15 +811249,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808905,69 +811265,48 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] - } - } - }, - "groovy/spock_specs": { - "Directory Group Magnitude": 317.28, - "File Count": 30, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "12.86%", - "Error & Exception Exposure": "18.31%", - "Tech Debt Exposure": "96.54%", - "Testing Exposure": "2.26%", - "API Exposure": "0.0%", - "Concurrency Exposure": "1.63%", - "State Flux Exposure": "9.56%", - "Commented Logic Exposure": "0.34%", - "Specification Exposure": "96.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.66%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "groovy/spock_specs/org_spockframework_builder_PojoBuilderSpec.groovy": { + "9. Extracted Dependencies": [ + "&HLQ..CICSBSA.BMS", + "&HLQ..CICSBSA.BMS(EMPTY)" + ] + }, + "jcl/cics-banking-sample-application-cbsa/CREL007.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_builder_PojoBuilderSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_builder_PojoBuilderSpec.groovy", - "Language": "Groovy", + "Filename": "CREL007.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL007.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3642.99, - "Y": 172.93, - "Z": -2988.96 + "X": 715.31, + "Y": 46.2, + "Z": -1657.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808976,170 +811315,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 216, - "Coding LOC": 166, - "Documentation LOC": 14, - "Structural Magnitude": 21.02, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "98.63%", - "Testing Exposure": "2.32%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "95.75%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.64%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"configure primitives\"", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 123 - }, - { - "Function Name": "\"parse enum value\"", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 153, - "End Line": 167 - }, - { - "Function Name": "\"adding elements to collection\"", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 98 - }, - { - "Function Name": "\"configure nested property\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 44 - }, - { - "Function Name": "\"configure collection property that has concrete declared type\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 69 - }, - { - "Function Name": "\"configure collection property and choose collection type\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 83 - }, - { - "Function Name": "\"access local variable\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 125, - "End Line": 137 - }, - { - "Function Name": "\"access field\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 151 - }, - { - "Function Name": "\"configure collection property\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 55 - }, - { - "Function Name": "\"configure top-level property\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 32 - }, - { - "Function Name": "LinkedList", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 76 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 30, - "Function Parameters": 11, - "Function/Method Declarations": 11, - "Class/Entity Declarations": 9, - "Defensive Programming Constructs": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 20, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 7, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809153,7 +811392,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -809164,7 +811403,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 146, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809181,15 +811420,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, - "Design Camel Case": 2, - "Design Snake Case": 7, + "Core Var Decl": 6, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 6, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809206,7 +811445,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809214,30 +811453,30 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "&HLQ..CICSBSA.DEBUG" ] }, - "groovy/spock_specs/org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CREL008.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy", - "Language": "Groovy", + "Filename": "CREL008.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL008.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4129.02, - "Y": 231.25, - "Z": -2018.14 + "X": -543.32, + "Y": 98.52, + "Z": -2681.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809246,90 +811485,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 50, - "Coding LOC": 22, - "Documentation LOC": 13, - "Structural Magnitude": 4.04, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.227 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.35%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "95.75%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.23%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"class file of regular class isn't considered a runnable spec\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 28 - }, - { - "Function Name": "\"class file of abstract spec isn't considered a runnable spec\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 33 - }, - { - "Function Name": "\"class file of concrete spec is considered a runnable spec\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 38 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 18, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 4, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809352,9 +811571,9 @@ "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 1, + "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809371,15 +811590,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 6, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809396,39 +811615,38 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "org.spockframework.util.ReflectionUtil", - "spock.lang.*" + "&HLQ..CICSBSA.CBSAMOD" ] }, - "groovy/spock_specs/org_spockframework_datapipes_DataPipesIteratorSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CREL009.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_datapipes_DataPipesIteratorSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_datapipes_DataPipesIteratorSpec.groovy", - "Language": "Groovy", + "Filename": "CREL009.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL009.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3915.54, - "Y": 193.13, - "Z": -2404.48 + "X": -304.12, + "Y": 127.88, + "Z": -2457.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809437,210 +811655,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 175, - "Coding LOC": 120, - "Documentation LOC": 21, - "Structural Magnitude": 25.6, - "Control Flow Ratio": "7.1%", - "Popularity Rank": 0, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.093 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.74%", - "Error & Exception Exposure": "53.85%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.04%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"Iterable uses the Groovy default size method to estimate number of iterations\"", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 46, - "End Line": 57 - }, - { - "Function Name": "hasNext", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 156, - "End Line": 163 - }, - { - "Function Name": "next", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 165, - "End Line": 172 - }, - { - "Function Name": "\"Collection data provider will use size method to estimate number of iterations\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 44 - }, - { - "Function Name": "\"Iterable with size method shall use the size method to estimate number of iterations\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 71 - }, - { - "Function Name": "\"Iterator shall be only called once\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 85 - }, - { - "Function Name": "runIterations", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 87, - "End Line": 96 - }, - { - "Function Name": "dataProvider", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 98, - "End Line": 101 - }, - { - "Function Name": "getDataProvider", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 103, - "End Line": 107 - }, - { - "Function Name": "iterator", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 113, - "End Line": 117 - }, - { - "Function Name": "size", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 123 - }, - { - "Function Name": "size", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 130, - "End Line": 133 - }, - { - "Function Name": "iterator", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 139 + "Start Line": 11, + "End Line": 16 }, { - "Function Name": "iterator", + "Function Name": "STEP20", "Structural Impact": 1.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 145, - "End Line": 149 - }, - { - "Function Name": "cleanup", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 31 + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 39, - "Function Parameters": 15, - "Function/Method Declarations": 16, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 2, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 12, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 9, - "Generic Type Abstractions": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809655,17 +811743,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 7, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 113, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809682,15 +811770,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 17, - "Design Camel Case": 12, - "Design Snake Case": 5, + "Core Var Decl": 9, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 3, - "Orphaned Logic": 8, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809707,41 +811795,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "java.util.Objects.requireNonNull", - "org.spockframework.EmbeddedSpecification", - "spock.lang.Issue", - "spock.util.EmbeddedSpecRunner" + "&HLQ..CICSBSA.COBOL", + "&HLQ..CICSBSA.COBOL(EMPTY)" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_DataSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CREL010.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_DataSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_DataSpec.groovy", - "Language": "Groovy", + "Filename": "CREL010.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL010.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3741.74, - "Y": 172.48, - "Z": -2369.04 + "X": 985.36, + "Y": 70.7, + "Z": -2411.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809750,350 +811836,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 602, - "Coding LOC": 293, - "Documentation LOC": 221, - "Structural Magnitude": 101.76, - "Control Flow Ratio": "29.0%", - "Popularity Rank": 0, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.229 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.05%", - "Error & Exception Exposure": "61.03%", - "Tech Debt Exposure": "99.94%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "71.17%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"named multi-variable data pipes\"", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 357, - "End Line": 378 - }, - { - "Function Name": "\"nested and named multi-variable data pipes\"", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 380, - "End Line": 393 - }, - { - "Function Name": "\"multiple data provider combined\"", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 92, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 104, - "End Line": 195 - }, - { - "Function Name": "\"only single data providers are combined - part 2\"", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 244, - "End Line": 318 - }, - { - "Function Name": "\"only single data providers are combined - part 1\"", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 197, - "End Line": 242 - }, - { - "Function Name": "\"nested multi-variable data pipes\"", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 340, - "End Line": 355 - }, - { - "Function Name": "in", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 586, - "End Line": 600 - }, - { - "Function Name": "\"type coercion for data variable values with own coercion\"", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 507, - "End Line": 535 - }, - { - "Function Name": "\"type coercion for data variable values\"", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 497, - "End Line": 504 - }, - { - "Function Name": "setupSpec", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 17, - "End Line": 31 - }, - { - "Function Name": "\"maximum of two numbers combined assignment\"", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 479, - "End Line": 494 - }, - { - "Function Name": "\"maximum of two numbers data variable assignment\"", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 395, - "End Line": 405 - }, - { - "Function Name": "\"excluding iterations\"", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 584, - "End Line": 593 - }, - { - "Function Name": "cleanupSpec", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 33, - "End Line": 35 - }, - { - "Function Name": "\"multiple tables\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 68 - }, - { - "Function Name": "\"multiple tables with top border\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 102 - }, - { - "Function Name": "\"maximum of two numbers previous column access over multiple tables\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 434, - "End Line": 455 - }, - { - "Function Name": "\"single column\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 48 - }, - { - "Function Name": "\"multiple tables joined\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 70, - "End Line": 82 - }, - { - "Function Name": "\"maximum of two numbers sql data variable assignment\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 407, - "End Line": 419 - }, - { - "Function Name": "\"maximum of two numbers previous column access\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 421, - "End Line": 432 - }, - { - "Function Name": "\"data pipes\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 537, - "End Line": 547 - }, - { - "Function Name": "\"maximum of two numbers multi-assignment star\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 468, - "End Line": 477 - }, - { - "Function Name": "\"#lastName\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 571, - "End Line": 580 - }, - { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 321, - "End Line": 327 - }, - { - "Function Name": "\"maximum of two numbers star\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 330, - "End Line": 338 - }, - { - "Function Name": "\"maximum of two numbers multi-assignment\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 458, - "End Line": 465 - }, - { - "Function Name": "\"#person is #person.age years old\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 550, - "End Line": 557 + "Start Line": 11, + "End Line": 16 }, { - "Function Name": "\"#person.name.toUpperCase()\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 567 + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, - "Sequential Logic Declarations": 44, - "Function Parameters": 30, - "Function/Method Declarations": 29, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 22, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 59, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 2, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 3, - "Scientific & Mathematical Operations": 12, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 6, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810118,7 +811934,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 284, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810135,15 +811951,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 19, - "Design Camel Case": 1, - "Design Snake Case": 18, + "Core Var Decl": 9, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 9, + "Design Upper Case": 9, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 28, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810160,44 +811976,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "groovy.sql.Sql", - "groovy.transform.ToString", - "org.junit.platform.engine.TestDescriptor.Type.TEST", - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.GroovyRuntimeUtil", - "spock.lang.Shared", - "spock.util.mop.Use" + "&HLQ..CICSBSA.DSECT", + "&HLQ..CICSBSA.DSECT(EMPTY)" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v1_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CREL011.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v1_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v1_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CREL011.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL011.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2834.37, - "Y": 120.23, - "Z": -2144.71 + "X": -88.51, + "Y": 44.48, + "Z": -1834.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810206,60 +812017,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 16, - "Coding LOC": 10, - "Documentation LOC": 3, - "Structural Magnitude": 1.6, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.57%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.45%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 13 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 5, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -810267,9 +812088,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810294,7 +812115,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810311,15 +812132,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810336,38 +812157,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "&HLQ..CICSBSA.REORG", + "&HLQ..CICSBSA.REORG(EMPTY)" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v2_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v2_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v2_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRELIBS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3195.59, - "Y": 107.4, - "Z": -2990.61 + "X": -440.0, + "Y": 85.04, + "Z": -2105.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810376,60 +812198,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 23, - "Coding LOC": 13, - "Documentation LOC": 6, - "Structural Magnitude": 2.86, + "Total LOC": 21, + "Coding LOC": 16, + "Documentation LOC": 4, + "Structural Magnitude": 2.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.438 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.06%", + "Cognitive Load Exposure": "15.59%", + "Error & Exception Exposure": "91.49%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "59.87%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.34%", + "Documentation Exposure": "63.59%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, + "Function Name": "IEFBR14", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 8, - "End Line": 19 + "End Line": 20 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 13, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -810437,9 +812259,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 12, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810464,7 +812286,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810481,15 +812303,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 15, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 15, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810513,31 +812335,43 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 12, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "CBSA.JCL.INSTALL", + "CREDB2L", + "CREL001", + "CREL002", + "CREL003", + "CREL004", + "CREL005", + "CREL006", + "CREL007", + "CREL008", + "CREL009", + "CREL010", + "CREL011" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v3_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v3_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v3_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRESG01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4103.8, - "Y": 193.73, - "Z": -1453.77 + "X": 725.53, + "Y": 47.35, + "Z": -1122.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810546,60 +812380,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 1.76, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -810607,9 +812441,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810621,7 +812455,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810634,7 +812468,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810651,11 +812485,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -810667,7 +812501,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810676,38 +812510,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v4_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v4_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v4_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRESG02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4536.44, - "Y": 207.29, - "Z": -2819.77 + "X": -786.89, + "Y": 59.34, + "Z": -2709.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810716,22 +812551,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 15, - "Documentation LOC": 2, - "Structural Magnitude": 1.9, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.89%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.32%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -810739,47 +812574,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.79%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 19 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 6, - "Function Parameters": 1, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810791,7 +812626,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810804,7 +812639,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810821,11 +812656,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -810837,7 +812672,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810846,7 +812681,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -810859,26 +812694,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Rollup", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v5_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v5_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v5_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRESG03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2907.64, - "Y": 68.82, - "Z": -2757.63 + "X": 1411.36, + "Y": 32.74, + "Z": -2489.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810887,60 +812722,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 1.86, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.01%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of #a and #b is #c\"", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 17 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -810948,9 +812783,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810962,7 +812797,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810975,7 +812810,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810992,11 +812827,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811008,7 +812843,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811017,38 +812852,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v6_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v6_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v6_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRETB01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4035.07, - "Y": 137.55, - "Z": -3268.52 + "X": 895.19, + "Y": 83.44, + "Z": -1831.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811057,60 +812893,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 1.76, + "Total LOC": 37, + "Coding LOC": 32, + "Documentation LOC": 4, + "Structural Magnitude": 3.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.156 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.0%", + "Cognitive Load Exposure": "5.96%", + "Error & Exception Exposure": "82.6%", + "Tech Debt Exposure": "98.93%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "44.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "GRANT", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 28, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 16 + "Start Line": 9, + "End Line": 36 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -811118,9 +812954,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811132,7 +812968,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811145,7 +812981,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811162,11 +812998,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811178,7 +813014,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811187,38 +813023,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v7_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v7_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v7_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRETB02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3299.81, - "Y": 148.65, - "Z": -1686.35 + "X": 838.39, + "Y": 105.1, + "Z": -2725.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811227,22 +813064,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 18, - "Documentation LOC": 2, - "Structural Magnitude": 2.16, + "Total LOC": 35, + "Coding LOC": 30, + "Documentation LOC": 4, + "Structural Magnitude": 2.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.278 + "Raw Cognitive Density": 0.167 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.14%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.32%", + "Cognitive Load Exposure": "6.19%", + "Error & Exception Exposure": "83.48%", + "Tech Debt Exposure": "99.33%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -811250,37 +813087,37 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.89%", + "Documentation Exposure": "46.05%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "GRANT", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 26, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 22 + "Start Line": 9, + "End Line": 34 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -811288,9 +813125,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 2, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811302,7 +813139,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811315,7 +813152,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811332,11 +813169,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811348,7 +813185,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811357,38 +813194,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy", - "Language": "Groovy", + "Filename": "CRETB03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3035.11, - "Y": 152.32, - "Z": -2703.42 + "X": 221.12, + "Y": 68.15, + "Z": -1366.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811397,80 +813235,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 20, - "Documentation LOC": 2, - "Structural Magnitude": 4.2, + "Total LOC": 29, + "Coding LOC": 23, + "Documentation LOC": 4, + "Structural Magnitude": 2.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.85 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "59.87%", - "Error & Exception Exposure": "70.63%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.31%", + "Cognitive Load Exposure": "7.43%", + "Error & Exception Exposure": "86.8%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "47.5%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "59.89%", + "Documentation Exposure": "53.53%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"I run first\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 17 - }, - { - "Function Name": "\"I run second\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "GRANT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 25 + "Start Line": 9, + "End Line": 28 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 8, - "Function Parameters": 3, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 4, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 2, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811482,9 +813310,9 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -811495,7 +813323,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 13, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811512,15 +813340,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811528,7 +813356,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811537,40 +813365,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification", - "spock.lang.Stepwise", - "spock.util.mop.ConfineMetaClassChanges" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_ExtensionStoreSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_ExtensionStoreSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_ExtensionStoreSpec.groovy", - "Language": "Groovy", + "Filename": "CRETS01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3937.37, - "Y": 175.76, - "Z": -2947.55 + "X": -330.93, + "Y": 47.69, + "Z": -1135.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811579,110 +813406,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 136, - "Coding LOC": 78, - "Documentation LOC": 36, - "Structural Magnitude": 14.66, - "Control Flow Ratio": "11.1%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.287 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.57%", - "Error & Exception Exposure": "59.53%", - "Tech Debt Exposure": "99.6%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", - "Concurrency Exposure": "48.84%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.36%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "executionStop", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 119, - "End Line": 133 - }, - { - "Function Name": "\"extension store example\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 88 - }, - { - "Function Name": "executionStart", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 113, - "End Line": 117 - }, - { - "Function Name": "visitSpec", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 108, - "End Line": 111 - }, - { - "Function Name": "setup", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 34 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 24, - "Function Parameters": 9, - "Function/Method Declarations": 5, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 1, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, - "Asynchronous/Concurrent Execution": 2, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 4, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 6, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 13, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811694,20 +813481,20 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 5, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 1, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 3, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 58, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811724,15 +813511,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 7, - "Design Camel Case": 1, - "Design Snake Case": 3, + "Core Var Decl": 8, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811740,7 +813527,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811749,51 +813536,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "java.util.concurrent.ConcurrentHashMap", - "java.util.concurrent.atomic.AtomicInteger", - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.IStandardStreamsListener", - "org.spockframework.runtime.StandardStreamsCapturer", - "org.spockframework.runtime.extension.IGlobalExtension", - "org.spockframework.runtime.extension.IMethodInterceptor", - "org.spockframework.runtime.extension.ISpockExecution", - "org.spockframework.runtime.extension.IStore.Namespace", - "org.spockframework.runtime.model.SpecInfo", - "org.spockframework.runtime.model.parallel.Resources", - "spock.lang.AutoCleanup", - "spock.lang.ResourceLock", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy", - "Language": "Groovy", + "Filename": "CRETS02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4491.58, - "Y": 158.1, - "Z": -2435.45 + "X": 48.29, + "Y": 114.88, + "Z": -3296.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811802,22 +813577,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 15, - "Documentation LOC": 17, - "Structural Magnitude": 2.9, - "Control Flow Ratio": "10.0%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.4 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "19.78%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -811825,47 +813600,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.39%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"FancyMockMaker usage\"", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 24, - "End Line": 35 + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 9, - "Function Parameters": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811877,7 +813652,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811890,7 +813665,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811907,12 +813682,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 8, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -811923,7 +813698,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811932,7 +813707,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -811945,26 +813720,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "org.spockframework.EmbeddedSpecification", - "org.spockframework.mock.CannotCreateMockException" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_IgnoreIfDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_IgnoreIfDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_IgnoreIfDocSpec.groovy", - "Language": "Groovy", + "Filename": "CRETS03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4326.63, - "Y": 208.93, - "Z": -2156.1 + "X": 1223.92, + "Y": 74.42, + "Z": -1535.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811973,20 +813748,20 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 92, - "Coding LOC": 52, - "Documentation LOC": 24, - "Structural Magnitude": 10.34, - "Control Flow Ratio": "6.7%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.212 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.4%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", @@ -811996,107 +813771,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.91%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"IgnoreIf can be configured to be inherited\"", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 89 - }, - { - "Function Name": "\"I will run everywhere but not on Windows\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 34 - }, - { - "Function Name": "\"I'll run everywhere but on Windows\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 14 - }, - { - "Function Name": "\"I will run everywhere but on Windows\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 17 - }, - { - "Function Name": "\"I'll run everywhere but on Windows or anywhere on Java 8\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 25 - }, - { - "Function Name": "\"I'll run everywhere but on Windows and only if a != 5 and b < 6\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 43 - }, - { - "Function Name": "\"For the given reason, I will not run on MacOS\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 58 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 14, - "Function Parameters": 7, - "Function/Method Declarations": 7, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 9, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 1, - "Decorators and Annotations": 8, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812108,7 +813823,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812121,7 +813836,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 46, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812138,15 +813853,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812154,7 +813869,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812163,40 +813878,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.extension.builtin.PreconditionContext", - "spock.lang.IgnoreIf" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_InterceptorSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_InterceptorSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_InterceptorSpec.groovy", - "Language": "Groovy", + "Filename": "DB2BIND.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3170.43, - "Y": 138.84, - "Z": -2435.68 + "X": 712.49, + "Y": 36.89, + "Z": -2479.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812205,10 +813919,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 111, - "Coding LOC": 65, - "Documentation LOC": 34, - "Structural Magnitude": 11.9, + "Total LOC": 110, + "Coding LOC": 89, + "Documentation LOC": 9, + "Structural Magnitude": 8.58, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812218,97 +813932,67 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "98.27%", - "Testing Exposure": "2.4%", + "Error & Exception Exposure": "74.52%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "10.07%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.58%", + "Documentation Exposure": "22.34%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "visitSpecAnnotation", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 82 - }, - { - "Function Name": "visitFeatureAnnotation", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 109 - }, - { - "Function Name": "I", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 96, - "End Line": 100 - }, - { - "Function Name": "I", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "BIND", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 75, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 40 + "Start Line": 12, + "End Line": 86 }, { - "Function Name": "\"a method\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "GRANT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 32, - "End Line": 35 + "Start Line": 90, + "End Line": 109 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 20, - "Function Parameters": 14, - "Function/Method Declarations": 11, - "Class/Entity Declarations": 3, + "Sequential Logic Declarations": 24, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 6, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 8, - "Generic Type Abstractions": 1, - "Collection Iterators / Comprehensions": 3, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 10, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812320,7 +814004,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812333,7 +814017,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 43, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812350,15 +814034,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 27, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 27, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812366,7 +814050,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 3, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812375,47 +814059,51 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 10, + "Direct Upstream (Fragility)": 14, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "java.lang.annotation.ElementType", - "java.lang.annotation.Retention", - "java.lang.annotation.RetentionPolicy", - "java.lang.annotation.Target", - "org.spockframework.runtime.extension.AbstractMethodInterceptor", - "org.spockframework.runtime.extension.ExtensionAnnotation", - "org.spockframework.runtime.extension.IAnnotationDrivenExtension", - "org.spockframework.runtime.model.FeatureInfo", - "org.spockframework.runtime.model.SpecInfo", - "spock.lang.Specification" + "&BANKDBRM(BANKDATA)", + "&BANKDBRM(CREACC)", + "&BANKDBRM(CRECUST)", + "&BANKDBRM(DBCRFUN)", + "&BANKDBRM(DELACC)", + "&BANKDBRM(DELCUS)", + "&BANKDBRM(INQACC)", + "&BANKDBRM(INQACCCU)", + "&BANKDBRM(UPDACC)", + "&BANKDBRM(XFRFUN)", + "&DB2HLQ..SDSNEXIT", + "&DB2HLQ..SDSNLOAD", + "CBSA.DB2.JCL.INSTALL", + "DEFAULT" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_IssueDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_IssueDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_IssueDocSpec.groovy", - "Language": "Groovy", + "Filename": "DBCRFUN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3773.03, - "Y": 91.68, - "Z": -3022.85 + "X": 1854.69, + "Y": -1.04, + "Z": -1755.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812424,71 +814112,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 19, - "Documentation LOC": 2, - "Structural Magnitude": 3.98, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.263 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.48%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.36%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"Foo should do bar\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 12 - }, - { - "Function Name": "\"I have two related issues\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 17 - }, - { - "Function Name": "\"I have three related issues\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 23 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 8, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -812497,17 +814165,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812532,7 +814200,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 13, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812549,15 +814217,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812583,30 +814251,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Issue", - "spock.lang.Specification" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy", - "Language": "Groovy", + "Filename": "DEFAULT.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3563.39, - "Y": 134.72, - "Z": -3195.89 + "X": 90.67, + "Y": 88.14, + "Z": -2113.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812615,70 +814283,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 44, - "Coding LOC": 19, - "Documentation LOC": 20, - "Structural Magnitude": 2.28, + "Total LOC": 48, + "Coding LOC": 9, + "Documentation LOC": 38, + "Structural Magnitude": 23.68, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 44, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.263 + "Raw Cognitive Density": 1.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.48%", - "Error & Exception Exposure": "80.34%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.34%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "95.02%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.91%", + "Documentation Exposure": "14.47%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "\"preferredMockMaker configuration setting\"", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 42 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 9, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812692,7 +814349,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -812703,7 +814360,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 13, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812720,15 +814377,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812752,33 +814409,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 44, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 65 }, - "9. Extracted Dependencies": [ - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.RunContext", - "spock.mock.MockMakers" - ] + "9. Extracted Dependencies": [] }, - "groovy/spock_specs/org_spockframework_docs_extension_ParameterInjectionSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DELACC.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_ParameterInjectionSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_ParameterInjectionSpec.groovy", - "Language": "Groovy", + "Filename": "DELACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DELACC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3453.67, - "Y": 123.97, - "Z": -2154.19 + "X": 486.05, + "Y": 98.77, + "Z": -1438.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812787,130 +814440,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 65, - "Coding LOC": 49, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 18.88, - "Control Flow Ratio": "12.5%", + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.233 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.23%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.51%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.95%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "visitParameterAnnotation", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 51, - "End Line": 62 - }, - { - "Function Name": "\"test\"", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 31 - }, - { - "Function Name": "SpockExecutionException", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 60 - }, - { - "Function Name": "setupSpec", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 19 - }, - { - "Function Name": "setup", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 22, - "End Line": 24 - }, - { - "Function Name": "cleanup", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 36 - }, - { - "Function Name": "cleanupSpec", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 40 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 21, - "Function Parameters": 7, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 4, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, - "Generic Type Abstractions": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 10, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812925,7 +814518,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -812935,7 +814528,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 30, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812952,15 +814545,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812984,40 +814577,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 10, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "java.lang.annotation.ElementType", - "java.lang.annotation.Retention", - "java.lang.annotation.RetentionPolicy", - "java.lang.annotation.Target", - "org.spockframework.runtime.SpockExecutionException", - "org.spockframework.runtime.extension.ExtensionAnnotation", - "org.spockframework.runtime.extension.IAnnotationDrivenExtension", - "org.spockframework.runtime.extension.ParameterResolver", - "org.spockframework.runtime.model.ParameterInfo", - "spock.lang.Specification" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy", - "Language": "Groovy", + "Filename": "DELCUS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3328.93, - "Y": 111.83, - "Z": -2603.91 + "X": -506.89, + "Y": 71.31, + "Z": -2703.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813026,90 +814611,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 41, - "Coding LOC": 30, - "Documentation LOC": 6, - "Structural Magnitude": 16.0, - "Control Flow Ratio": "9.1%", + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.95 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "69.0%", - "Error & Exception Exposure": "85.37%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.09%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"I have various problems in certain situations\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 29 - }, - { - "Function Name": "\"I'm not yet implemented on windows, but I am on other operating systems\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "\"This feature isn't deployed out to production yet, and isn't expected to pass\"", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 18 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 10, - "Function Parameters": 5, - "Function/Method Declarations": 5, - "Class/Entity Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813124,7 +814689,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -813132,9 +814697,9 @@ "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 1, + "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 23, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813151,15 +814716,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 6, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813183,34 +814748,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "org.opentest4j.TestAbortedException", - "spock.lang.PendingFeature", - "spock.lang.PendingFeatureIf", - "spock.lang.Specification" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_RequiresDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_RequiresDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_RequiresDocSpec.groovy", - "Language": "Groovy", + "Filename": "DROPDB2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4460.95, - "Y": 195.02, - "Z": -1859.61 + "X": 188.48, + "Y": 54.46, + "Z": -2855.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813219,22 +814782,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 16, + "Total LOC": 39, + "Coding LOC": 29, "Documentation LOC": 4, - "Structural Magnitude": 2.52, + "Structural Magnitude": 3.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 + "Raw Cognitive Density": 0.172 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.8%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.39%", + "Cognitive Load Exposure": "6.32%", + "Error & Exception Exposure": "83.93%", + "Tech Debt Exposure": "99.48%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813242,57 +814805,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.59%", + "Documentation Exposure": "46.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"I'll only run on Windows\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 8 - }, - { - "Function Name": "\"I'll run only on Windows with Java 8\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 30, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 16 + "Start Line": 9, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 3, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813304,7 +814857,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813317,7 +814870,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 11, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813334,15 +814887,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813350,7 +814903,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813359,7 +814912,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -813372,26 +814925,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Requires", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_RetryDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_RetryDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_RetryDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPDB00.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4150.79, - "Y": 165.97, - "Z": -2555.0 + "X": -909.98, + "Y": 119.16, + "Z": -2213.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813400,22 +814953,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 103, - "Coding LOC": 75, - "Documentation LOC": 10, - "Structural Magnitude": 17.9, - "Control Flow Ratio": "5.9%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.136 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.91%", - "Error & Exception Exposure": "69.11%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813423,167 +814976,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.94%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"only retry if condition on failure holds\"", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 34, - "End Line": 36 - }, - { - "Function Name": "\"retry failing feature methods\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 49 - }, - { - "Function Name": "\"retry with setup and cleanup\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 57 - }, - { - "Function Name": "\"retry 3 times\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 18, + "Start Line": 9, "End Line": 21 - }, - { - "Function Name": "\"retry 5 times\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 26 - }, - { - "Function Name": "\"only retry on IOException\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 31 - }, - { - "Function Name": "\"retry after 1000 ms delay\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 62 - }, - { - "Function Name": "\"will be retried using its own config\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 78 - }, - { - "Function Name": "\"only retry if condition on instance holds\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 38 - }, - { - "Function Name": "\"will be retried with config from class\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 73 - }, - { - "Function Name": "inherited", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 87 - }, - { - "Function Name": "foo", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 93 - }, - { - "Function Name": "bar", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 98, - "End Line": 100 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 32, - "Function Parameters": 13, - "Function/Method Declarations": 13, - "Class/Entity Declarations": 6, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 15, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 13, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813595,7 +815028,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813608,7 +815041,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 54, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813625,15 +815058,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813641,7 +815074,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813650,41 +815083,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "groovy.sql.Sql", - "spock.lang.Retry", - "spock.lang.Shared", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_SeeDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_SeeDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_SeeDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPI101.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3760.36, - "Y": 213.89, - "Z": -1594.63 + "X": 1109.99, + "Y": 22.41, + "Z": -3192.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813693,22 +815124,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 15, - "Documentation LOC": 2, - "Structural Magnitude": 2.7, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.89%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813716,57 +815147,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.79%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"Even more information is available on the feature\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 12 - }, - { - "Function Name": "\"And even more information is available on the feature\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 18 + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 4, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813778,7 +815199,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813791,7 +815212,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813808,15 +815229,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813824,7 +815245,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813833,7 +815254,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -813846,26 +815267,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.See", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_SnapshotDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_SnapshotDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_SnapshotDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPI201.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4266.05, - "Y": 153.16, - "Z": -2960.97 + "X": 345.74, + "Y": 83.0, + "Z": -971.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813874,22 +815295,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 64, - "Coding LOC": 31, - "Documentation LOC": 23, - "Structural Magnitude": 6.22, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.161 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.67%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813897,77 +815318,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.25%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"using parameter based snapshot\"", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 43 - }, - { - "Function Name": "\"using field based snapshot\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 35 - }, - { - "Function Name": "\"custom matching\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 61 - }, - { - "Function Name": "\"multi snapshot\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 47, - "End Line": 51 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 14, - "Function Parameters": 6, - "Function/Method Declarations": 4, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 10, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 7, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813979,7 +815370,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813992,7 +815383,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814009,15 +815400,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814025,7 +815416,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814034,44 +815425,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "org.hamcrest.MatcherAssert", - "org.hamcrest.MatcherAssert.assertThat", - "org.hamcrest.Matchers", - "org.hamcrest.Matchers.equalTo", - "spock.lang.Snapshot", - "spock.lang.Snapshotter", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_StepwiseDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_StepwiseDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_StepwiseDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPI301.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3447.53, - "Y": 134.09, - "Z": -3065.69 + "X": -574.1, + "Y": 112.18, + "Z": -3081.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814080,70 +815466,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 52, - "Coding LOC": 28, - "Documentation LOC": 15, - "Structural Magnitude": 6.76, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.321 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.26%", - "Error & Exception Exposure": "69.53%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.34%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "68.07%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.93%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"Annotation on feature\"", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 50 - }, - { - "Function Name": "\"Annotation on spec\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 26 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 10, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 4, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -814153,7 +815529,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -814165,7 +815541,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -814178,7 +815554,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 22, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814195,15 +815571,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814211,7 +815587,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814220,40 +815596,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.extension.builtin.PreconditionContext", - "spock.lang.IgnoreIf" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_SubjectDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_SubjectDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_SubjectDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPSG01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3895.48, - "Y": 168.14, - "Z": -1908.85 + "X": 1516.43, + "Y": 72.69, + "Z": -2314.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814262,44 +815637,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 27, - "Coding LOC": 14, - "Documentation LOC": 8, - "Structural Magnitude": 15.28, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.357 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.55%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 21 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 3, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -814309,12 +815695,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 4, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -814326,9 +815712,9 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -814339,7 +815725,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814356,15 +815742,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814372,7 +815758,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814381,7 +815767,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -814394,26 +815780,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification", - "spock.lang.Subject" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_TagDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_TagDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_TagDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPSG02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4274.87, - "Y": 119.03, - "Z": -3023.87 + "X": -682.4, + "Y": 109.0, + "Z": -1343.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814422,80 +815808,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 2.56, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.04%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"has two tags\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 16 - }, - { - "Function Name": "\"has one tag\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 11 + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 2, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -814507,7 +815883,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -814520,7 +815896,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814537,15 +815913,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814553,7 +815929,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814562,7 +815938,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -814575,26 +815951,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification", - "spock.lang.Tag" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_TempDirDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_TempDirDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_TempDirDocSpec.groovy", - "Language": "Groovy", - "Architect": "dqyuan", + "Filename": "DRPSG03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3499.36, - "Y": 192.9, - "Z": -1985.91 + "X": 485.98, + "Y": 63.84, + "Z": -3412.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814603,22 +815979,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 54, - "Coding LOC": 29, - "Documentation LOC": 13, - "Structural Magnitude": 6.38, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.172 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.16%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -814626,68 +816002,48 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.89%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "setupSpec", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 35 - }, - { - "Function Name": "demo", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 50 - }, - { - "Function Name": "setup", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 40 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 10, - "Function Parameters": 3, - "Function/Method Declarations": 3, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 9, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 1, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 1, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -814698,7 +816054,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -814711,7 +816067,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 23, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814728,15 +816084,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814744,7 +816100,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814753,40 +816109,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "java.nio.file.Path", - "spock.lang.*", - "spock.util.io.FileSystemFixture" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_UseDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_UseDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_UseDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPTB01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3135.13, - "Y": 152.75, - "Z": -1843.12 + "X": 1052.61, + "Y": 34.94, + "Z": -1063.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814795,80 +816150,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 2.96, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.09%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "avg", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 8 - }, - { - "Function Name": "\"can use avg() method\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -814880,9 +816225,9 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -814893,7 +816238,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814910,11 +816255,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -814926,7 +816271,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814935,7 +816280,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -814948,26 +816293,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification", - "spock.util.mop.Use" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_interaction_BuilderExampleSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_interaction_BuilderExampleSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_interaction_BuilderExampleSpec.groovy", - "Language": "Groovy", + "Filename": "DRPTB02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2855.91, - "Y": 123.04, - "Z": -2214.68 + "X": -976.36, + "Y": 107.54, + "Z": -2590.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814976,22 +816321,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 40, - "Coding LOC": 27, - "Documentation LOC": 2, - "Structural Magnitude": 2.54, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.185 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.46%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.71%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -814999,47 +816344,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "51.08%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"build example\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 27 + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 8, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 3, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -815051,7 +816396,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815064,7 +816409,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815081,11 +816426,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -815097,7 +816442,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815106,7 +816451,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -815119,97 +816464,83 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "groovy.transform.builder.*", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] - } - } - }, - "sqlite/mediawiki_sqlite_tables": { - "Directory Group Magnitude": 315.54, - "File Count": 11, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "90.9%", - "Static: Literature & Documentation": "9.1%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "5.49%", - "Error & Exception Exposure": "33.6%", - "Tech Debt Exposure": "90.91%", - "Testing Exposure": "1.62%", - "API Exposure": "0.42%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "63.03%", - "Instability Exposure": "45.45%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.66%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "sqlite/mediawiki_sqlite_tables/COPYING": { + }, + "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl": { "1. Artifact Identity": { - "Filename": "COPYING", - "Path": "sqlite/mediawiki_sqlite_tables/COPYING", - "Language": "Plaintext", + "Filename": "DRPTB03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYING)" + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2341.99, - "Y": -8.88, - "Z": -7213.65 + "X": 1379.06, + "Y": 74.55, + "Z": -2931.56 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 379, - "Coding LOC": 0, - "Documentation LOC": 307, - "Structural Magnitude": 7.58, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "61.98%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 21 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -815236,7 +816567,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815249,7 +816580,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815266,15 +816597,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815282,7 +816613,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815291,36 +816622,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-block_target.sql": { + "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl": { "1. Artifact Identity": { - "Filename": "patch-block_target.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-block_target.sql", - "Language": "Sqlite", + "Filename": "DRPTS01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1794.21, - "Y": 10.01, - "Z": -7748.32 + "X": -105.47, + "Y": 83.15, + "Z": -881.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815329,22 +816663,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 42, - "Coding LOC": 30, - "Documentation LOC": 0, - "Structural Magnitude": 12.3, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.167 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.84%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.55%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -815352,122 +816686,32 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.0%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 15 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 17 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 21, + "Start Line": 9, "End Line": 21 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 37 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 39 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 41 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 8, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -815494,7 +816738,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815507,7 +816751,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815524,15 +816768,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815540,7 +816784,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815549,36 +816793,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-collation.sql": { + "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl": { "1. Artifact Identity": { - "Filename": "patch-collation.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-collation.sql", - "Language": "Sqlite", + "Filename": "DRPTS02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1599.32, - "Y": 32.75, - "Z": -7728.95 + "X": -237.94, + "Y": 77.49, + "Z": -3583.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815587,65 +816834,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 5, - "Documentation LOC": 0, - "Structural Magnitude": 2.4, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.82%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "33.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.36%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -815672,7 +816909,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815685,7 +816922,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815702,15 +816939,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815718,7 +816955,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815727,36 +816964,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql": { + "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl": { "1. Artifact Identity": { - "Filename": "patch-existencelinks.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql", - "Language": "Sqlite", + "Filename": "DRPTS03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2381.47, - "Y": -73.32, - "Z": -6947.49 + "X": 1531.21, + "Y": 49.67, + "Z": -1896.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815765,65 +817005,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -815850,7 +817080,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815863,7 +817093,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815880,15 +817110,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815896,7 +817126,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815905,36 +817135,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-file.sql": { + "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl": { "1. Artifact Identity": { - "Filename": "patch-file.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-file.sql", - "Language": "Sqlite", + "Filename": "EXTDCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2106.94, - "Y": -108.36, - "Z": -6909.99 + "X": -1229.41, + "Y": 139.06, + "Z": -1697.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815943,152 +817176,52 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 47, - "Coding LOC": 33, - "Documentation LOC": 0, - "Structural Magnitude": 13.46, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.152 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.36%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.51%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.17%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 25 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 7 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 42 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 27 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 29 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 31 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 46 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 8, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 5, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -816106,7 +817239,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816131,7 +817264,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816148,15 +817281,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816180,29 +817313,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CTSSVT.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql": { + "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl": { "1. Artifact Identity": { - "Filename": "patch-user-user_is_temp.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql", - "Language": "Sqlite", + "Filename": "GETCOMPY.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1334.82, - "Y": -96.87, - "Z": -6906.02 + "X": 1281.4, + "Y": 29.86, + "Z": -2219.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816211,57 +817347,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 7, - "Coding LOC": 2, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 3.14, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.5 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.36%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "13.33%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.99%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "ALTER_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 6 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -816274,7 +817410,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816299,7 +817435,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816316,15 +817452,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816348,29 +817484,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql": { + "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl": { "1. Artifact Identity": { - "Filename": "patch-user_autocreate_serial-uas_year.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql", - "Language": "Sqlite", + "Filename": "GETSCODE.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1380.31, - "Y": -43.7, - "Z": -7502.15 + "X": -408.31, + "Y": 75.09, + "Z": -1320.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816379,96 +817518,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 18, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 6.26, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.278 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.14%", - "Error & Exception Exposure": "84.62%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.51%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.42%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 9 - }, - { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 25 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 27 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -816482,7 +817581,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816502,12 +817601,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816524,15 +817623,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816556,29 +817655,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql": { + "jcl/cics-banking-sample-application-cbsa/INQACC.jcl": { "1. Artifact Identity": { - "Filename": "patch-watchlist_label.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql", - "Language": "Sqlite", + "Filename": "INQACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQACC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2064.89, - "Y": 59.16, - "Z": -7604.57 + "X": 327.12, + "Y": 40.92, + "Z": -3280.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816587,55 +817689,35 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 12, - "Documentation LOC": 0, - "Structural Magnitude": 4.84, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.97%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.39%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 14 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, @@ -816643,30 +817725,20 @@ "Control Flow Ratio": "0.0%", "Start Line": 7, "End Line": 7 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 3, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -816680,7 +817752,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816705,7 +817777,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816722,15 +817794,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816754,29 +817826,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql": { + "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl": { "1. Artifact Identity": { - "Filename": "searchindex-fts3.sql", - "Path": "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql", - "Language": "Sqlite", + "Filename": "INQACCCU.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2034.65, - "Y": -148.41, - "Z": -6689.56 + "X": 980.0, + "Y": 17.53, + "Z": -1560.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816785,75 +817860,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 6, - "Documentation LOC": 9, - "Structural Magnitude": 5.52, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "94.1%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.14%", - "API Exposure": "4.63%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.48%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 18 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 16 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 5 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 1, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -816868,7 +817923,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816888,12 +817943,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816910,15 +817965,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816942,29 +817997,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 4 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql": { + "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl": { "1. Artifact Identity": { - "Filename": "searchindex-no-fts.sql", - "Path": "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql", - "Language": "Sqlite", + "Filename": "INQCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1605.37, - "Y": -145.6, - "Z": -6950.18 + "X": -800.75, + "Y": 78.66, + "Z": -2496.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816973,126 +818031,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 13, - "Documentation LOC": 5, - "Structural Magnitude": 10.16, - "Control Flow Ratio": "50.0%", + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.462 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "98.81%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.46%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.49%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "DELETE_Statement", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 18 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 6 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 20 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, + "Control Flow Branches": 0, "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 8, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -817106,7 +818094,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -817126,12 +818114,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 5, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -817148,15 +818136,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -817180,29 +818168,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 5 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/tables-generated.sql": { + "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl": { "1. Artifact Identity": { - "Filename": "tables-generated.sql", - "Path": "sqlite/mediawiki_sqlite_tables/tables-generated.sql", - "Language": "Sqlite", + "Filename": "INSTDB2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1805.25, - "Y": -74.03, - "Z": -7206.27 + "X": 868.04, + "Y": 20.31, + "Z": -1946.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -817211,10 +818202,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 948, - "Coding LOC": 683, - "Documentation LOC": 4, - "Structural Magnitude": 247.46, + "Total LOC": 106, + "Coding LOC": 73, + "Documentation LOC": 17, + "Structural Magnitude": 5.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -817224,9 +818215,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.49%", + "Error & Exception Exposure": "70.49%", + "Tech Debt Exposure": "64.16%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -817234,2001 +818225,1085 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.37%", + "Documentation Exposure": "21.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, + "Function Name": "GRANT", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 90, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 16, - "End Line": 27 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 51 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 103, - "End Line": 112 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 220, - "End Line": 236 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 251, - "End Line": 262 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 286, - "End Line": 301 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 381, - "End Line": 390 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 442, - "End Line": 452 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 485, - "End Line": 498 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 511, - "End Line": 522 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 580, - "End Line": 589 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 629, - "End Line": 645 - }, + "End Line": 105 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 38, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 10, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 10, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 2, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "&DB2HLQ..SDSNLOAD", + "CBSA.DB2.JCL.INSTALL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl": { + "1. Artifact Identity": { + "Filename": "MAPGEN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 55.05, + "Y": 60.88, + "Z": -2833.53 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 50, + "Coding LOC": 43, + "Documentation LOC": 6, + "Structural Magnitude": 7.46, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.116 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.14%", + "Error & Exception Exposure": "86.5%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.44%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "35.41%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, + "Function Name": "ASMDSECT", + "Structural Impact": 1.9, "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 685, - "End Line": 694 + "Start Line": 40, + "End Line": 49 }, { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "LINKMAP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 731, - "End Line": 740 + "Start Line": 33, + "End Line": 38 }, { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, + "Function Name": "ASMMAP", + "Structural Impact": 1.6, "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 743, - "End Line": 755 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 809, - "End Line": 827 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 836, - "End Line": 851 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 69 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 80, - "End Line": 88 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 122, - "End Line": 128 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 316, - "End Line": 322 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 338, - "End Line": 346 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 536, - "End Line": 542 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 610, - "End Line": 616 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 673, - "End Line": 680 + "Start Line": 20, + "End Line": 32 }, { - "Function Name": "CREATE_Statement", + "Function Name": "COPY", "Structural Impact": 1.4, "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 768, - "End Line": 774 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 96 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 171, - "End Line": 176 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 196, - "End Line": 201 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 213 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 349, - "End Line": 354 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 361, - "End Line": 366 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 371, - "End Line": 376 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 406, - "End Line": 411 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 414, - "End Line": 419 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 432, - "End Line": 437 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 475, - "End Line": 480 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 549, - "End Line": 554 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 565, - "End Line": 570 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 707, - "End Line": 712 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 719, - "End Line": 724 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 781, - "End Line": 786 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 860, - "End Line": 865 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 875, - "End Line": 880 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 897, - "End Line": 902 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 907, - "End Line": 912 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 9 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 117 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 145 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 157 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 162, - "End Line": 166 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 179, - "End Line": 182 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 187, - "End Line": 191 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 275, - "End Line": 279 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 332, - "End Line": 335 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 398, - "End Line": 401 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 424, - "End Line": 427 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 530, - "End Line": 533 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 574, - "End Line": 577 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 594, - "End Line": 598 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 603, - "End Line": 607 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 665, - "End Line": 668 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 760, - "End Line": 763 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 790, - "End Line": 793 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 796, - "End Line": 799 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 802, - "End Line": 806 - }, + "Start Line": 13, + "End Line": 19 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 25, + "Function Parameters": 3, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 28, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 41, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 41, + "Design Short Vars": 1, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 4, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 2, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "&CBSAHLQ..BMS(&MEMBER)", + "&CBSAHLQ..DSECT(&MEMBER)", + "&CBSAHLQ..LOADLIB(&MEMBER)", + "&CICSHLQ..SDFHMAC", + "SYS1.MACLIB" + ] + }, + "jcl/cics-banking-sample-application-cbsa/RACF001.jcl": { + "1. Artifact Identity": { + "Filename": "RACF001.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RACF001.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -955.94, + "Y": 107.25, + "Z": -1683.66 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 20, + "Coding LOC": 15, + "Documentation LOC": 4, + "Structural Magnitude": 1.9, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.333 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "11.12%", + "Error & Exception Exposure": "91.01%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "65.27%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "TSO", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 868, - "End Line": 872 - }, + "Start Line": 8, + "End Line": 19 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 4, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 6, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 6, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 1, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl": { + "1. Artifact Identity": { + "Filename": "REPLCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1358.19, + "Y": 39.09, + "Z": -2077.51 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 2.04, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.294 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.41%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "61.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "JOBSTEP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 887, - "End Line": 890 - }, + "Start Line": 8, + "End Line": 21 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 14, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 14, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "CBSA.JCL.INSTALL", + "FEU.Z25A.PROCLIB" + ] + }, + "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl": { + "1. Artifact Identity": { + "Filename": "REPLSIP.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -755.48, + "Y": 126.68, + "Z": -1637.07 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 2.04, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.294 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.41%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "61.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "JOBSTEP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 923, - "End Line": 927 - }, + "Start Line": 8, + "End Line": 21 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 14, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 14, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "CBSA.JCL.INSTALL", + "DFH560.SYSIN" + ] + }, + "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl": { + "1. Artifact Identity": { + "Filename": "RESTCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -823.36, + "Y": 95.33, + "Z": -2963.92 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.625 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.75%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.33%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "53.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.16%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "STEP0001", "Structural Impact": 1.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 932, - "End Line": 936 - }, + "Start Line": 8, + "End Line": 12 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 3, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 3, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 1, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl": { + "1. Artifact Identity": { + "Filename": "RESTZOSC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1641.21, + "Y": -0.78, + "Z": -2558.8 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.625 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.75%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.33%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "53.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.16%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "STEP0001", "Structural Impact": 1.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 941, - "End Line": 945 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 13 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 31 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 53 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 55 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 57 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 59 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 71 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 73 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 75 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 77 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 98, - "End Line": 98 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 100 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 119 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 130, - "End Line": 130 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 132, - "End Line": 132 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 134, - "End Line": 134 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 138 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 147, - "End Line": 147 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 149 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 151, - "End Line": 151 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 159, - "End Line": 159 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 168 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 184, - "End Line": 184 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 193, - "End Line": 193 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 203, - "End Line": 203 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 205, - "End Line": 205 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 215, - "End Line": 215 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 217, - "End Line": 217 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 238 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 240, - "End Line": 242 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 244, - "End Line": 244 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 246, - "End Line": 246 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 248, - "End Line": 248 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 264, - "End Line": 264 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 266, - "End Line": 266 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 268 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 270 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 272, - "End Line": 272 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 281, - "End Line": 283 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 303, - "End Line": 303 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 305, - "End Line": 305 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 307, - "End Line": 307 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 309, - "End Line": 309 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 311, - "End Line": 313 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 324, - "End Line": 324 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 326, - "End Line": 328 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 330, - "End Line": 330 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 356, - "End Line": 356 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 358, - "End Line": 358 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 368, - "End Line": 368 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 378, - "End Line": 378 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 392, - "End Line": 392 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 394, - "End Line": 394 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 396, - "End Line": 396 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 403, - "End Line": 403 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 421, - "End Line": 421 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 429, - "End Line": 429 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 439 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 454, - "End Line": 454 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 456, - "End Line": 456 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 458, - "End Line": 460 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 462, - "End Line": 462 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 464, - "End Line": 466 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 468, - "End Line": 468 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 470, - "End Line": 472 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 482, - "End Line": 482 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 500, - "End Line": 500 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 502, - "End Line": 502 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 504, - "End Line": 504 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 506, - "End Line": 506 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 508, - "End Line": 508 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 524, - "End Line": 524 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 526, - "End Line": 526 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 528, - "End Line": 528 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 544, - "End Line": 544 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 546, - "End Line": 546 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 556, - "End Line": 556 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 558, - "End Line": 558 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 560 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 562, - "End Line": 562 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 572, - "End Line": 572 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 591, - "End Line": 591 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 600, - "End Line": 600 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 618, - "End Line": 618 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 620, - "End Line": 622 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 624, - "End Line": 626 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 647, - "End Line": 647 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 649, - "End Line": 651 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 653, - "End Line": 653 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 655, - "End Line": 657 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 659, - "End Line": 659 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 661, - "End Line": 661 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 663 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 670, - "End Line": 670 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 682, - "End Line": 682 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 696, - "End Line": 696 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 698, - "End Line": 698 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 700, - "End Line": 700 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 702, - "End Line": 704 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 714, - "End Line": 714 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 716, - "End Line": 716 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 726, - "End Line": 726 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 728, - "End Line": 728 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 757, - "End Line": 757 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 765, - "End Line": 765 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 776, - "End Line": 778 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 788, - "End Line": 788 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 829, - "End Line": 829 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 831, - "End Line": 831 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 833, - "End Line": 833 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 853, - "End Line": 853 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 855, - "End Line": 855 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 857, - "End Line": 857 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 882 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 884, - "End Line": 884 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 892, - "End Line": 892 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 894, - "End Line": 894 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 904, - "End Line": 904 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 914, - "End Line": 914 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 916, - "End Line": 916 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 918, - "End Line": 920 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 929, - "End Line": 929 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 938, - "End Line": 938 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 947, - "End Line": 947 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 2, "Function Parameters": 0, - "Function/Method Declarations": 134, - "Class/Entity Declarations": 64, - "Defensive Programming Constructs": 83, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -819256,7 +819331,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -819269,7 +819344,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 398, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -819277,7 +819352,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 1, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -819286,15 +819361,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 198, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -819302,7 +819377,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -819324,93 +819399,79 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "python/wtfpython": { - "Directory Group Magnitude": 313.92, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "83.3%", - "Static: Literature & Documentation": "16.7%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "21.73%", - "Error & Exception Exposure": "29.68%", - "Tech Debt Exposure": "37.59%", - "Testing Exposure": "14.42%", - "API Exposure": "3.61%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "33.33%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "62.22%", - "Instability Exposure": "41.67%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "7.42%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "python/wtfpython/README.md": { + }, + "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl": { "1. Artifact Identity": { - "Filename": "README.md", - "Path": "python/wtfpython/README.md", - "Language": "Markdown", + "Filename": "SHUTCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4576.34, - "Y": 99.18, - "Z": 10610.36 + "X": -607.35, + "Y": 72.27, + "Z": -1232.23 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4180, - "Coding LOC": 0, - "Documentation LOC": 3118, - "Structural Magnitude": 83.6, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.625 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.75%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.33%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "53.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.16%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 12 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 2, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -819438,7 +819499,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -819468,23 +819529,23 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 504, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 174, - "Hyperlinked Literature References": 171, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -819507,73 +819568,84 @@ }, "9. Extracted Dependencies": [] }, - "python/wtfpython/2_tricky_strings.py": { + "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl": { "1. Artifact Identity": { - "Filename": "2_tricky_strings.py", - "Path": "python/wtfpython/2_tricky_strings.py", - "Language": "Python", + "Filename": "SHUTZOSC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4313.79, - "Y": 191.44, - "Z": 10129.75 + "X": 172.91, + "Y": 79.17, + "Z": -3677.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 12, - "Documentation LOC": 3, - "Structural Magnitude": 15.24, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.167 + "Raw Cognitive Density": 0.625 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "94.75%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.84%", + "Testing Exposure": "1.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "9.54%", + "Documentation Exposure": "41.16%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 12 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 2, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 6, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 6, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -819586,7 +819658,7 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 8, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -819595,7 +819667,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -819625,15 +819697,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 6, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 6, + "Design Upper Case": 3, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -819641,7 +819713,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -819664,81 +819736,81 @@ }, "9. Extracted Dependencies": [] }, - "python/wtfpython/insert_ids.py": { + "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl": { "1. Artifact Identity": { - "Filename": "insert_ids.py", - "Path": "python/wtfpython/insert_ids.py", - "Language": "Python", + "Filename": "UPDACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4069.66, - "Y": 187.76, - "Z": 10761.84 + "X": 1173.27, + "Y": 59.04, + "Z": -2852.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 15, - "Documentation LOC": 0, - "Structural Magnitude": 8.4, - "Control Flow Ratio": "44.4%", + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.15 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "83.2%", - "Error & Exception Exposure": "88.67%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "4.25%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "generate_random_id_comment", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 11 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 6, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -819776,7 +819848,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -819793,11 +819865,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 5, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -819825,82 +819897,83 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "uuid" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "python/wtfpython/mixed_tabs_and_spaces.py": { + "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl": { "1. Artifact Identity": { - "Filename": "mixed_tabs_and_spaces.py", - "Path": "python/wtfpython/mixed_tabs_and_spaces.py", - "Language": "Python", + "Filename": "UPDCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (75.0% Spaces / 25.0% Tabs)", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4807.34, - "Y": 107.58, - "Z": 10237.09 + "X": 68.17, + "Y": 38.89, + "Z": -1191.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 4.22, - "Control Flow Ratio": "33.3%", + "Total LOC": 9, + "Coding LOC": 3, + "Documentation LOC": 5, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.04%", + "Testing Exposure": "0.51%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "4.77%", + "Documentation Exposure": "19.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "square", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1, - "End Line": 5 + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -819921,7 +819994,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -819934,7 +820007,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -819945,8 +820018,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1, - "Structural Space Indentations": 3, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -819963,11 +820036,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -819995,174 +820068,107 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "python/wtfpython/notebook_generator.py": { + "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl": { "1. Artifact Identity": { - "Filename": "notebook_generator.py", - "Path": "python/wtfpython/notebook_generator.py", - "Language": "Python", + "Filename": "XFRFUN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4390.23, - "Y": 179.55, - "Z": 10396.93 + "X": -264.18, + "Y": 59.67, + "Z": -3111.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 398, - "Coding LOC": 245, - "Documentation LOC": 89, - "Structural Magnitude": 199.8, - "Control Flow Ratio": "65.9%", + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.898 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "32.19%", - "Error & Exception Exposure": "89.44%", - "Tech Debt Exposure": "25.51%", - "Testing Exposure": "80.0%", - "API Exposure": "6.52%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "parse_example_parts", - "Structural Impact": 57.1, - "Lines of Code (LOC)": 103, - "Control Flow Branches": 25, - "Input Parameters": 3, - "Control Flow Ratio": "92.6%", - "Start Line": 96, - "End Line": 198 - }, - { - "Function Name": "convert_to_cells", - "Structural Impact": 16.2, - "Lines of Code (LOC)": 81, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 228, - "End Line": 308 - }, - { - "Function Name": "convert_to_notebook", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 311, - "End Line": 342 - }, - { - "Function Name": "inspect_and_sanitize_code_lines", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 208, - "End Line": 225 - }, - { - "Function Name": "remove_from_beginning", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 201, - "End Line": 205 - }, - { - "Function Name": "is_interactive_statement", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 89, - "End Line": 93 - }, - { - "Function Name": "generate_code_block", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 72 - }, - { - "Function Name": "generate_markdown_block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 86 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 56, - "Sequential Logic Declarations": 29, - "Function Parameters": 9, - "Function/Method Declarations": 8, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 17, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 8, - "State Mutations / Variable Reassignments": 81, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 25, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, - "Planned Work (TODOs)": 3, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -820172,19 +820178,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 226, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -820201,13 +820207,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 69, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 67, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 2, "Design Short Vars": 0, - "Design Long Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -820233,92 +820239,90 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "json", - "os", - "pprint", - "sys" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "python/wtfpython/noxfile.py": { + "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl": { "1. Artifact Identity": { - "Filename": "noxfile.py", - "Path": "python/wtfpython/noxfile.py", - "Language": "Python", + "Filename": "ZOSCSEC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3977.43, - "Y": 253.19, - "Z": 10025.73 + "X": 891.33, + "Y": 97.13, + "Z": -3572.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 14, "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 2.66, - "Control Flow Ratio": "14.3%", + "Documentation LOC": 5, + "Structural Magnitude": 1.86, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.375 + "Raw Cognitive Density": 0.625 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "94.75%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.28%", - "API Exposure": "5.12%", + "Testing Exposure": "1.35%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.36%", + "Documentation Exposure": "41.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "tests", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "BPXIT", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 12, + "Start Line": 8, "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 6, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 2, "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -820327,12 +820331,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -820344,7 +820348,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -820357,7 +820361,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -820373,13 +820377,13 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 2, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 3, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -820390,9 +820394,9 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -820406,16 +820410,12 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "nox", - "nox.sessions", - "typing" - ] + "9. Extracted Dependencies": [] } } }, @@ -821452,9 +821452,9 @@ "Identity Proof": "Prefix Anchor (LICENSE)" }, "2. Topological Coordinates": { - "X": -2378.59, + "X": -2378.42, "Y": 5.27, - "Z": -4574.01 + "Z": -4573.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -821609,9 +821609,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2096.2, + "X": -2096.03, "Y": -103.8, - "Z": -5224.86 + "Z": -5224.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821766,9 +821766,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1650.31, + "X": -1650.14, "Y": -185.31, - "Z": -5483.88 + "Z": -5483.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821954,9 +821954,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1463.75, + "X": -1463.59, "Y": -136.06, - "Z": -4608.06 + "Z": -4607.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822111,9 +822111,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2253.77, + "X": -2253.6, "Y": -82.57, - "Z": -5322.22 + "Z": -5321.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822268,9 +822268,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1427.86, + "X": -1427.69, "Y": -176.1, - "Z": -4769.62 + "Z": -4769.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822425,9 +822425,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1123.32, + "X": -1123.15, "Y": -223.16, - "Z": -4780.73 + "Z": -4780.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822582,9 +822582,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1752.96, + "X": -1752.79, "Y": -106.39, - "Z": -4584.2 + "Z": -4583.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822739,9 +822739,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1676.48, + "X": -1676.31, "Y": -181.14, - "Z": -5230.62 + "Z": -5230.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822977,9 +822977,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -832.71, + "X": -832.55, "Y": -255.83, - "Z": -4991.1 + "Z": -4990.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823145,9 +823145,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2137.59, + "X": -2137.43, "Y": -101.33, - "Z": -5859.78 + "Z": -5859.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823313,9 +823313,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1133.78, + "X": -1133.61, "Y": -181.61, - "Z": -4708.4 + "Z": -4707.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823491,9 +823491,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2430.42, + "X": -2430.26, "Y": 11.03, - "Z": -4942.06 + "Z": -4941.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823659,9 +823659,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1445.26, + "X": -1445.09, "Y": -253.66, - "Z": -5689.59 + "Z": -5689.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823816,9 +823816,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1730.47, + "X": -1730.3, "Y": -83.6, - "Z": -4491.09 + "Z": -4490.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823984,9 +823984,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -978.07, + "X": -977.9, "Y": -265.11, - "Z": -5106.18 + "Z": -5105.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824141,9 +824141,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1919.54, + "X": -1919.37, "Y": -154.83, - "Z": -5607.64 + "Z": -5607.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824319,9 +824319,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2223.3, + "X": -2223.13, "Y": -58.38, - "Z": -4894.76 + "Z": -4894.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824497,9 +824497,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2055.24, + "X": -2055.07, "Y": -59.47, - "Z": -4666.57 + "Z": -4666.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824654,9 +824654,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1295.19, + "X": -1295.02, "Y": -222.22, - "Z": -5475.12 + "Z": -5474.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824811,9 +824811,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1719.96, + "X": -1719.79, "Y": -203.03, - "Z": -5852.76 + "Z": -5852.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824989,9 +824989,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1916.28, + "X": -1916.12, "Y": -55.73, - "Z": -5083.47 + "Z": -5082.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825167,9 +825167,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1091.67, + "X": -1091.5, "Y": -331.52, - "Z": -5520.0 + "Z": -5519.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825335,25 +825335,25 @@ } }, "jcl/cics-genapp": { - "Directory Group Magnitude": 270.96, + "Directory Group Magnitude": 261.84, "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "96.7%", "Static: Literature & Documentation": "3.3%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "2.94%", - "Error & Exception Exposure": "53.83%", - "Tech Debt Exposure": "46.78%", - "Testing Exposure": "2.28%", + "Cognitive Load Exposure": "3.51%", + "Error & Exception Exposure": "53.66%", + "Tech Debt Exposure": "51.36%", + "Testing Exposure": "2.24%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.45%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "95.33%", + "Specification Exposure": "93.33%", "Instability Exposure": "48.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.36%", + "Documentation Exposure": "11.13%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -825370,9 +825370,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3484.9, + "X": -3485.0, "Y": 114.44, - "Z": 5492.35 + "Z": 5491.81 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -825527,9 +825527,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4070.83, + "X": -4070.92, "Y": 185.79, - "Z": 5532.65 + "Z": 5531.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825539,9 +825539,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 74, - "Coding LOC": 74, - "Documentation LOC": 0, - "Structural Magnitude": 11.08, + "Coding LOC": 68, + "Documentation LOC": 6, + "Structural Magnitude": 10.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -825551,9 +825551,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "94.14%", - "Tech Debt Exposure": "99.0%", - "Testing Exposure": "2.45%", + "Error & Exception Exposure": "87.91%", + "Tech Debt Exposure": "99.46%", + "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -825568,32 +825568,22 @@ { "Function Name": "DEFINE1", "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 12, - "End Line": 29 + "End Line": 28 }, { "Function Name": "DEFINE2", "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 37, - "End Line": 54 - }, - { - "Function Name": "CUSTDATA", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 64 + "End Line": 53 }, { "Function Name": "POLYDATA", @@ -825624,6 +825614,16 @@ "Control Flow Ratio": "0.0%", "Start Line": 30, "End Line": 36 + }, + { + "Function Name": "CUSTDATA", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 63 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -825633,9 +825633,9 @@ "Function Parameters": 0, "Function/Method Declarations": 6, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, + "High-Risk Execution Commands": 4, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -825663,7 +825663,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -825745,9 +825745,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3927.05, - "Y": 190.55, - "Z": 4957.75 + "X": -3797.65, + "Y": 192.43, + "Z": 5420.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825757,21 +825757,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 66, - "Coding LOC": 66, - "Documentation LOC": 0, - "Structural Magnitude": 9.62, + "Coding LOC": 44, + "Documentation LOC": 22, + "Structural Magnitude": 8.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.114 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "90.0%", - "Tech Debt Exposure": "91.87%", - "Testing Exposure": "2.43%", + "Cognitive Load Exposure": "5.09%", + "Error & Exception Exposure": "90.7%", + "Tech Debt Exposure": "99.92%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -825785,13 +825785,13 @@ "5. Function Analysis": [ { "Function Name": "ASMMAP", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 19, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 20, - "End Line": 38 + "End Line": 35 }, { "Function Name": "ASMDSECT", @@ -825805,23 +825805,23 @@ }, { "Function Name": "LINKMAP", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 39, - "End Line": 51 + "End Line": 46 }, { "Function Name": "COPY", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 8, - "End Line": 19 + "End Line": 15 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -825831,9 +825831,9 @@ "Function Parameters": 3, "Function/Method Declarations": 4, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 3, "I/O and Network Boundaries": 34, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -825861,7 +825861,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -825899,7 +825899,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -825946,9 +825946,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4736.6, - "Y": 169.47, - "Z": 5504.09 + "X": -4735.97, + "Y": 169.46, + "Z": 5503.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825958,9 +825958,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 158, - "Coding LOC": 152, - "Documentation LOC": 0, - "Structural Magnitude": 7.04, + "Coding LOC": 146, + "Documentation LOC": 6, + "Structural Magnitude": 6.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -825970,8 +825970,8 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "61.56%", - "Tech Debt Exposure": "26.51%", + "Error & Exception Exposure": "61.96%", + "Tech Debt Exposure": "27.71%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -826032,7 +826032,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826114,9 +826114,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3813.36, - "Y": 118.43, - "Z": 5428.05 + "X": -4613.2, + "Y": 117.53, + "Z": 4738.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826126,9 +826126,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 244, - "Coding LOC": 234, - "Documentation LOC": 0, - "Structural Magnitude": 8.68, + "Coding LOC": 228, + "Documentation LOC": 6, + "Structural Magnitude": 8.56, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -826138,8 +826138,8 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "57.91%", - "Tech Debt Exposure": "17.68%", + "Error & Exception Exposure": "58.09%", + "Tech Debt Exposure": "18.05%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -826200,7 +826200,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826282,9 +826282,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4487.12, - "Y": 161.46, - "Z": 5689.23 + "X": -3935.55, + "Y": 155.94, + "Z": 4918.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826294,9 +826294,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 284, - "Coding LOC": 274, - "Documentation LOC": 0, - "Structural Magnitude": 9.48, + "Coding LOC": 268, + "Documentation LOC": 6, + "Structural Magnitude": 9.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -826306,8 +826306,8 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "56.84%", - "Tech Debt Exposure": "15.72%", + "Error & Exception Exposure": "56.99%", + "Tech Debt Exposure": "15.97%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -826368,7 +826368,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826450,9 +826450,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4399.03, - "Y": 117.92, - "Z": 5949.41 + "X": -4885.14, + "Y": 112.41, + "Z": 4522.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826462,21 +826462,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 29, - "Documentation LOC": 0, - "Structural Magnitude": 2.78, + "Coding LOC": 23, + "Documentation LOC": 6, + "Structural Magnitude": 2.66, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.172 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.32%", - "Error & Exception Exposure": "83.93%", - "Tech Debt Exposure": "99.48%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "7.43%", + "Error & Exception Exposure": "86.8%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -826536,7 +826536,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826618,9 +826618,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3797.23, - "Y": 120.47, - "Z": 4546.12 + "X": -3797.49, + "Y": 120.48, + "Z": 4546.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826630,21 +826630,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 34, - "Coding LOC": 31, - "Documentation LOC": 0, - "Structural Magnitude": 3.02, + "Coding LOC": 25, + "Documentation LOC": 6, + "Structural Magnitude": 2.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.161 + "Raw Cognitive Density": 0.2 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.07%", - "Error & Exception Exposure": "83.04%", - "Tech Debt Exposure": "99.15%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "6.98%", + "Error & Exception Exposure": "85.81%", + "Tech Debt Exposure": "99.85%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -826704,7 +826704,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826786,9 +826786,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4638.28, - "Y": 158.43, - "Z": 5415.99 + "X": -4637.53, + "Y": 158.42, + "Z": 5415.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826798,9 +826798,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 114, - "Coding LOC": 114, - "Documentation LOC": 0, - "Structural Magnitude": 43.78, + "Coding LOC": 96, + "Documentation LOC": 18, + "Structural Magnitude": 42.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -826810,9 +826810,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.8%", - "Tech Debt Exposure": "37.14%", - "Testing Exposure": "2.58%", + "Error & Exception Exposure": "63.97%", + "Tech Debt Exposure": "46.1%", + "Testing Exposure": "2.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -826826,33 +826826,33 @@ "5. Function Analysis": [ { "Function Name": "COBL", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 44, + "Structural Impact": 3.4, + "Lines of Code (LOC)": 40, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 12, - "End Line": 55 + "End Line": 51 }, { "Function Name": "LKED", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 67, - "End Line": 82 + "End Line": 80 }, { "Function Name": "COPYLINK", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 56, - "End Line": 66 + "End Line": 62 }, { "Function Name": "LGACDB01", @@ -827172,9 +827172,9 @@ "Function Parameters": 2, "Function/Method Declarations": 34, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 49, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -827202,7 +827202,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -827284,9 +827284,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4434.08, + "X": -4433.71, "Y": 180.36, - "Z": 4171.78 + "Z": 4172.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -827296,9 +827296,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 203, - "Coding LOC": 173, - "Documentation LOC": 0, - "Structural Magnitude": 5.96, + "Coding LOC": 166, + "Documentation LOC": 7, + "Structural Magnitude": 5.82, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -827308,12 +827308,12 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "56.38%", + "Error & Exception Exposure": "56.61%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "13.37%", + "State Flux Exposure": "13.48%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -827370,7 +827370,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -827452,9 +827452,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4181.02, - "Y": 180.44, - "Z": 5680.84 + "X": -4935.27, + "Y": 180.87, + "Z": 5288.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -827464,9 +827464,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 148, - "Coding LOC": 138, - "Documentation LOC": 0, - "Structural Magnitude": 7.76, + "Coding LOC": 135, + "Documentation LOC": 3, + "Structural Magnitude": 7.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -827476,7 +827476,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.54%", + "Error & Exception Exposure": "62.78%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", @@ -827538,7 +827538,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -827620,9 +827620,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4360.7, + "X": -4360.41, "Y": 194.49, - "Z": 4971.35 + "Z": 4971.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -827632,9 +827632,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 1241, - "Coding LOC": 1175, - "Documentation LOC": 0, - "Structural Magnitude": 55.9, + "Coding LOC": 1131, + "Documentation LOC": 44, + "Structural Magnitude": 53.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -827644,9 +827644,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "58.39%", - "Tech Debt Exposure": "9.77%", - "Testing Exposure": "2.32%", + "Error & Exception Exposure": "51.29%", + "Tech Debt Exposure": "9.86%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -827671,92 +827671,92 @@ { "Function Name": "CREATE", "Structural Impact": 4.0, - "Lines of Code (LOC)": 80, + "Lines of Code (LOC)": 73, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 11, - "End Line": 90 + "End Line": 83 }, { "Function Name": "CRTABS", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 51, + "Structural Impact": 3.4, + "Lines of Code (LOC)": 47, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 91, - "End Line": 141 + "End Line": 137 }, { "Function Name": "CRTABS", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 48, + "Structural Impact": 3.1, + "Lines of Code (LOC)": 43, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 294, - "End Line": 341 + "End Line": 336 }, { "Function Name": "CRTABS", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 42, + "Structural Impact": 2.9, + "Lines of Code (LOC)": 38, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 142, - "End Line": 183 + "End Line": 179 }, { "Function Name": "CRTABS", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 37, + "Structural Impact": 2.7, + "Lines of Code (LOC)": 33, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 184, - "End Line": 220 + "End Line": 216 }, { "Function Name": "CRTABS", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 38, + "Structural Impact": 2.7, + "Lines of Code (LOC)": 33, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 256, - "End Line": 293 + "End Line": 288 }, { "Function Name": "CRTABS", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 35, + "Structural Impact": 2.6, + "Lines of Code (LOC)": 32, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 221, - "End Line": 255 + "Start Line": 342, + "End Line": 373 }, { "Function Name": "CRTABS", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 33, + "Structural Impact": 2.5, + "Lines of Code (LOC)": 30, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 342, - "End Line": 374 + "Start Line": 221, + "End Line": 250 }, { "Function Name": "CRGRACC", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 29, + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 375, - "End Line": 403 + "End Line": 401 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -827766,9 +827766,9 @@ "Function Parameters": 0, "Function/Method Declarations": 10, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 8, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 10, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 54, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -827796,7 +827796,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -827878,9 +827878,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5104.63, + "X": -5103.57, "Y": 141.85, - "Z": 5072.28 + "Z": 5071.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -827890,21 +827890,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 44, - "Coding LOC": 44, - "Documentation LOC": 0, - "Structural Magnitude": 3.58, + "Coding LOC": 37, + "Documentation LOC": 7, + "Structural Magnitude": 3.44, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.114 + "Raw Cognitive Density": 0.135 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.09%", - "Error & Exception Exposure": "78.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "5.51%", + "Error & Exception Exposure": "80.55%", + "Tech Debt Exposure": "97.29%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -827964,7 +827964,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828002,7 +828002,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -828046,9 +828046,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4928.87, - "Y": 169.65, - "Z": 4677.35 + "X": -3665.6, + "Y": 166.64, + "Z": 4866.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828058,20 +828058,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 52, - "Coding LOC": 51, - "Documentation LOC": 0, - "Structural Magnitude": 7.62, + "Coding LOC": 41, + "Documentation LOC": 10, + "Structural Magnitude": 7.32, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.122 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.61%", - "Tech Debt Exposure": "99.71%", + "Cognitive Load Exposure": "5.25%", + "Error & Exception Exposure": "85.81%", + "Tech Debt Exposure": "99.96%", "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -828097,22 +828097,22 @@ { "Function Name": "DEFDREP", "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 19, - "End Line": 36 + "End Line": 35 }, { "Function Name": "DELWREP", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 18 + "End Line": 15 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -828122,9 +828122,9 @@ "Function Parameters": 1, "Function/Method Declarations": 3, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828152,7 +828152,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828234,9 +828234,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3821.53, + "X": -3821.99, "Y": 188.29, - "Z": 5518.54 + "Z": 5517.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828246,21 +828246,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 41, - "Coding LOC": 40, - "Documentation LOC": 0, - "Structural Magnitude": 4.5, + "Coding LOC": 31, + "Documentation LOC": 9, + "Structural Magnitude": 4.22, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.125 + "Raw Cognitive Density": 0.161 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.31%", - "Error & Exception Exposure": "87.54%", - "Tech Debt Exposure": "99.64%", - "Testing Exposure": "2.4%", + "Cognitive Load Exposure": "6.07%", + "Error & Exception Exposure": "90.84%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828284,13 +828284,13 @@ }, { "Function Name": "DELWREP", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 18 + "End Line": 15 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -828330,7 +828330,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828412,9 +828412,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3536.36, + "X": -3536.73, "Y": 136.04, - "Z": 5273.87 + "Z": 5273.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828424,29 +828424,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 15, - "Coding LOC": 15, - "Documentation LOC": 0, - "Structural Magnitude": 2.2, + "Coding LOC": 12, + "Documentation LOC": 3, + "Structural Magnitude": 2.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.12%", - "Error & Exception Exposure": "91.01%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.63%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "9.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -828498,7 +828498,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828580,9 +828580,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4721.3, + "X": -4720.85, "Y": 173.98, - "Z": 4044.9 + "Z": 4045.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828592,21 +828592,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 18, - "Coding LOC": 18, - "Documentation LOC": 0, - "Structural Magnitude": 1.96, + "Coding LOC": 15, + "Documentation LOC": 3, + "Structural Magnitude": 1.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.278 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.2%", - "Error & Exception Exposure": "89.39%", + "Cognitive Load Exposure": "11.12%", + "Error & Exception Exposure": "91.01%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828666,7 +828666,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828748,9 +828748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4336.44, + "X": -4336.2, "Y": 160.29, - "Z": 4559.8 + "Z": 4559.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828760,21 +828760,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 39, - "Coding LOC": 39, - "Documentation LOC": 0, - "Structural Magnitude": 26.48, + "Coding LOC": 35, + "Documentation LOC": 4, + "Structural Magnitude": 26.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.128 + "Raw Cognitive Density": 0.143 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.37%", - "Error & Exception Exposure": "79.78%", + "Cognitive Load Exposure": "5.67%", + "Error & Exception Exposure": "81.35%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.81%", + "Testing Exposure": "2.88%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828788,13 +828788,13 @@ "5. Function Analysis": [ { "Function Name": "ITPSTL", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 16 + "End Line": 15 }, { "Function Name": "ONCICS", @@ -829054,7 +829054,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829136,9 +829136,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3718.26, - "Y": 143.65, - "Z": 4950.73 + "X": -4981.17, + "Y": 146.68, + "Z": 4761.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829148,9 +829148,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 81, - "Coding LOC": 81, - "Documentation LOC": 0, - "Structural Magnitude": 7.62, + "Coding LOC": 72, + "Documentation LOC": 9, + "Structural Magnitude": 7.44, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829160,7 +829160,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "69.04%", + "Error & Exception Exposure": "70.69%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", @@ -829222,7 +829222,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829304,9 +829304,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4721.58, - "Y": 166.4, - "Z": 5899.25 + "X": -5060.2, + "Y": 165.65, + "Z": 5530.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829316,29 +829316,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 11, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Coding LOC": 8, + "Documentation LOC": 3, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.455 + "Raw Cognitive Density": 0.625 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "93.17%", + "Error & Exception Exposure": "94.75%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.82%", + "Testing Exposure": "1.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "8.74%", + "Documentation Exposure": "6.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829390,7 +829390,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829472,9 +829472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4864.51, - "Y": 191.88, - "Z": 4596.56 + "X": -4377.31, + "Y": 197.39, + "Z": 6023.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829484,29 +829484,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 13, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 2.76, + "Coding LOC": 10, + "Documentation LOC": 3, + "Structural Magnitude": 2.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", + "Error & Exception Exposure": "93.7%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.16%", + "Testing Exposure": "1.7%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "10.33%", + "Documentation Exposure": "7.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829558,7 +829558,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829640,9 +829640,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4620.28, - "Y": 166.5, - "Z": 4613.86 + "X": -4500.67, + "Y": 171.04, + "Z": 5611.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829652,9 +829652,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 114, - "Coding LOC": 114, - "Documentation LOC": 0, - "Structural Magnitude": 9.48, + "Coding LOC": 105, + "Documentation LOC": 9, + "Structural Magnitude": 9.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829664,8 +829664,8 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "64.67%", - "Tech Debt Exposure": "37.14%", + "Error & Exception Exposure": "65.66%", + "Tech Debt Exposure": "41.17%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -829726,7 +829726,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829808,9 +829808,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5044.13, - "Y": 121.47, - "Z": 5718.31 + "X": -4158.09, + "Y": 112.16, + "Z": 4391.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829820,21 +829820,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -829894,7 +829894,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829976,9 +829976,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4909.94, - "Y": 135.32, - "Z": 5116.45 + "X": -4083.18, + "Y": 128.79, + "Z": 4315.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829988,9 +829988,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 99, - "Coding LOC": 99, - "Documentation LOC": 0, - "Structural Magnitude": 7.98, + "Coding LOC": 80, + "Documentation LOC": 19, + "Structural Magnitude": 7.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -830002,7 +830002,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830017,32 +830017,32 @@ { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 14, - "End Line": 35 + "End Line": 32 }, { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 36, - "End Line": 57 + "End Line": 54 }, { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 58, - "End Line": 79 + "End Line": 76 }, { "Function Name": "LS2WS", @@ -830092,7 +830092,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830174,9 +830174,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4192.39, - "Y": 120.44, - "Z": 4344.58 + "X": -3944.93, + "Y": 127.58, + "Z": 5949.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830186,21 +830186,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830260,7 +830260,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830342,9 +830342,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4828.4, + "X": -4827.27, "Y": 157.76, - "Z": 4844.7 + "Z": 4844.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830354,9 +830354,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 122, - "Coding LOC": 122, - "Documentation LOC": 0, - "Structural Magnitude": 9.94, + "Coding LOC": 99, + "Documentation LOC": 23, + "Structural Magnitude": 9.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -830367,8 +830367,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "72.78%", - "Testing Exposure": "2.34%", + "Tech Debt Exposure": "85.73%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830383,42 +830383,42 @@ { "Function Name": "LS2WSM", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 15, - "End Line": 36 + "End Line": 33 }, { "Function Name": "LS2WSH", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 37, - "End Line": 58 + "End Line": 55 }, { "Function Name": "LS2WSE", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 59, - "End Line": 80 + "End Line": 77 }, { "Function Name": "LS2WSB", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 81, - "End Line": 102 + "End Line": 99 }, { "Function Name": "LS2WSB", @@ -830468,7 +830468,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830550,9 +830550,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3946.02, - "Y": 149.23, - "Z": 5770.29 + "X": -5234.49, + "Y": 148.16, + "Z": 4735.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830562,21 +830562,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830636,7 +830636,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830718,9 +830718,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4099.28, - "Y": 144.55, - "Z": 4314.25 + "X": -4170.79, + "Y": 150.66, + "Z": 5506.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830730,9 +830730,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 99, - "Coding LOC": 99, - "Documentation LOC": 0, - "Structural Magnitude": 7.98, + "Coding LOC": 80, + "Documentation LOC": 19, + "Structural Magnitude": 7.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -830744,7 +830744,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830759,32 +830759,32 @@ { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 14, - "End Line": 35 + "End Line": 32 }, { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 36, - "End Line": 57 + "End Line": 54 }, { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 58, - "End Line": 79 + "End Line": 76 }, { "Function Name": "LS2WS", @@ -830834,7 +830834,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830916,9 +830916,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5196.16, - "Y": 127.29, - "Z": 4843.37 + "X": -3518.66, + "Y": 121.51, + "Z": 4733.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830928,21 +830928,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "98.93%", - "Testing Exposure": "2.33%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831002,7 +831002,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -831084,9 +831084,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3518.99, - "Y": 191.49, - "Z": 4657.21 + "X": -4700.8, + "Y": 201.26, + "Z": 5889.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831096,21 +831096,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "98.93%", - "Testing Exposure": "2.33%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831170,7 +831170,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -841729,9 +841729,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5989.2, + "X": 5988.55, "Y": -237.07, - "Z": -7861.72 + "Z": -7860.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841886,9 +841886,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6718.08, + "X": 6717.43, "Y": -220.86, - "Z": -7447.64 + "Z": -7446.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842043,9 +842043,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5656.51, + "X": 5655.86, "Y": -230.93, - "Z": -7304.82 + "Z": -7304.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842200,9 +842200,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5598.05, + "X": 5597.39, "Y": -231.03, - "Z": -7702.27 + "Z": -7701.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842368,9 +842368,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6068.89, + "X": 6068.24, "Y": -193.38, - "Z": -7169.24 + "Z": -7168.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842525,9 +842525,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6916.1, + "X": 6915.45, "Y": -200.35, - "Z": -7588.08 + "Z": -7587.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842693,9 +842693,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6234.01, + "X": 6233.35, "Y": -189.0, - "Z": -7907.54 + "Z": -7906.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842850,9 +842850,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5983.91, + "X": 5983.26, "Y": -240.46, - "Z": -7405.64 + "Z": -7404.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843007,9 +843007,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6232.31, + "X": 6231.66, "Y": -208.54, - "Z": -7523.12 + "Z": -7522.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843164,9 +843164,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5776.87, + "X": 5776.22, "Y": -209.72, - "Z": -7603.27 + "Z": -7602.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843321,9 +843321,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6471.53, + "X": 6470.88, "Y": -203.73, - "Z": -7068.3 + "Z": -7067.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843478,9 +843478,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6624.06, + "X": 6623.41, "Y": -223.68, - "Z": -7948.64 + "Z": -7947.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843635,9 +843635,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6457.26, + "X": 6456.61, "Y": -203.78, - "Z": -8173.63 + "Z": -8172.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843813,9 +843813,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5833.15, + "X": 5832.5, "Y": -185.31, - "Z": -6886.15 + "Z": -6885.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843981,9 +843981,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6394.22, + "X": 6393.56, "Y": -205.22, - "Z": -6770.85 + "Z": -6770.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850709,32 +850709,1325 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "spock.lang.*", + "spock.lang.Snapshotter" + ] + }, + "groovy/spock_core_groovy/spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy": { + "1. Artifact Identity": { + "Filename": "spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy", + "Path": "groovy/spock_core_groovy/spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy", + "Language": "Groovy", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" + }, + "2. Topological Coordinates": { + "X": 4112.72, + "Y": 249.89, + "Z": 7768.96 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 38, + "Coding LOC": 29, + "Documentation LOC": 3, + "Structural Magnitude": 9.48, + "Control Flow Ratio": "13.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.621 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "29.62%", + "Error & Exception Exposure": "76.48%", + "Tech Debt Exposure": "99.48%", + "Testing Exposure": "2.44%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "88.47%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "44.95%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "visit", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 23, + "End Line": 36 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 13, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 3, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 3, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 9, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 2, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 15, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 1, + "Design Snake Case": 3, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 9, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "groovy.transform.CompileStatic", + "java.lang.management.ManagementFactory", + "javax.management.MBeanServerConnection", + "org.codehaus.groovy.ast.ASTNode", + "org.codehaus.groovy.control.CompilePhase", + "org.codehaus.groovy.control.SourceUnit", + "org.codehaus.groovy.transform.ASTTransformation", + "org.codehaus.groovy.transform.GroovyASTTransformation", + "org.codehaus.groovy.util.ReleaseInfo" + ] + } + } + }, + "kotlin/okhttp": { + "Directory Group Magnitude": 210.04, + "File Count": 6, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "83.3%", + "Static: Literature & Documentation": "16.7%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "10.2%", + "Error & Exception Exposure": "23.82%", + "Tech Debt Exposure": "48.29%", + "Testing Exposure": "14.39%", + "API Exposure": "1.83%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "33.23%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "58.89%", + "Instability Exposure": "41.67%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "12.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "kotlin/okhttp/LICENSE.txt": { + "1. Artifact Identity": { + "Filename": "LICENSE.txt", + "Path": "kotlin/okhttp/LICENSE.txt", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" + }, + "2. Topological Coordinates": { + "X": -9279.23, + "Y": 47.61, + "Z": -4878.33 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 203, + "Coding LOC": 0, + "Documentation LOC": 169, + "Structural Magnitude": 4.06, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "kotlin/okhttp/Call.kt": { + "1. Artifact Identity": { + "Filename": "Call.kt", + "Path": "kotlin/okhttp/Call.kt", + "Language": "Kotlin", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .kt)" + }, + "2. Topological Coordinates": { + "X": -9867.52, + "Y": 78.52, + "Z": -4243.29 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 187, + "Coding LOC": 29, + "Documentation LOC": 142, + "Structural Magnitude": 20.68, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 2, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.241 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.78%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.7%", + "API Exposure": "2.65%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "tag", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 134 + }, + { + "Function Name": "tag", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 147, + "End Line": 150 + }, + { + "Function Name": "enqueue", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 69 + }, + { + "Function Name": "addEventListener", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 102 + }, + { + "Function Name": "tag", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 110, + "End Line": 110 + }, + { + "Function Name": "tag", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 118 + }, + { + "Function Name": "newCall", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 184, + "End Line": 184 + }, + { + "Function Name": "clone", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 181, + "End Line": 185 + }, + { + "Function Name": "request", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 28 + }, + { + "Function Name": "execute", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 56 + }, + { + "Function Name": "cancel", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 72, + "End Line": 72 + }, + { + "Function Name": "isExecuted", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 78, + "End Line": 78 + }, + { + "Function Name": "isCanceled", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 80, + "End Line": 80 + }, + { + "Function Name": "timeout", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 89 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 22, + "Function Parameters": 14, + "Function/Method Declarations": 14, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 17, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 8, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 23, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 9, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "kotlin.reflect.KClass", + "okio.IOException", + "okio.Timeout" + ] + }, + "kotlin/okhttp/Dispatcher.kt": { + "1. Artifact Identity": { + "Filename": "Dispatcher.kt", + "Path": "kotlin/okhttp/Dispatcher.kt", + "Language": "Kotlin", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .kt)" + }, + "2. Topological Coordinates": { + "X": -9646.59, + "Y": 89.06, + "Z": -4693.85 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 299, + "Coding LOC": 182, + "Documentation LOC": 76, + "Structural Magnitude": 150.74, + "Control Flow Ratio": "54.3%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.111 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "40.45%", + "Error & Exception Exposure": "71.34%", + "Tech Debt Exposure": "89.76%", + "Testing Exposure": "80.0%", + "API Exposure": "3.23%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.85%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "16.9%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "promoteAndExecute", + "Structural Impact": 59.0, + "Lines of Code (LOC)": 99, + "Control Flow Branches": 26, + "Input Parameters": 3, + "Control Flow Ratio": "86.7%", + "Start Line": 163, + "End Line": 261 + }, + { + "Function Name": "findExistingCallWithHost", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "63.6%", + "Start Line": 127, + "End Line": 135 + }, + { + "Function Name": "cancelAll", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 141, + "End Line": 152 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 121 + }, + { + "Function Name": "enqueue", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 123, + "End Line": 125 + }, + { + "Function Name": "finished", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 270 + }, + { + "Function Name": "finished", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 273, + "End Line": 275 + }, + { + "Function Name": "executed", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 264, + "End Line": 265 + }, + { + "Function Name": "runningCallsCount", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 288, + "End Line": 296 + }, + { + "Function Name": "queuedCalls", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 278, + "End Line": 279 + }, + { + "Function Name": "runningCalls", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 282, + "End Line": 283 + }, + { + "Function Name": "queuedCallsCount", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 285, + "End Line": 286 + }, + { + "Function Name": "executorService", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 297, + "End Line": 298 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 38, + "Sequential Logic Declarations": 32, + "Function Parameters": 13, + "Function/Method Declarations": 13, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 10, + "State Mutations / Variable Reassignments": 48, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 17, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 16, + "Generic Type Abstractions": 7, + "Collection Iterators / Comprehensions": 2, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 11, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 2, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 6, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 16, + "Immutable Data Declarations": 16, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 16, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 168, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 29, + "Design Camel Case": 19, + "Design Snake Case": 7, + "Design Pascal Case": 3, + "Design Upper Case": 0, + "Design Short Vars": 1, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 8, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 2, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 11, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "java.util.ArrayDeque", + "java.util.concurrent.ExecutorService", + "java.util.concurrent.SynchronousQueue", + "java.util.concurrent.ThreadPoolExecutor", + "java.util.concurrent.TimeUnit", + "okhttp3.internal.assertLockNotHeld", + "okhttp3.internal.connection.RealCall", + "okhttp3.internal.connection.RealCall.AsyncCall", + "okhttp3.internal.okHttpName", + "okhttp3.internal.threadFactory", + "okhttp3.internal.unmodifiable" + ] + }, + "kotlin/okhttp/OkHttp.android.kt": { + "1. Artifact Identity": { + "Filename": "OkHttp.android.kt", + "Path": "kotlin/okhttp/OkHttp.android.kt", + "Language": "Kotlin", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .kt)" + }, + "2. Topological Coordinates": { + "X": -10137.45, + "Y": 139.32, + "Z": -4784.17 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 40, + "Coding LOC": 13, + "Documentation LOC": 23, + "Structural Magnitude": 8.36, + "Control Flow Ratio": "14.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.538 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "71.58%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.11%", + "API Exposure": "2.96%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.56%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "86.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "31.18%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "initialize", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 33, + "End Line": 38 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 3, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 1, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 2, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 7, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "android.content.Context", + "okhttp3.internal.CONST_VERSION", + "okhttp3.internal.platform.PlatformRegistry" + ] + }, + "kotlin/okhttp/OkHttp.jvm.kt": { + "1. Artifact Identity": { + "Filename": "OkHttp.jvm.kt", + "Path": "kotlin/okhttp/OkHttp.jvm.kt", + "Language": "Kotlin", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .kt)" + }, + "2. Topological Coordinates": { + "X": -9608.21, + "Y": 130.04, + "Z": -4832.8 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 24, + "Coding LOC": 6, + "Documentation LOC": 15, + "Structural Magnitude": 14.12, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.5 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.92%", + "API Exposure": "2.15%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "40.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "14.71%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 1, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 1, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.*", - "spock.lang.Snapshotter" + "okhttp3.internal.CONST_VERSION" ] }, - "groovy/spock_core_groovy/spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy": { + "kotlin/okhttp/OkHttp.kt": { "1. Artifact Identity": { - "Filename": "spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy", - "Path": "groovy/spock_core_groovy/spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy", - "Language": "Groovy", + "Filename": "OkHttp.kt", + "Path": "kotlin/okhttp/OkHttp.kt", + "Language": "Kotlin", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "kotlin", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .kt)" }, "2. Topological Coordinates": { - "X": 4112.72, - "Y": 249.89, - "Z": 7768.96 + "X": -9441.88, + "Y": 34.03, + "Z": -4166.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850743,70 +852036,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 38, - "Coding LOC": 29, - "Documentation LOC": 3, - "Structural Magnitude": 9.48, - "Control Flow Ratio": "13.3%", + "Total LOC": 36, + "Coding LOC": 4, + "Documentation LOC": 30, + "Structural Magnitude": 12.08, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.621 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "29.62%", - "Error & Exception Exposure": "76.48%", - "Tech Debt Exposure": "99.48%", - "Testing Exposure": "2.44%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "88.47%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.95%", + "Documentation Exposure": "3.18%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "visit", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 23, - "End Line": 36 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 13, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 3, + "Global State Dependencies": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 9, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -850825,13 +852107,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 1, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 2, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -850848,15 +852130,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, - "Design Camel Case": 1, - "Design Snake Case": 3, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -850880,44 +852162,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 9, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "groovy.transform.CompileStatic", - "java.lang.management.ManagementFactory", - "javax.management.MBeanServerConnection", - "org.codehaus.groovy.ast.ASTNode", - "org.codehaus.groovy.control.CompilePhase", - "org.codehaus.groovy.control.SourceUnit", - "org.codehaus.groovy.transform.ASTTransformation", - "org.codehaus.groovy.transform.GroovyASTTransformation", - "org.codehaus.groovy.util.ReleaseInfo" - ] + "9. Extracted Dependencies": [] } } }, "jcl/cobol-programming-course": { - "Directory Group Magnitude": 211.82, + "Directory Group Magnitude": 204.5, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "9.91%", - "Error & Exception Exposure": "69.66%", - "Tech Debt Exposure": "80.67%", - "Testing Exposure": "2.29%", + "Cognitive Load Exposure": "6.63%", + "Error & Exception Exposure": "71.93%", + "Tech Debt Exposure": "81.27%", + "Testing Exposure": "2.13%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "92.25%", + "Specification Exposure": "83.1%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.84%", + "Documentation Exposure": "50.35%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -850934,9 +852206,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3458.55, - "Y": -255.45, - "Z": -6220.29 + "X": 3457.91, + "Y": -255.4, + "Z": -6219.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850946,21 +852218,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 27, - "Coding LOC": 26, - "Documentation LOC": 0, - "Structural Magnitude": 6.62, + "Coding LOC": 19, + "Documentation LOC": 7, + "Structural Magnitude": 6.38, "Control Flow Ratio": "37.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.308 + "Raw Cognitive Density": 0.421 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.19%", - "Error & Exception Exposure": "85.33%", + "Cognitive Load Exposure": "14.81%", + "Error & Exception Exposure": "88.86%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.49%", + "Testing Exposure": "2.56%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -850968,7 +852240,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "54.34%", + "Documentation Exposure": "55.2%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -850984,13 +852256,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851114,9 +852386,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3086.31, - "Y": -337.11, - "Z": -5892.57 + "X": 3086.08, + "Y": -336.99, + "Z": -5892.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851126,29 +852398,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851164,13 +852436,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851295,9 +852567,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2960.45, - "Y": -126.05, - "Z": -6760.26 + "X": 2960.33, + "Y": -126.12, + "Z": -6759.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851307,29 +852579,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851345,13 +852617,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851476,9 +852748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3715.61, - "Y": -161.9, - "Z": -6218.37 + "X": 3714.79, + "Y": -161.91, + "Z": -6217.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851488,29 +852760,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851526,13 +852798,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851657,9 +852929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2586.23, - "Y": -308.28, - "Z": -6120.14 + "X": 2586.33, + "Y": -308.2, + "Z": -6119.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851669,29 +852941,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851707,13 +852979,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851838,9 +853110,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3462.66, - "Y": -77.62, - "Z": -7007.83 + "X": 3462.11, + "Y": -77.74, + "Z": -7006.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851850,29 +853122,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851888,13 +853160,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852019,9 +853291,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3407.48, - "Y": -308.8, - "Z": -5923.8 + "X": 3406.97, + "Y": -308.71, + "Z": -5923.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852031,29 +853303,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852069,13 +853341,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852200,9 +853472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2632.1, - "Y": -208.15, - "Z": -6861.89 + "X": 2632.18, + "Y": -208.16, + "Z": -6860.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852212,29 +853484,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852250,13 +853522,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852381,9 +853653,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3823.98, - "Y": -81.03, - "Z": -6558.29 + "X": 3823.15, + "Y": -81.1, + "Z": -6557.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852393,29 +853665,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852431,13 +853703,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852562,9 +853834,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2754.52, - "Y": -383.84, - "Z": -5743.24 + "X": 2754.45, + "Y": -383.72, + "Z": -5742.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852574,29 +853846,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852612,13 +853884,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852743,9 +854015,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3032.94, - "Y": -3.27, - "Z": -7019.1 + "X": 3032.66, + "Y": -3.37, + "Z": -7017.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852755,29 +854027,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852793,13 +854065,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852924,9 +854196,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3772.12, - "Y": -219.8, - "Z": -6029.15 + "X": 3771.39, + "Y": -219.77, + "Z": -6028.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852936,29 +854208,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852974,13 +854246,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853105,9 +854377,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2433.54, - "Y": -308.5, - "Z": -6342.0 + "X": 2433.69, + "Y": -308.45, + "Z": -6341.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853117,29 +854389,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853155,13 +854427,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853286,9 +854558,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3390.09, - "Y": 13.45, - "Z": -7121.32 + "X": 3389.66, + "Y": 13.35, + "Z": -7120.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853298,29 +854570,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 6.02, + "Coding LOC": 12, + "Documentation LOC": 4, + "Structural Magnitude": 5.84, "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.83%", - "Error & Exception Exposure": "90.47%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.63%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.6%", + "Testing Exposure": "2.16%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.52%", + "Documentation Exposure": "56.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853336,13 +854608,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 3, - "End Line": 8 + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853466,9 +854738,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3645.56, - "Y": -310.96, - "Z": -5798.52 + "X": 3645.0, + "Y": -310.9, + "Z": -5798.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853478,29 +854750,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 6.02, + "Coding LOC": 12, + "Documentation LOC": 4, + "Structural Magnitude": 5.84, "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.83%", - "Error & Exception Exposure": "90.47%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.63%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.6%", + "Testing Exposure": "2.16%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.52%", + "Documentation Exposure": "56.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853516,13 +854788,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 3, - "End Line": 8 + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853646,9 +854918,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2987.25, - "Y": -300.32, - "Z": -6352.01 + "X": 2987.24, + "Y": -300.21, + "Z": -6351.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853658,21 +854930,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 30, - "Documentation LOC": 0, - "Structural Magnitude": 10.9, + "Coding LOC": 21, + "Documentation LOC": 9, + "Structural Magnitude": 10.52, "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.367 + "Raw Cognitive Density": 0.524 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.43%", - "Error & Exception Exposure": "83.48%", + "Cognitive Load Exposure": "20.17%", + "Error & Exception Exposure": "87.82%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.57%", + "Testing Exposure": "2.69%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853680,7 +854952,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.0%", + "Documentation Exposure": "50.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853696,23 +854968,23 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 12, - "End Line": 18 + "End Line": 17 }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853837,9 +855109,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3734.57, - "Y": -43.46, - "Z": -6873.79 + "X": 3733.87, + "Y": -43.57, + "Z": -6872.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853849,29 +855121,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853887,13 +855159,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -854018,9 +855290,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3178.38, - "Y": -395.85, - "Z": -5753.04 + "X": 3178.04, + "Y": -395.74, + "Z": -5752.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854030,29 +855302,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854068,13 +855340,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -854199,9 +855471,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2448.36, - "Y": -393.01, - "Z": -5738.79 + "X": 2448.14, + "Y": -392.97, + "Z": -5738.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854211,29 +855483,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 12, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 1.92, + "Coding LOC": 7, + "Documentation LOC": 4, + "Structural Magnitude": 1.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.455 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.76%", + "Testing Exposure": "1.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "37.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854367,9 +855639,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2384.62, - "Y": -132.96, - "Z": -7072.58 + "X": 2384.44, + "Y": -132.97, + "Z": -7071.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854379,29 +855651,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 21, - "Coding LOC": 20, - "Documentation LOC": 0, - "Structural Magnitude": 2.0, + "Coding LOC": 14, + "Documentation LOC": 6, + "Structural Magnitude": 1.88, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.25 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.34%", - "Error & Exception Exposure": "88.34%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.27%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.25%", + "Documentation Exposure": "60.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854537,9 +855809,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3174.04, - "Y": 18.89, - "Z": -7522.27 + "X": 3173.69, + "Y": 18.85, + "Z": -7521.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854549,29 +855821,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 12, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 1.92, + "Coding LOC": 7, + "Documentation LOC": 4, + "Structural Magnitude": 1.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.455 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.76%", + "Testing Exposure": "1.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "37.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854705,9 +855977,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2282.68, - "Y": -312.24, - "Z": -6325.47 + "X": 3709.34, + "Y": 57.21, + "Z": -7338.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854717,21 +855989,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Coding LOC": 17, + "Documentation LOC": 6, + "Structural Magnitude": 2.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854739,7 +856011,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "59.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854875,9 +856147,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3888.78, - "Y": -347.4, - "Z": -5560.35 + "X": 3888.3, + "Y": -347.38, + "Z": -5559.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854887,29 +856159,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 12, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 1.92, + "Coding LOC": 7, + "Documentation LOC": 4, + "Structural Magnitude": 1.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.455 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.76%", + "Testing Exposure": "1.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "37.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855043,9 +856315,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3707.22, - "Y": 36.54, - "Z": -7180.48 + "X": 3370.11, + "Y": -393.28, + "Z": -5449.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855055,21 +856327,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Coding LOC": 17, + "Documentation LOC": 6, + "Structural Magnitude": 2.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855077,7 +856349,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "59.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855213,9 +856485,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3582.81, - "Y": -88.77, - "Z": -6699.38 + "X": 3582.05, + "Y": -88.87, + "Z": -6698.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855225,21 +856497,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 23, - "Coding LOC": 22, - "Documentation LOC": 0, - "Structural Magnitude": 6.24, + "Coding LOC": 15, + "Documentation LOC": 7, + "Structural Magnitude": 6.0, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.364 + "Raw Cognitive Density": 0.533 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.3%", - "Error & Exception Exposure": "87.31%", - "Tech Debt Exposure": "99.96%", - "Testing Exposure": "2.52%", + "Cognitive Load Exposure": "20.72%", + "Error & Exception Exposure": "91.01%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.62%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855247,7 +856519,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "59.41%", + "Documentation Exposure": "61.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855263,13 +856535,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -855394,9 +856666,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3336.24, - "Y": -380.56, - "Z": -5356.83 + "X": 2245.73, + "Y": -320.15, + "Z": -6072.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855406,20 +856678,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 38, - "Coding LOC": 37, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 33, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.135 + "Raw Cognitive Density": 0.152 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.51%", + "Cognitive Load Exposure": "5.85%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "98.69%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -855428,7 +856700,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.89%", + "Documentation Exposure": "43.47%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855562,9 +856834,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3183.38, + "X": 3183.03, "Y": -207.64, - "Z": -6293.76 + "Z": -6293.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855574,21 +856846,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 61, - "Coding LOC": 60, - "Documentation LOC": 0, - "Structural Magnitude": 13.0, + "Coding LOC": 48, + "Documentation LOC": 12, + "Structural Magnitude": 12.76, "Control Flow Ratio": "13.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.183 + "Raw Cognitive Density": 0.229 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.57%", - "Error & Exception Exposure": "87.13%", - "Tech Debt Exposure": "77.73%", - "Testing Exposure": "2.47%", + "Cognitive Load Exposure": "7.75%", + "Error & Exception Exposure": "83.41%", + "Tech Debt Exposure": "98.62%", + "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855596,7 +856868,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.08%", + "Documentation Exposure": "29.34%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855638,9 +856910,9 @@ "Function Parameters": 2, "Function/Method Declarations": 3, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 33, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855706,7 +856978,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -855761,9 +857033,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4120.83, - "Y": -44.84, - "Z": -6536.95 + "X": 4120.28, + "Y": -44.86, + "Z": -6536.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855773,29 +857045,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 18, - "Coding LOC": 17, - "Documentation LOC": 0, - "Structural Magnitude": 1.94, + "Coding LOC": 13, + "Documentation LOC": 4, + "Structural Magnitude": 1.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.294 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.73%", - "Error & Exception Exposure": "89.93%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.09%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.11%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.88%", + "Documentation Exposure": "59.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855931,9 +857203,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2320.78, - "Y": -192.83, - "Z": -6627.91 + "X": 2320.73, + "Y": -192.82, + "Z": -6627.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855943,21 +857215,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 37, - "Coding LOC": 36, - "Documentation LOC": 0, - "Structural Magnitude": 4.32, + "Coding LOC": 32, + "Documentation LOC": 4, + "Structural Magnitude": 4.24, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.139 + "Raw Cognitive Density": 0.156 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.59%", - "Error & Exception Exposure": "88.99%", - "Tech Debt Exposure": "97.7%", - "Testing Exposure": "2.41%", + "Cognitive Load Exposure": "5.96%", + "Error & Exception Exposure": "90.47%", + "Tech Debt Exposure": "98.93%", + "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855965,7 +857237,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.66%", + "Documentation Exposure": "44.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -856115,9 +857387,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2134.41, - "Y": -300.17, - "Z": -6603.77 + "X": 4020.52, + "Y": -1.72, + "Z": -7116.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856127,29 +857399,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 11, - "Coding LOC": 10, - "Documentation LOC": 0, - "Structural Magnitude": 1.4, + "Coding LOC": 5, + "Documentation LOC": 5, + "Structural Magnitude": 1.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "93.7%", + "Error & Exception Exposure": "96.23%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.64%", + "Testing Exposure": "0.87%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.76%", + "Documentation Exposure": "27.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -856285,9 +857557,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2821.73, - "Y": -425.46, - "Z": -5628.96 + "X": 2821.44, + "Y": -425.42, + "Z": -5628.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856476,9 +857748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3983.79, + "X": 3983.23, "Y": -259.36, - "Z": -5802.22 + "Z": -5801.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856488,21 +857760,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.42, + "Coding LOC": 15, + "Documentation LOC": 1, + "Structural Magnitude": 2.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", + "Cognitive Load Exposure": "11.12%", + "Error & Exception Exposure": "91.01%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856510,19 +857782,19 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.52%", + "Documentation Exposure": "69.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "DSNUPROC", "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 3, - "End Line": 16 + "End Line": 15 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -856647,9 +857919,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2668.96, - "Y": -130.56, - "Z": -6848.68 + "X": 2668.93, + "Y": -130.61, + "Z": -6847.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856659,29 +857931,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -856697,13 +857969,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -856828,9 +858100,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3023.08, - "Y": -483.89, - "Z": -5340.15 + "X": 3022.77, + "Y": -483.84, + "Z": -5339.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856840,29 +858112,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 1.22, + "Coding LOC": 2, + "Documentation LOC": 4, + "Structural Magnitude": 1.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 2.5 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "11.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -856996,9 +858268,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2828.32, - "Y": -59.35, - "Z": -7306.1 + "X": 2828.11, + "Y": -59.42, + "Z": -7305.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857008,21 +858280,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 30, - "Coding LOC": 29, - "Documentation LOC": 0, - "Structural Magnitude": 2.78, + "Coding LOC": 25, + "Documentation LOC": 4, + "Structural Magnitude": 2.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.172 + "Raw Cognitive Density": 0.2 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.32%", - "Error & Exception Exposure": "83.93%", + "Cognitive Load Exposure": "6.98%", + "Error & Exception Exposure": "85.81%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857030,7 +858302,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "51.02%", + "Documentation Exposure": "51.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -857169,9 +858441,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2761.93, - "Y": -178.29, - "Z": -6372.75 + "X": 2761.85, + "Y": -178.28, + "Z": -6372.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857181,21 +858453,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 39, - "Coding LOC": 38, - "Documentation LOC": 0, - "Structural Magnitude": 6.36, + "Coding LOC": 34, + "Documentation LOC": 4, + "Structural Magnitude": 6.28, "Control Flow Ratio": "6.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.184 + "Raw Cognitive Density": 0.206 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.6%", - "Error & Exception Exposure": "88.26%", - "Tech Debt Exposure": "96.84%", - "Testing Exposure": "2.44%", + "Cognitive Load Exposure": "7.13%", + "Error & Exception Exposure": "89.72%", + "Tech Debt Exposure": "98.4%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857203,7 +858475,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.15%", + "Documentation Exposure": "42.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -857355,9 +858627,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3177.06, - "Y": -106.09, - "Z": -6613.2 + "X": 3176.68, + "Y": -106.18, + "Z": -6612.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857367,21 +858639,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 51, - "Coding LOC": 50, - "Documentation LOC": 0, - "Structural Magnitude": 10.3, + "Coding LOC": 42, + "Documentation LOC": 8, + "Structural Magnitude": 10.04, "Control Flow Ratio": "10.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.18 + "Raw Cognitive Density": 0.214 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.5%", - "Error & Exception Exposure": "84.18%", + "Cognitive Load Exposure": "7.35%", + "Error & Exception Exposure": "86.84%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.46%", + "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857389,29 +858661,29 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.09%", + "Documentation Exposure": "34.47%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "LKED", "Structural Impact": 3.5, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 0, "Control Flow Ratio": "25.0%", "Start Line": 33, - "End Line": 43 + "End Line": 42 }, { "Function Name": "COBOL", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 27, + "Structural Impact": 3.3, + "Lines of Code (LOC)": 26, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "4.3%", "Start Line": 6, - "End Line": 32 + "End Line": 31 }, { "Function Name": "GO", @@ -857551,9 +858823,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4015.39, - "Y": -74.55, - "Z": -6749.07 + "X": 4014.75, + "Y": -74.61, + "Z": -6748.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857563,20 +858835,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 26, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 4.3, + "Coding LOC": 21, + "Documentation LOC": 4, + "Structural Magnitude": 4.22, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.238 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", + "Cognitive Load Exposure": "8.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "99.97%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -857585,7 +858857,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.53%", + "Documentation Exposure": "56.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -857617,7 +858889,7 @@ "Function Parameters": 2, "Function/Method Declarations": 2, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, @@ -857731,9 +859003,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2564.65, - "Y": -10.48, - "Z": -7456.03 + "X": 2564.41, + "Y": -10.51, + "Z": -7455.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857743,29 +859015,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 1.22, + "Coding LOC": 2, + "Documentation LOC": 4, + "Structural Magnitude": 1.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 2.5 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "11.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -857899,9 +859171,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4259.47, + "X": 4258.91, "Y": -142.13, - "Z": -6008.68 + "Z": -6008.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857911,29 +859183,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 1.22, + "Coding LOC": 2, + "Documentation LOC": 4, + "Structural Magnitude": 1.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 2.5 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "11.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858067,9 +859339,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3984.54, - "Y": 23.86, - "Z": -7018.25 + "X": 2097.76, + "Y": -274.62, + "Z": -6503.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858079,29 +859351,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 11, - "Coding LOC": 10, - "Documentation LOC": 0, - "Structural Magnitude": 1.4, + "Coding LOC": 6, + "Documentation LOC": 4, + "Structural Magnitude": 1.32, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.59%", + "Testing Exposure": "0.98%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.76%", + "Documentation Exposure": "32.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858235,9 +859507,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4025.44, - "Y": -161.04, - "Z": -6230.57 + "X": 4024.6, + "Y": -161.07, + "Z": -6229.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858247,29 +859519,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858285,13 +859557,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -858416,9 +859688,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2459.71, - "Y": -379.51, - "Z": -5954.53 + "X": 2459.76, + "Y": -379.41, + "Z": -5954.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858428,29 +859700,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858466,13 +859738,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -858586,1278 +859858,6 @@ } } }, - "kotlin/okhttp": { - "Directory Group Magnitude": 210.04, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "83.3%", - "Static: Literature & Documentation": "16.7%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "10.2%", - "Error & Exception Exposure": "23.82%", - "Tech Debt Exposure": "48.29%", - "Testing Exposure": "14.39%", - "API Exposure": "1.83%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "33.23%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "58.89%", - "Instability Exposure": "41.67%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.98%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "kotlin/okhttp/LICENSE.txt": { - "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "kotlin/okhttp/LICENSE.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" - }, - "2. Topological Coordinates": { - "X": -9279.23, - "Y": 47.61, - "Z": -4878.33 - }, - "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 203, - "Coding LOC": 0, - "Documentation LOC": 169, - "Structural Magnitude": 4.06, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "kotlin/okhttp/Call.kt": { - "1. Artifact Identity": { - "Filename": "Call.kt", - "Path": "kotlin/okhttp/Call.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -9867.52, - "Y": 78.52, - "Z": -4243.29 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 187, - "Coding LOC": 29, - "Documentation LOC": 142, - "Structural Magnitude": 20.68, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 2, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.241 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.78%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.7%", - "API Exposure": "2.65%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "tag", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 134 - }, - { - "Function Name": "tag", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 147, - "End Line": 150 - }, - { - "Function Name": "enqueue", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 69 - }, - { - "Function Name": "addEventListener", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 102 - }, - { - "Function Name": "tag", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 110, - "End Line": 110 - }, - { - "Function Name": "tag", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 118 - }, - { - "Function Name": "newCall", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 184, - "End Line": 184 - }, - { - "Function Name": "clone", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 181, - "End Line": 185 - }, - { - "Function Name": "request", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 28 - }, - { - "Function Name": "execute", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 56 - }, - { - "Function Name": "cancel", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 72, - "End Line": 72 - }, - { - "Function Name": "isExecuted", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 78, - "End Line": 78 - }, - { - "Function Name": "isCanceled", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 80, - "End Line": 80 - }, - { - "Function Name": "timeout", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 89 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 22, - "Function Parameters": 14, - "Function/Method Declarations": 14, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 17, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 8, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 23, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 9, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "kotlin.reflect.KClass", - "okio.IOException", - "okio.Timeout" - ] - }, - "kotlin/okhttp/Dispatcher.kt": { - "1. Artifact Identity": { - "Filename": "Dispatcher.kt", - "Path": "kotlin/okhttp/Dispatcher.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -9646.59, - "Y": 89.06, - "Z": -4693.85 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 299, - "Coding LOC": 182, - "Documentation LOC": 76, - "Structural Magnitude": 150.74, - "Control Flow Ratio": "54.3%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.111 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "40.45%", - "Error & Exception Exposure": "71.34%", - "Tech Debt Exposure": "89.76%", - "Testing Exposure": "80.0%", - "API Exposure": "3.23%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.85%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.9%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "promoteAndExecute", - "Structural Impact": 59.0, - "Lines of Code (LOC)": 99, - "Control Flow Branches": 26, - "Input Parameters": 3, - "Control Flow Ratio": "86.7%", - "Start Line": 163, - "End Line": 261 - }, - { - "Function Name": "findExistingCallWithHost", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "63.6%", - "Start Line": 127, - "End Line": 135 - }, - { - "Function Name": "cancelAll", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 141, - "End Line": 152 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 121 - }, - { - "Function Name": "enqueue", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 123, - "End Line": 125 - }, - { - "Function Name": "finished", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 270 - }, - { - "Function Name": "finished", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 273, - "End Line": 275 - }, - { - "Function Name": "executed", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 264, - "End Line": 265 - }, - { - "Function Name": "runningCallsCount", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 288, - "End Line": 296 - }, - { - "Function Name": "queuedCalls", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 278, - "End Line": 279 - }, - { - "Function Name": "runningCalls", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 282, - "End Line": 283 - }, - { - "Function Name": "queuedCallsCount", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 285, - "End Line": 286 - }, - { - "Function Name": "executorService", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 297, - "End Line": 298 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 32, - "Function Parameters": 13, - "Function/Method Declarations": 13, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 1, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, - "State Mutations / Variable Reassignments": 48, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 17, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 16, - "Generic Type Abstractions": 7, - "Collection Iterators / Comprehensions": 2, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 11, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 2, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 6, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 16, - "Immutable Data Declarations": 16, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 16, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 168, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 29, - "Design Camel Case": 19, - "Design Snake Case": 7, - "Design Pascal Case": 3, - "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 8, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 11, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "java.util.ArrayDeque", - "java.util.concurrent.ExecutorService", - "java.util.concurrent.SynchronousQueue", - "java.util.concurrent.ThreadPoolExecutor", - "java.util.concurrent.TimeUnit", - "okhttp3.internal.assertLockNotHeld", - "okhttp3.internal.connection.RealCall", - "okhttp3.internal.connection.RealCall.AsyncCall", - "okhttp3.internal.okHttpName", - "okhttp3.internal.threadFactory", - "okhttp3.internal.unmodifiable" - ] - }, - "kotlin/okhttp/OkHttp.android.kt": { - "1. Artifact Identity": { - "Filename": "OkHttp.android.kt", - "Path": "kotlin/okhttp/OkHttp.android.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -10137.45, - "Y": 139.32, - "Z": -4784.17 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 40, - "Coding LOC": 13, - "Documentation LOC": 23, - "Structural Magnitude": 8.36, - "Control Flow Ratio": "14.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.538 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "71.58%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.11%", - "API Exposure": "2.96%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.56%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.18%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "initialize", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 33, - "End Line": 38 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 6, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 3, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 2, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "android.content.Context", - "okhttp3.internal.CONST_VERSION", - "okhttp3.internal.platform.PlatformRegistry" - ] - }, - "kotlin/okhttp/OkHttp.jvm.kt": { - "1. Artifact Identity": { - "Filename": "OkHttp.jvm.kt", - "Path": "kotlin/okhttp/OkHttp.jvm.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -9608.21, - "Y": 130.04, - "Z": -4832.8 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 6, - "Documentation LOC": 15, - "Structural Magnitude": 14.12, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.92%", - "API Exposure": "2.15%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.71%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "okhttp3.internal.CONST_VERSION" - ] - }, - "kotlin/okhttp/OkHttp.kt": { - "1. Artifact Identity": { - "Filename": "OkHttp.kt", - "Path": "kotlin/okhttp/OkHttp.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -9441.88, - "Y": 34.03, - "Z": -4166.36 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 36, - "Coding LOC": 4, - "Documentation LOC": 30, - "Structural Magnitude": 12.08, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.61%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "26.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "3.18%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, "typescript/fp-ts": { "Directory Group Magnitude": 181.4, "File Count": 5, @@ -869176,56 +869176,57 @@ } } }, - "jcl/zopeneditor-sample": { - "Directory Group Magnitude": 110.72, - "File Count": 10, + "groovy/godot_android_gradle": { + "Directory Group Magnitude": 110.12, + "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" + "Unclassified": "80.0%", + "Static: Literature & Documentation": "20.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "2.79%", - "Error & Exception Exposure": "80.75%", - "Tech Debt Exposure": "68.22%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "9.97%", + "Error & Exception Exposure": "47.61%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.85%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "41.96%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "40.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.83%", + "Documentation Exposure": "37.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "jcl/zopeneditor-sample/ALLOCATE.jcl": { + "groovy/godot_android_gradle/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "ALLOCATE.jcl", - "Path": "jcl/zopeneditor-sample/ALLOCATE.jcl", - "Language": "Jcl", + "Filename": "LICENSE.txt", + "Path": "groovy/godot_android_gradle/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Folder Dominant Lang": "groovy", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -8231.26, - "Y": 16.74, - "Z": -2265.33 + "X": -6218.37, + "Y": 109.85, + "Z": -8045.89 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 90, - "Coding LOC": 89, - "Documentation LOC": 0, - "Structural Magnitude": 9.28, + "Total LOC": 21, + "Coding LOC": 0, + "Documentation LOC": 17, + "Structural Magnitude": 1.0, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -869234,55 +869235,34 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.06%", - "Tech Debt Exposure": "50.7%", - "Testing Exposure": "2.36%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "23.13%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.3%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "ALLOCAT", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 89 - }, - { - "Function Name": "DELETE", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 49 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 22, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 24, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -869337,15 +869317,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 59, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 59, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -869362,44 +869342,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.COBOL", - "&HLQ..SAMPLE.COPY", - "&HLQ..SAMPLE.COPYLIB", - "&HLQ..SAMPLE.CUSTFILE", - "&HLQ..SAMPLE.LOAD", - "&HLQ..SAMPLE.OBJ", - "&HLQ..SAMPLE.TRANFILE" - ] + "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/ASMALLOC.jcl": { + "groovy/godot_android_gradle/java_app_settings.gradle": { "1. Artifact Identity": { - "Filename": "ASMALLOC.jcl", - "Path": "jcl/zopeneditor-sample/ASMALLOC.jcl", - "Language": "Jcl", + "Filename": "java_app_settings.gradle", + "Path": "groovy/godot_android_gradle/java_app_settings.gradle", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -8759.56, - "Y": -79.37, - "Z": -1314.02 + "X": -5691.97, + "Y": 139.12, + "Z": -8425.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869408,67 +869380,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 74, - "Coding LOC": 73, - "Documentation LOC": 0, - "Structural Magnitude": 8.16, + "Total LOC": 19, + "Coding LOC": 15, + "Documentation LOC": 1, + "Structural Magnitude": 15.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "79.49%", - "Tech Debt Exposure": "64.16%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "15.89%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "26.81%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.4%", + "Documentation Exposure": "69.01%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "ALLOCAT", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 73 - }, - { - "Function Name": "DELETE", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 43 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 18, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 3, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 20, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -869488,7 +869439,7 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 1, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, @@ -869506,7 +869457,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 12, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -869523,15 +869474,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 46, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 46, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -869548,42 +869499,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.ASM", - "&HLQ..SAMPLE.ASM.FILEIN", - "&HLQ..SAMPLE.ASMCOPY", - "&HLQ..SAMPLE.ASMLOAD", - "&HLQ..SAMPLE.ASMOBJ" - ] + "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/COMPROC.jcl": { + "groovy/godot_android_gradle/java_scripts_publish-module.gradle": { "1. Artifact Identity": { - "Filename": "COMPROC.jcl", - "Path": "jcl/zopeneditor-sample/COMPROC.jcl", - "Language": "Jcl", + "Filename": "java_scripts_publish-module.gradle", + "Path": "groovy/godot_android_gradle/java_scripts_publish-module.gradle", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -8103.26, - "Y": 0.27, - "Z": -1730.27 + "X": -5709.72, + "Y": 91.46, + "Z": -7751.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869592,10 +869537,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 52, - "Coding LOC": 52, - "Documentation LOC": 0, - "Structural Magnitude": 3.64, + "Total LOC": 178, + "Coding LOC": 150, + "Documentation LOC": 15, + "Structural Magnitude": 72.2, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -869605,9 +869550,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.49%", - "Tech Debt Exposure": "86.14%", - "Testing Exposure": "2.35%", + "Error & Exception Exposure": "87.06%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -869615,34 +869560,54 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.18%", + "Documentation Exposure": "16.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CMPLSAM2", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 23, + "Function Name": "templateDebug", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 52, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 52 + "Start Line": 10, + "End Line": 61 + }, + { + "Function Name": "templateRelease", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 113 + }, + { + "Function Name": "toolsRelease", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 165 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 23, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 4, + "Function/Method Declarations": 3, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 10, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 62, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -869662,14 +869627,14 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 2, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -869680,7 +869645,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 142, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -869697,12 +869662,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 22, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 62, + "Design Camel Case": 3, + "Design Snake Case": 59, "Design Pascal Case": 0, - "Design Upper Case": 22, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 12, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -869722,41 +869687,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&CMPLLIB", - "&HLQ..SAMPLE.COBOL(SAM2)", - "&HLQ..SAMPLE.COPY", - "&HLQ..SAMPLE.OBJ(SAM2)" - ] + "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/COMPSET.jcl": { + "groovy/godot_android_gradle/java_scripts_publish-root.gradle": { "1. Artifact Identity": { - "Filename": "COMPSET.jcl", - "Path": "jcl/zopeneditor-sample/COMPSET.jcl", - "Language": "Jcl", + "Filename": "java_scripts_publish-root.gradle", + "Path": "groovy/godot_android_gradle/java_scripts_publish-root.gradle", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -8895.97, - "Y": -11.23, - "Z": -1459.64 + "X": -5523.81, + "Y": 67.31, + "Z": -7419.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869765,44 +869725,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 18.5, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 39, + "Coding LOC": 32, + "Documentation LOC": 4, + "Structural Magnitude": 5.14, + "Control Flow Ratio": "100.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.44 + "Raw Cognitive Density": 0.406 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.71%", - "Error & Exception Exposure": "78.58%", + "Cognitive Load Exposure": "20.18%", + "Error & Exception Exposure": "75.49%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "93.7%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.53%", + "Documentation Exposure": "44.29%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "FileInputStream", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 14 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 0, + "Function Parameters": 3, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, @@ -869810,11 +869781,11 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 4, + "Global State Dependencies": 7, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, @@ -869842,7 +869813,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 19, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -869859,15 +869830,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 5, + "Design Camel Case": 2, + "Design Snake Case": 3, "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -869892,28 +869863,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/INCLUDE.jcl": { + "groovy/godot_android_gradle/java_settings.gradle": { "1. Artifact Identity": { - "Filename": "INCLUDE.jcl", - "Path": "jcl/zopeneditor-sample/INCLUDE.jcl", - "Language": "Jcl", + "Filename": "java_settings.gradle", + "Path": "groovy/godot_android_gradle/java_settings.gradle", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -9174.97, - "Y": -6.4, - "Z": -1625.6 + "X": -5940.32, + "Y": 100.04, + "Z": -7579.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869922,57 +869893,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 3.6, + "Total LOC": 30, + "Coding LOC": 24, + "Documentation LOC": 1, + "Structural Magnitude": 16.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.36 + "Raw Cognitive Density": 0.292 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.16%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "99.85%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "13.78%", + "Error & Exception Exposure": "75.49%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "75.03%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.53%", + "Documentation Exposure": "55.67%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "STEP1", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 25 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 4, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -869985,14 +869945,14 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 1, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, @@ -870010,7 +869970,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -870027,15 +869987,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -870059,19 +870019,41 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "COMPSET" - ] - }, - "jcl/zopeneditor-sample/PLIALLOC.jcl": { + "9. Extracted Dependencies": [] + } + } + }, + "jcl/zopeneditor-sample": { + "Directory Group Magnitude": 97.88, + "File Count": 10, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "4.55%", + "Error & Exception Exposure": "84.44%", + "Tech Debt Exposure": "80.85%", + "Testing Exposure": "2.11%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "55.48%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "88.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "21.53%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "jcl/zopeneditor-sample/ALLOCATE.jcl": { "1. Artifact Identity": { - "Filename": "PLIALLOC.jcl", - "Path": "jcl/zopeneditor-sample/PLIALLOC.jcl", + "Filename": "ALLOCATE.jcl", + "Path": "jcl/zopeneditor-sample/ALLOCATE.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -870081,9 +870063,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -9083.03, - "Y": -5.28, - "Z": -2080.69 + "X": -8231.66, + "Y": 16.66, + "Z": -2263.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870092,10 +870074,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 91, - "Coding LOC": 90, - "Documentation LOC": 0, - "Structural Magnitude": 9.4, + "Total LOC": 90, + "Coding LOC": 68, + "Documentation LOC": 21, + "Structural Magnitude": 8.56, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -870105,39 +870087,39 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.87%", - "Tech Debt Exposure": "50.0%", - "Testing Exposure": "2.36%", + "Error & Exception Exposure": "71.93%", + "Tech Debt Exposure": "69.19%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "22.95%", + "State Flux Exposure": "28.42%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.14%", + "Documentation Exposure": "20.81%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "ALLOCAT", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 41, + "Structural Impact": 3.0, + "Lines of Code (LOC)": 40, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 50, - "End Line": 90 + "End Line": 89 }, { "Function Name": "DELETE", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 29, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 25, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 21, - "End Line": 49 + "End Line": 45 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -870147,9 +870129,9 @@ "Function Parameters": 0, "Function/Method Declarations": 2, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -870177,7 +870159,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -870207,11 +870189,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 60, + "Core Var Decl": 59, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 60, + "Design Upper Case": 59, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -870245,19 +870227,19 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.PLI", - "&HLQ..SAMPLE.PLI.CUSTFILE", - "&HLQ..SAMPLE.PLI.INCLLIB", - "&HLQ..SAMPLE.PLI.TRANFILE", - "&HLQ..SAMPLE.PLILOAD", - "&HLQ..SAMPLE.PLINC", - "&HLQ..SAMPLE.PLIOBJ" + "&HLQ..SAMPLE.COBOL", + "&HLQ..SAMPLE.COPY", + "&HLQ..SAMPLE.COPYLIB", + "&HLQ..SAMPLE.CUSTFILE", + "&HLQ..SAMPLE.LOAD", + "&HLQ..SAMPLE.OBJ", + "&HLQ..SAMPLE.TRANFILE" ] }, - "jcl/zopeneditor-sample/REXALLOC.jcl": { + "jcl/zopeneditor-sample/ASMALLOC.jcl": { "1. Artifact Identity": { - "Filename": "REXALLOC.jcl", - "Path": "jcl/zopeneditor-sample/REXALLOC.jcl", + "Filename": "ASMALLOC.jcl", + "Path": "jcl/zopeneditor-sample/ASMALLOC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -870267,9 +870249,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -8948.61, - "Y": 93.08, - "Z": -2494.91 + "X": -8757.7, + "Y": -79.16, + "Z": -1315.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870278,10 +870260,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 66, - "Coding LOC": 65, - "Documentation LOC": 0, - "Structural Magnitude": 7.5, + "Total LOC": 74, + "Coding LOC": 53, + "Documentation LOC": 20, + "Structural Magnitude": 7.56, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -870291,29 +870273,29 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "81.49%", - "Tech Debt Exposure": "72.34%", + "Error & Exception Exposure": "75.66%", + "Tech Debt Exposure": "85.14%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "29.54%", + "State Flux Exposure": "35.65%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.5%", + "Documentation Exposure": "23.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "ALLOCAT", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 25, + "Structural Impact": 2.5, + "Lines of Code (LOC)": 29, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 65 + "Start Line": 44, + "End Line": 72 }, { "Function Name": "DELETE", @@ -870329,14 +870311,14 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 16, + "Sequential Logic Declarations": 18, "Function Parameters": 0, "Function/Method Declarations": 2, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 18, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, @@ -870363,7 +870345,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -870393,11 +870375,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 39, + "Core Var Decl": 46, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 39, + "Design Upper Case": 46, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -870425,34 +870407,35 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 5, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.REXX", - "&HLQ..SAMPLE.REXX.FILEIN1", - "&HLQ..SAMPLE.REXX.FILEIN2", - "&HLQ..SAMPLE.REXX.FILEOUT" + "&HLQ..SAMPLE.ASM", + "&HLQ..SAMPLE.ASM.FILEIN", + "&HLQ..SAMPLE.ASMCOPY", + "&HLQ..SAMPLE.ASMLOAD", + "&HLQ..SAMPLE.ASMOBJ" ] }, - "jcl/zopeneditor-sample/RUN.jcl": { + "jcl/zopeneditor-sample/COMPROC.jcl": { "1. Artifact Identity": { - "Filename": "RUN.jcl", - "Path": "jcl/zopeneditor-sample/RUN.jcl", + "Filename": "COMPROC.jcl", + "Path": "jcl/zopeneditor-sample/COMPROC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -8627.22, - "Y": 33.01, - "Z": -1828.65 + "X": -9174.47, + "Y": 31.78, + "Z": -1697.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870461,107 +870444,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 168, - "Coding LOC": 167, - "Documentation LOC": 0, - "Structural Magnitude": 21.54, + "Total LOC": 52, + "Coding LOC": 24, + "Documentation LOC": 28, + "Structural Magnitude": 3.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.208 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "82.0%", - "Tech Debt Exposure": "65.56%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "7.19%", + "Error & Exception Exposure": "86.31%", + "Tech Debt Exposure": "99.9%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "28.86%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.77%", + "Documentation Exposure": "27.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ - { - "Function Name": "CMPLSAM1", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 72, - "End Line": 102 - }, { "Function Name": "CMPLSAM2", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 30, + "Structural Impact": 2.6, + "Lines of Code (LOC)": 23, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 71 - }, - { - "Function Name": "SAM1", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 147, - "End Line": 167 - }, - { - "Function Name": "LINKSAM2", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 103, - "End Line": 119 - }, - { - "Function Name": "LINKSAM1", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 134 - }, - { - "Function Name": "DELETE", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 146 + "Start Line": 30, + "End Line": 52 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 74, - "Function Parameters": 2, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 23, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, - "I/O and Network Boundaries": 60, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 5, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -870599,7 +870532,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 5, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -870616,15 +870549,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 85, + "Core Var Decl": 22, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 85, + "Design Upper Case": 22, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -870641,51 +870574,41 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "&CMPLLIB", - "&HLQ..SAMPLE.COBOL(SAM1)", "&HLQ..SAMPLE.COBOL(SAM2)", "&HLQ..SAMPLE.COPY", - "&HLQ..SAMPLE.COPYLIB", - "&HLQ..SAMPLE.CUSTFILE", - "&HLQ..SAMPLE.CUSTOUT", - "&HLQ..SAMPLE.CUSTRPT", - "&HLQ..SAMPLE.LOAD", - "&HLQ..SAMPLE.OBJ", - "&HLQ..SAMPLE.OBJ(SAM1)", - "&HLQ..SAMPLE.OBJ(SAM2)", - "&HLQ..SAMPLE.TRANFILE", - "&LINKLIB" + "&HLQ..SAMPLE.OBJ(SAM2)" ] }, - "jcl/zopeneditor-sample/RUNASAM1.jcl": { + "jcl/zopeneditor-sample/COMPSET.jcl": { "1. Artifact Identity": { - "Filename": "RUNASAM1.jcl", - "Path": "jcl/zopeneditor-sample/RUNASAM1.jcl", + "Filename": "COMPSET.jcl", + "Path": "jcl/zopeneditor-sample/COMPSET.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -8446.1, - "Y": -66.07, - "Z": -1687.45 + "X": -8892.06, + "Y": -11.03, + "Z": -1461.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870694,87 +870617,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 76, - "Coding LOC": 75, - "Documentation LOC": 0, - "Structural Magnitude": 14.4, + "Total LOC": 25, + "Coding LOC": 3, + "Documentation LOC": 22, + "Structural Magnitude": 14.56, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 2.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "90.67%", - "Tech Debt Exposure": "95.96%", - "Testing Exposure": "2.4%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.71%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "75.03%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.94%", + "Documentation Exposure": "12.23%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "ASM1", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 50 - }, - { - "Function Name": "LKED", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 63 - }, - { - "Function Name": "EXECUTE", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 64, - "End Line": 75 - }, - { - "Function Name": "DELETE", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 35 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 33, - "Function Parameters": 1, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, - "I/O and Network Boundaries": 38, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 6, + "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -870812,7 +870694,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -870829,15 +870711,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 40, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 40, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -870854,48 +870736,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 11, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.ASM(ASAM1)", - "&HLQ..SAMPLE.ASM.FILEIN", - "&HLQ..SAMPLE.ASM.FILEOUT", - "&HLQ..SAMPLE.ASMCOPY", - "&HLQ..SAMPLE.ASMLOAD", - "&HLQ..SAMPLE.ASMOBJ", - "&HLQ..SAMPLE.ASMOBJ(ASAM1)", - "&LINKLIB", - "&MACLIB", - "&MODGEN", - "&SCEEMAC" - ] + "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/RUNPSAM1.jcl": { + "jcl/zopeneditor-sample/INCLUDE.jcl": { "1. Artifact Identity": { - "Filename": "RUNPSAM1.jcl", - "Path": "jcl/zopeneditor-sample/RUNPSAM1.jcl", + "Filename": "INCLUDE.jcl", + "Path": "jcl/zopeneditor-sample/INCLUDE.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -8643.98, - "Y": 69.8, - "Z": -2138.63 + "X": -8100.73, + "Y": -37.72, + "Z": -1659.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870904,97 +870774,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 86, - "Coding LOC": 85, - "Documentation LOC": 0, - "Structural Magnitude": 14.7, + "Total LOC": 25, + "Coding LOC": 9, + "Documentation LOC": 16, + "Structural Magnitude": 3.28, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.778 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.01%", - "Tech Debt Exposure": "97.53%", - "Testing Exposure": "2.41%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "83.39%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "44.58%", + "State Flux Exposure": "99.89%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.97%", + "Documentation Exposure": "35.28%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CMPPSAM1", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 58 - }, - { - "Function Name": "CMPPSAM2", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 45 - }, - { - "Function Name": "LNKPSAM1", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 73 - }, - { - "Function Name": "RUNPSAM1", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 74, - "End Line": 85 - }, - { - "Function Name": "DELETE", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "STEP1", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 34 + "Start Line": 23, + "End Line": 25 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 36, - "Function Parameters": 2, - "Function/Method Declarations": 5, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 5, - "I/O and Network Boundaries": 51, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 4, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871007,7 +870837,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -871019,7 +870849,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871032,7 +870862,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871049,15 +870879,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 43, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 43, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871074,87 +870904,50 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 5, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CMPLLIB", - "&HLQ..SAMPLE.PLI(PSAM1)", - "&HLQ..SAMPLE.PLI(PSAM2)", - "&HLQ..SAMPLE.PLI.CUSTFILE", - "&HLQ..SAMPLE.PLI.CUSTRPT", - "&HLQ..SAMPLE.PLI.INCLLIB", - "&HLQ..SAMPLE.PLI.TRANFILE", - "&HLQ..SAMPLE.PLILOAD", - "&HLQ..SAMPLE.PLINC", - "&HLQ..SAMPLE.PLIOBJ", - "&HLQ..SAMPLE.PLIOBJ(PSAM1)", - "&HLQ..SAMPLE.PLIOBJ(PSAM2)", - "&LINKLIB" + "COMPSET" ] - } - } - }, - "groovy/godot_android_gradle": { - "Directory Group Magnitude": 110.12, - "File Count": 5, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "80.0%", - "Static: Literature & Documentation": "20.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "9.97%", - "Error & Exception Exposure": "47.61%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.85%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", - "Instability Exposure": "40.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.19%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "groovy/godot_android_gradle/LICENSE.txt": { + }, + "jcl/zopeneditor-sample/PLIALLOC.jcl": { "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "groovy/godot_android_gradle/LICENSE.txt", - "Language": "Plaintext", + "Filename": "PLIALLOC.jcl", + "Path": "jcl/zopeneditor-sample/PLIALLOC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -6218.37, - "Y": 109.85, - "Z": -8045.89 + "X": -9079.82, + "Y": -5.39, + "Z": -2080.08 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 0, - "Documentation LOC": 17, - "Structural Magnitude": 1.0, + "Total LOC": 91, + "Coding LOC": 71, + "Documentation LOC": 19, + "Structural Magnitude": 8.82, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -871163,34 +870956,55 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "71.3%", + "Tech Debt Exposure": "66.13%", + "Testing Exposure": "2.35%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "27.42%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "21.17%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "ALLOCAT", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 50, + "End Line": 90 + }, + { + "Function Name": "DELETE", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 46 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 22, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871215,7 +871029,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871245,15 +871059,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 60, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 60, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871270,36 +871084,44 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 7, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..SAMPLE.PLI", + "&HLQ..SAMPLE.PLI.CUSTFILE", + "&HLQ..SAMPLE.PLI.INCLLIB", + "&HLQ..SAMPLE.PLI.TRANFILE", + "&HLQ..SAMPLE.PLILOAD", + "&HLQ..SAMPLE.PLINC", + "&HLQ..SAMPLE.PLIOBJ" + ] }, - "groovy/godot_android_gradle/java_app_settings.gradle": { + "jcl/zopeneditor-sample/REXALLOC.jcl": { "1. Artifact Identity": { - "Filename": "java_app_settings.gradle", - "Path": "groovy/godot_android_gradle/java_app_settings.gradle", - "Language": "Groovy", + "Filename": "REXALLOC.jcl", + "Path": "jcl/zopeneditor-sample/REXALLOC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .gradle)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5691.97, - "Y": 139.12, - "Z": -8425.14 + "X": -8946.32, + "Y": 92.82, + "Z": -2492.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871308,46 +871130,67 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 15, - "Documentation LOC": 1, - "Structural Magnitude": 15.3, + "Total LOC": 66, + "Coding LOC": 44, + "Documentation LOC": 21, + "Structural Magnitude": 6.88, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 0.205 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.89%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "7.1%", + "Error & Exception Exposure": "78.48%", + "Tech Debt Exposure": "93.17%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "43.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "69.01%", + "Documentation Exposure": "25.21%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "ALLOCAT", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 65 + }, + { + "Function Name": "DELETE", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 36 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 16, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 18, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871367,12 +871210,12 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 1, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871385,7 +871228,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 12, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871402,15 +871245,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 39, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 39, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871427,36 +871270,41 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..SAMPLE.REXX", + "&HLQ..SAMPLE.REXX.FILEIN1", + "&HLQ..SAMPLE.REXX.FILEIN2", + "&HLQ..SAMPLE.REXX.FILEOUT" + ] }, - "groovy/godot_android_gradle/java_scripts_publish-module.gradle": { + "jcl/zopeneditor-sample/RUN.jcl": { "1. Artifact Identity": { - "Filename": "java_scripts_publish-module.gradle", - "Path": "groovy/godot_android_gradle/java_scripts_publish-module.gradle", - "Language": "Groovy", + "Filename": "RUN.jcl", + "Path": "jcl/zopeneditor-sample/RUN.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .gradle)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5709.72, - "Y": 91.46, - "Z": -7751.32 + "X": -8625.88, + "Y": 33.01, + "Z": -1828.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871465,10 +871313,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 178, - "Coding LOC": 150, - "Documentation LOC": 15, - "Structural Magnitude": 72.2, + "Total LOC": 168, + "Coding LOC": 96, + "Documentation LOC": 71, + "Structural Magnitude": 18.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -871478,64 +871326,94 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "87.06%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "92.01%", + "Tech Debt Exposure": "95.11%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "49.58%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.99%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "templateDebug", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 52, + "Function Name": "CMPLSAM1", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 24, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 61 + "Start Line": 72, + "End Line": 95 }, { - "Function Name": "templateRelease", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 52, + "Function Name": "CMPLSAM2", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 22, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 113 + "Start Line": 42, + "End Line": 63 }, { - "Function Name": "toolsRelease", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 52, + "Function Name": "SAM1", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 21, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 165 + "Start Line": 147, + "End Line": 167 + }, + { + "Function Name": "LINKSAM1", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 131 + }, + { + "Function Name": "LINKSAM2", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 103, + "End Line": 112 + }, + { + "Function Name": "DELETE", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 135, + "End Line": 143 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 4, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 74, + "Function Parameters": 2, + "Function/Method Declarations": 6, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, + "High-Risk Execution Commands": 6, + "I/O and Network Boundaries": 60, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 62, + "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871555,14 +871433,14 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 2, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -871573,7 +871451,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 142, + "Structural Space Indentations": 5, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871590,15 +871468,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 62, - "Design Camel Case": 3, - "Design Snake Case": 59, + "Core Var Decl": 85, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 12, + "Design Upper Case": 85, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871615,36 +871493,51 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 6, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 14, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&CMPLLIB", + "&HLQ..SAMPLE.COBOL(SAM1)", + "&HLQ..SAMPLE.COBOL(SAM2)", + "&HLQ..SAMPLE.COPY", + "&HLQ..SAMPLE.COPYLIB", + "&HLQ..SAMPLE.CUSTFILE", + "&HLQ..SAMPLE.CUSTOUT", + "&HLQ..SAMPLE.CUSTRPT", + "&HLQ..SAMPLE.LOAD", + "&HLQ..SAMPLE.OBJ", + "&HLQ..SAMPLE.OBJ(SAM1)", + "&HLQ..SAMPLE.OBJ(SAM2)", + "&HLQ..SAMPLE.TRANFILE", + "&LINKLIB" + ] }, - "groovy/godot_android_gradle/java_scripts_publish-root.gradle": { + "jcl/zopeneditor-sample/RUNASAM1.jcl": { "1. Artifact Identity": { - "Filename": "java_scripts_publish-root.gradle", - "Path": "groovy/godot_android_gradle/java_scripts_publish-root.gradle", - "Language": "Groovy", + "Filename": "RUNASAM1.jcl", + "Path": "jcl/zopeneditor-sample/RUNASAM1.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .gradle)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5523.81, - "Y": 67.31, - "Z": -7419.62 + "X": -8662.1, + "Y": 23.32, + "Z": -2369.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871653,67 +871546,97 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 32, - "Documentation LOC": 4, - "Structural Magnitude": 5.14, - "Control Flow Ratio": "100.0%", + "Total LOC": 76, + "Coding LOC": 46, + "Documentation LOC": 29, + "Structural Magnitude": 13.42, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.406 + "Raw Cognitive Density": 0.37 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "20.18%", - "Error & Exception Exposure": "75.49%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "12.54%", + "Error & Exception Exposure": "95.94%", + "Tech Debt Exposure": "99.88%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "95.76%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.29%", + "Documentation Exposure": "20.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "FileInputStream", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "ASM1", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 14 + "Start Line": 36, + "End Line": 47 + }, + { + "Function Name": "EXECUTE", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 64, + "End Line": 74 + }, + { + "Function Name": "LKED", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 60 + }, + { + "Function Name": "DELETE", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 32 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 33, + "Function Parameters": 1, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "High-Risk Execution Commands": 4, + "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 4, - "Global State Dependencies": 7, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, @@ -871728,7 +871651,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871741,7 +871664,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 19, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871758,15 +871681,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, - "Design Camel Case": 2, - "Design Snake Case": 3, + "Core Var Decl": 40, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 40, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871783,36 +871706,48 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 4, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 11, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..SAMPLE.ASM(ASAM1)", + "&HLQ..SAMPLE.ASM.FILEIN", + "&HLQ..SAMPLE.ASM.FILEOUT", + "&HLQ..SAMPLE.ASMCOPY", + "&HLQ..SAMPLE.ASMLOAD", + "&HLQ..SAMPLE.ASMOBJ", + "&HLQ..SAMPLE.ASMOBJ(ASAM1)", + "&LINKLIB", + "&MACLIB", + "&MODGEN", + "&SCEEMAC" + ] }, - "groovy/godot_android_gradle/java_settings.gradle": { + "jcl/zopeneditor-sample/RUNPSAM1.jcl": { "1. Artifact Identity": { - "Filename": "java_settings.gradle", - "Path": "groovy/godot_android_gradle/java_settings.gradle", - "Language": "Groovy", + "Filename": "RUNPSAM1.jcl", + "Path": "jcl/zopeneditor-sample/RUNPSAM1.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .gradle)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5940.32, - "Y": 100.04, - "Z": -7579.96 + "X": -8426.8, + "Y": -19.6, + "Z": -1456.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871821,46 +871756,97 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 30, - "Coding LOC": 24, - "Documentation LOC": 1, - "Structural Magnitude": 16.48, + "Total LOC": 86, + "Coding LOC": 50, + "Documentation LOC": 35, + "Structural Magnitude": 13.2, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.292 + "Raw Cognitive Density": 0.26 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.78%", - "Error & Exception Exposure": "75.49%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "8.64%", + "Error & Exception Exposure": "96.67%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "75.03%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.67%", + "Documentation Exposure": "17.34%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CMPPSAM1", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 54 + }, + { + "Function Name": "CMPPSAM2", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 41 + }, + { + "Function Name": "LNKPSAM1", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 69 + }, + { + "Function Name": "RUNPSAM1", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 74, + "End Line": 85 + }, + { + "Function Name": "DELETE", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 30 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 4, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 36, + "Function Parameters": 2, + "Function/Method Declarations": 5, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, + "High-Risk Execution Commands": 5, + "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 4, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871880,12 +871866,12 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 1, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871898,7 +871884,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871915,15 +871901,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 43, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 43, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871940,19 +871926,33 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 5, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&CMPLLIB", + "&HLQ..SAMPLE.PLI(PSAM1)", + "&HLQ..SAMPLE.PLI(PSAM2)", + "&HLQ..SAMPLE.PLI.CUSTFILE", + "&HLQ..SAMPLE.PLI.CUSTRPT", + "&HLQ..SAMPLE.PLI.INCLLIB", + "&HLQ..SAMPLE.PLI.TRANFILE", + "&HLQ..SAMPLE.PLILOAD", + "&HLQ..SAMPLE.PLINC", + "&HLQ..SAMPLE.PLIOBJ", + "&HLQ..SAMPLE.PLIOBJ(PSAM1)", + "&HLQ..SAMPLE.PLIOBJ(PSAM2)", + "&LINKLIB" + ] } } }, @@ -871991,9 +871991,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4689.96, + "X": 4689.51, "Y": -56.97, - "Z": -8158.77 + "Z": -8157.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872148,9 +872148,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4273.98, + "X": 4273.53, "Y": -134.4, - "Z": -7601.04 + "Z": -7600.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872320,9 +872320,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4655.31, + "X": 4654.86, "Y": -19.84, - "Z": -8958.57 + "Z": -8957.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872492,9 +872492,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4506.36, + "X": 4505.91, "Y": -63.53, - "Z": -8045.95 + "Z": -8045.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872649,9 +872649,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4749.84, + "X": 4749.39, "Y": -42.39, - "Z": -8603.59 + "Z": -8602.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872806,9 +872806,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4979.36, + "X": 4978.91, "Y": -165.67, - "Z": -8013.21 + "Z": -8012.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872963,9 +872963,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4111.57, + "X": 4111.12, "Y": -9.17, - "Z": -8430.0 + "Z": -8429.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873131,9 +873131,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4299.26, + "X": 4298.81, "Y": -85.32, - "Z": -8263.5 + "Z": -8262.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873288,9 +873288,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5336.54, + "X": 5336.09, "Y": -155.33, - "Z": -8171.34 + "Z": -8170.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873456,9 +873456,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4503.29, + "X": 4502.84, "Y": -43.71, - "Z": -8777.77 + "Z": -8776.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873624,9 +873624,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5219.56, + "X": 5219.11, "Y": -126.41, - "Z": -8123.46 + "Z": -8122.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873792,9 +873792,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4567.98, + "X": 4567.53, "Y": -72.45, - "Z": -7703.25 + "Z": -7702.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873986,9 +873986,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4172.61, + "X": 4172.16, "Y": -93.82, - "Z": -8114.34 + "Z": -8113.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874157,9 +874157,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4962.73, + "X": 4962.28, "Y": -84.11, - "Z": -8662.19 + "Z": -8661.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874328,9 +874328,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5078.15, + "X": 5077.7, "Y": -65.26, - "Z": -8503.21 + "Z": -8502.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874499,9 +874499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4934.65, + "X": 4934.2, "Y": -166.2, - "Z": -7627.86 + "Z": -7627.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874699,9 +874699,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6610.66, + "X": 6610.06, "Y": 112.82, - "Z": -9067.99 + "Z": -9067.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874856,9 +874856,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6828.66, + "X": 6828.06, "Y": 160.61, - "Z": -8411.48 + "Z": -8410.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875013,9 +875013,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6129.76, + "X": 6129.16, "Y": 252.1, - "Z": -8731.58 + "Z": -8730.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875170,9 +875170,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6531.17, + "X": 6530.57, "Y": 135.41, - "Z": -8734.47 + "Z": -8733.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875478,9 +875478,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6913.07, + "X": 6912.47, "Y": 94.78, - "Z": -8960.84 + "Z": -8960.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875666,9 +875666,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6289.06, + "X": 6288.46, "Y": 231.79, - "Z": -8575.34 + "Z": -8574.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877072,9 +877072,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2658.51, + "X": -2658.39, "Y": 229.77, - "Z": -7977.23 + "Z": -7976.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877229,9 +877229,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2388.8, + "X": -2388.68, "Y": 150.65, - "Z": -8537.33 + "Z": -8536.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877386,9 +877386,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2920.98, + "X": -2920.86, "Y": 150.33, - "Z": -8365.35 + "Z": -8364.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877543,9 +877543,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2177.64, + "X": -2177.51, "Y": 218.44, - "Z": -7770.85 + "Z": -7770.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877700,9 +877700,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2489.28, + "X": -2489.16, "Y": 184.72, - "Z": -8188.84 + "Z": -8188.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879085,9 +879085,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3498.52, + "X": -3498.34, "Y": -20.36, - "Z": -7729.72 + "Z": -7729.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879273,9 +879273,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3283.92, + "X": -3283.74, "Y": 5.06, - "Z": -7692.44 + "Z": -7692.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879488,7 +879488,7 @@ "2. Topological Coordinates": { "X": 177.74, "Y": -187.35, - "Z": -8875.16 + "Z": -8875.03 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -879645,7 +879645,7 @@ "2. Topological Coordinates": { "X": -364.42, "Y": -41.9, - "Z": -8195.86 + "Z": -8195.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879802,7 +879802,7 @@ "2. Topological Coordinates": { "X": -421.14, "Y": -163.63, - "Z": -9130.65 + "Z": -9130.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879970,7 +879970,7 @@ "2. Topological Coordinates": { "X": -203.32, "Y": -73.53, - "Z": -8494.3 + "Z": -8494.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880125,9 +880125,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -302.62, + "X": -302.61, "Y": -26.18, - "Z": -8180.01 + "Z": -8179.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880295,7 +880295,7 @@ "2. Topological Coordinates": { "X": -165.39, "Y": -160.27, - "Z": -8884.84 + "Z": -8884.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880450,9 +880450,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": 43.36, + "X": 43.37, "Y": -67.39, - "Z": -8208.96 + "Z": -8208.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880609,7 +880609,7 @@ "2. Topological Coordinates": { "X": -615.79, "Y": -50.31, - "Z": -8621.97 + "Z": -8621.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880763,7 +880763,7 @@ "Cognitive Load Exposure": "12.92%", "Error & Exception Exposure": "32.78%", "Tech Debt Exposure": "13.96%", - "Testing Exposure": "2.46%", + "Testing Exposure": "2.45%", "API Exposure": "4.4%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -882088,9 +882088,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5853.71, + "X": 5853.3, "Y": -300.32, - "Z": -9989.72 + "Z": -9989.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882256,9 +882256,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5588.74, + "X": 5588.33, "Y": -225.58, - "Z": -9295.9 + "Z": -9295.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882424,9 +882424,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5775.92, + "X": 5775.51, "Y": -210.37, - "Z": -9493.06 + "Z": -9492.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -883599,9 +883599,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": -6094.39, + "X": -6093.81, "Y": -132.9, - "Z": 8165.63 + "Z": 8164.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -883756,9 +883756,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": -5847.42, + "X": -5846.85, "Y": -120.12, - "Z": 7576.81 + "Z": 7576.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -883913,9 +883913,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": -5842.24, + "X": -5841.66, "Y": -124.13, - "Z": 8127.79 + "Z": 8126.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884094,9 +884094,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5793.15, + "X": -5792.46, "Y": -111.32, - "Z": 6069.46 + "Z": 6068.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884262,9 +884262,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5954.23, + "X": -5953.54, "Y": -166.87, - "Z": 6134.17 + "Z": 6133.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884430,9 +884430,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5772.88, + "X": -5772.19, "Y": -124.49, - "Z": 5654.7 + "Z": 5654.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884598,9 +884598,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5567.78, + "X": -5567.1, "Y": -118.84, - "Z": 6110.63 + "Z": 6109.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884766,9 +884766,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6205.3, + "X": -6204.61, "Y": -172.32, - "Z": 5942.15 + "Z": 5941.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884934,9 +884934,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5412.57, + "X": -5411.88, "Y": -47.61, - "Z": 5658.58 + "Z": 5657.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885102,9 +885102,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5948.63, + "X": -5947.95, "Y": -175.59, - "Z": 6280.3 + "Z": 6279.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885270,9 +885270,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6009.54, + "X": -6008.85, "Y": -116.09, - "Z": 5424.59 + "Z": 5423.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885438,9 +885438,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5314.31, + "X": -5313.62, "Y": -65.76, - "Z": 6292.6 + "Z": 6291.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885606,9 +885606,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6321.97, + "X": -6321.28, "Y": -234.68, - "Z": 6281.69 + "Z": 6280.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885774,9 +885774,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5531.81, + "X": -5531.13, "Y": -100.74, - "Z": 5272.89 + "Z": 5272.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885942,9 +885942,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5603.69, + "X": -5603.0, "Y": -127.02, - "Z": 6530.49 + "Z": 6529.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886110,9 +886110,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6356.01, + "X": -6355.32, "Y": -242.67, - "Z": 5725.31 + "Z": 5724.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886278,9 +886278,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5135.47, + "X": -5134.78, "Y": -75.93, - "Z": 5761.92 + "Z": 5761.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886446,9 +886446,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6147.47, + "X": -6146.79, "Y": -252.01, - "Z": 6371.43 + "Z": 6370.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886614,9 +886614,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5902.73, + "X": -5902.04, "Y": -81.01, - "Z": 5071.97 + "Z": 5071.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888070,9 +888070,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7466.83, + "X": 7466.25, "Y": -115.43, - "Z": -8878.12 + "Z": -8877.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888227,9 +888227,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7479.48, + "X": 7478.9, "Y": -71.41, - "Z": -8731.88 + "Z": -8731.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888384,9 +888384,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7242.9, + "X": 7242.32, "Y": -21.96, - "Z": -8555.96 + "Z": -8555.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888903,9 +888903,9 @@ "Identity Proof": "Single Indicator (Ext: .nix)" }, "2. Topological Coordinates": { - "X": -2125.26, + "X": -2125.23, "Y": 96.0, - "Z": -9095.16 + "Z": -9095.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889060,9 +889060,9 @@ "Identity Proof": "Single Indicator (Ext: .nix)" }, "2. Topological Coordinates": { - "X": -2342.39, + "X": -2342.36, "Y": 86.12, - "Z": -8858.25 + "Z": -8858.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889241,9 +889241,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6653.11, + "X": -7209.73, "Y": -5.53, - "Z": -7251.97 + "Z": 7252.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889398,9 +889398,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6930.94, + "X": -7487.56, "Y": 17.77, - "Z": -7125.62 + "Z": 7379.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889555,9 +889555,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6610.13, + "X": -7166.75, "Y": -57.16, - "Z": -7684.39 + "Z": 6820.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889736,9 +889736,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 7122.14, + "X": -6649.63, "Y": -147.44, - "Z": -5765.29 + "Z": -7316.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889893,9 +889893,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6849.07, + "X": -6922.71, "Y": -198.73, - "Z": -5834.83 + "Z": -7386.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890050,9 +890050,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 7090.3, + "X": -6681.47, "Y": -172.08, - "Z": -6200.62 + "Z": -7752.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890907,9 +890907,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": -773.41, + "X": -773.4, "Y": 92.28, - "Z": -9094.74 + "Z": -9094.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -891064,9 +891064,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": -554.24, + "X": -554.23, "Y": 141.88, - "Z": -9443.23 + "Z": -9443.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -891922,9 +891922,9 @@ "Identity Proof": "Single Indicator (Ext: .csv)" }, "2. Topological Coordinates": { - "X": 1008.53, + "X": 1008.48, "Y": 187.56, - "Z": -9466.48 + "Z": -9465.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -892079,9 +892079,9 @@ "Identity Proof": "Single Indicator (Ext: .tsv)" }, "2. Topological Coordinates": { - "X": 768.38, + "X": 768.32, "Y": 221.85, - "Z": -9346.87 + "Z": -9346.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894894,9 +894894,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6433.08, + "X": 6432.56, "Y": 147.19, - "Z": -9407.46 + "Z": -9406.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -895976,9 +895976,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -9641.86, + "X": -9638.65, "Y": -134.52, - "Z": -1691.25 + "Z": -1690.7 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -896133,9 +896133,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -9831.44, + "X": -9828.23, "Y": -115.04, - "Z": -1320.96 + "Z": -1320.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896290,9 +896290,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -9531.36, + "X": -9528.16, "Y": -116.02, - "Z": -2115.94 + "Z": -2115.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896449,9 +896449,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -9379.02, + "X": -9375.81, "Y": -163.93, - "Z": -1262.7 + "Z": -1262.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896636,9 +896636,9 @@ "Identity Proof": "Single Indicator (Ext: .mlir)" }, "2. Topological Coordinates": { - "X": -6561.01, + "X": -6560.51, "Y": -136.67, - "Z": 8021.81 + "Z": 8021.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896783,24 +896783,24 @@ } }, "jcl/cash-account-cobol": { - "Directory Group Magnitude": 16.82, + "Directory Group Magnitude": 15.76, "File Count": 3, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "4.94%", - "Error & Exception Exposure": "83.59%", - "Tech Debt Exposure": "61.73%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "3.42%", + "Error & Exception Exposure": "78.21%", + "Tech Debt Exposure": "64.41%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "97.78%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.29%", + "Documentation Exposure": "40.99%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -896817,9 +896817,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -7431.87, - "Y": 196.62, - "Z": 7312.07 + "X": 6897.69, + "Y": 196.55, + "Z": -5642.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896829,21 +896829,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 47, - "Coding LOC": 44, - "Documentation LOC": 0, - "Structural Magnitude": 3.98, + "Coding LOC": 41, + "Documentation LOC": 3, + "Structural Magnitude": 3.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.114 + "Raw Cognitive Density": 0.122 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.09%", - "Error & Exception Exposure": "78.0%", + "Cognitive Load Exposure": "5.25%", + "Error & Exception Exposure": "79.05%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -896851,7 +896851,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.23%", + "Documentation Exposure": "38.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -896903,7 +896903,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -896988,9 +896988,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -7205.53, + "X": 7123.35, "Y": 180.8, - "Z": 7078.2 + "Z": -5875.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897000,9 +897000,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 104, - "Coding LOC": 100, - "Documentation LOC": 0, - "Structural Magnitude": 10.9, + "Coding LOC": 83, + "Documentation LOC": 17, + "Structural Magnitude": 9.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -897012,9 +897012,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "82.85%", - "Tech Debt Exposure": "85.2%", - "Testing Exposure": "2.39%", + "Error & Exception Exposure": "64.03%", + "Tech Debt Exposure": "93.22%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -897022,39 +897022,29 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.75%", + "Documentation Exposure": "20.49%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "CRTABS", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 32, + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 36, - "End Line": 67 + "End Line": 62 }, { "Function Name": "CREATE", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 28, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 24, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 8, - "End Line": 35 - }, - { - "Function Name": "CRGRACC", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 68, - "End Line": 86 + "End Line": 31 }, { "Function Name": "CRINDX", @@ -897065,6 +897055,16 @@ "Control Flow Ratio": "0.0%", "Start Line": 87, "End Line": 103 + }, + { + "Function Name": "CRGRACC", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 68, + "End Line": 82 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -897074,9 +897074,9 @@ "Function Parameters": 0, "Function/Method Declarations": 4, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 22, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -897104,7 +897104,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -897188,9 +897188,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -7199.67, - "Y": 196.48, - "Z": 6654.08 + "X": 7129.15, + "Y": 196.53, + "Z": -6299.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897200,29 +897200,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 17, - "Coding LOC": 17, - "Documentation LOC": 0, - "Structural Magnitude": 1.94, + "Coding LOC": 14, + "Documentation LOC": 3, + "Structural Magnitude": 1.88, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.294 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.73%", - "Error & Exception Exposure": "89.93%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.27%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.88%", + "Documentation Exposure": "63.72%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -897274,7 +897274,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -897561,9 +897561,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8013.85, + "X": 8013.2, "Y": -23.25, - "Z": -8118.71 + "Z": -8118.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897923,9 +897923,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -7873.92, + "X": -7873.45, "Y": 219.52, - "Z": 6836.39 + "Z": 6835.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -902393,9 +902393,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2663.74, + "X": 2663.5, "Y": 288.93, - "Z": -9994.05 + "Z": -9993.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902561,9 +902561,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2890.4, + "X": 2890.16, "Y": 208.99, - "Z": -10256.77 + "Z": -10255.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -904352,190 +904352,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -3001.23, + "X": -3001.09, "Y": 56.28, - "Z": -8573.86 - }, - "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 202, - "Coding LOC": 0, - "Documentation LOC": 169, - "Structural Magnitude": 4.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "xml/springboot": { - "Directory Group Magnitude": 4.04, - "File Count": 1, - "Ecosystem Fingerprint (Archetypes)": { - "Static: Literature & Documentation": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "0.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "xml/springboot/LICENSE.txt": { - "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "xml/springboot/LICENSE.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" - }, - "2. Topological Coordinates": { - "X": 8996.92, - "Y": -31.8, - "Z": -2795.07 + "Z": -8573.48 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -904679,101 +904498,90 @@ } } }, - "jcl/cics-java-jcics-samples": { - "Directory Group Magnitude": 3.14, + "xml/springboot": { + "Directory Group Magnitude": 4.04, "File Count": 1, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" + "Static: Literature & Documentation": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "5.96%", - "Error & Exception Exposure": "82.6%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", + "Testing Exposure": "0.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "0.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "48.08%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "jcl/cics-java-jcics-samples/etc_VSAM_DEFVSAM.jcl": { + "xml/springboot/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "etc_VSAM_DEFVSAM.jcl", - "Path": "jcl/cics-java-jcics-samples/etc_VSAM_DEFVSAM.jcl", - "Language": "Jcl", + "Filename": "LICENSE.txt", + "Path": "xml/springboot/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 2459.79, - "Y": -254.89, - "Z": 9660.67 + "X": 8996.92, + "Y": -31.8, + "Z": -2795.07 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 3.14, + "Total LOC": 202, + "Coding LOC": 0, + "Documentation LOC": 169, + "Structural Magnitude": 4.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", - "Error & Exception Exposure": "82.6%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "48.08%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "DEFINE", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 4, - "End Line": 38 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -904813,7 +904621,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 24, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -904830,11 +904638,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 5, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -904855,7 +904663,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -904906,9 +904714,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -9527.03, + "X": 2509.31, "Y": -179.88, - "Z": 2084.89 + "Z": 9667.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -905073,6 +904881,198 @@ } } }, + "jcl/cics-java-jcics-samples": { + "Directory Group Magnitude": 3.12, + "File Count": 1, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "6.07%", + "Error & Exception Exposure": "83.04%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "48.05%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "jcl/cics-java-jcics-samples/etc_VSAM_DEFVSAM.jcl": { + "1. Artifact Identity": { + "Filename": "etc_VSAM_DEFVSAM.jcl", + "Path": "jcl/cics-java-jcics-samples/etc_VSAM_DEFVSAM.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -9576.5, + "Y": -254.89, + "Z": 2077.6 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 39, + "Coding LOC": 31, + "Documentation LOC": 1, + "Structural Magnitude": 3.12, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.161 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "6.07%", + "Error & Exception Exposure": "83.04%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "48.05%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "DEFINE", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 4, + "End Line": 38 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 24, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 5, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 5, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, "css/threejs_app_ui": { "Directory Group Magnitude": 2.64, "File Count": 3, @@ -906151,9 +906151,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -1605.39, + "X": -1605.37, "Y": 51.68, - "Z": -9507.18 + "Z": -9507.08 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -906877,7 +906877,7 @@ "2. Topological Coordinates": { "X": -21.85, "Y": -201.21, - "Z": -9698.73 + "Z": -9698.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910173,9 +910173,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -1173.22, + "X": -1173.2, "Y": -222.59, - "Z": -9046.63 + "Z": -9046.53 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910330,9 +910330,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -896.66, + "X": -896.64, "Y": -176.94, - "Z": -8684.04 + "Z": -8683.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910498,9 +910498,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1334.93, + "X": -1334.92, "Y": -189.39, - "Z": -8786.02 + "Z": -8785.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910662,9 +910662,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1556.39, + "X": -1556.38, "Y": -224.2, - "Z": -9123.23 + "Z": -9123.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910830,9 +910830,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1134.34, + "X": -1134.33, "Y": -268.52, - "Z": -9187.54 + "Z": -9187.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911199,9 +911199,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -9997.68, + "X": -9994.84, "Y": -95.34, - "Z": -1189.58 + "Z": -1189.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -911380,9 +911380,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 1619.86, + "X": 1619.82, "Y": -182.75, - "Z": -9484.33 + "Z": -9484.09 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -912104,9 +912104,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3524.95, + "X": 3524.65, "Y": -80.09, - "Z": -10039.22 + "Z": -10038.34 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -912828,9 +912828,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5414.16, + "X": 5413.75, "Y": 139.72, - "Z": -9768.65 + "Z": -9767.89 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913190,9 +913190,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5481.08, + "X": -5480.5, "Y": -168.2, - "Z": 8328.35 + "Z": 8327.48 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913552,9 +913552,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7148.97, + "X": 7148.36, "Y": -122.51, - "Z": -8941.86 + "Z": -8941.09 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913914,9 +913914,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7155.07, + "X": -7154.51, "Y": 130.81, - "Z": 7696.63 + "Z": 7696.03 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914638,9 +914638,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -8387.42, + "X": -8386.91, "Y": -88.11, - "Z": 6442.67 + "Z": 6442.28 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916267,9 +916267,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -2452.78, + "X": -2452.67, "Y": -39.53, - "Z": -8722.59 + "Z": -8722.18 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916991,9 +916991,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -1007.11, + "X": -1007.09, "Y": -133.53, - "Z": -9538.76 + "Z": -9538.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917717,7 +917717,7 @@ "2. Topological Coordinates": { "X": 614.43, "Y": -52.05, - "Z": -9641.13 + "Z": -9641.03 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918258,9 +918258,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -10139.02, + "X": -10135.87, "Y": -98.34, - "Z": -1860.91 + "Z": -1860.31 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918439,9 +918439,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2263.8, + "X": 2263.75, "Y": -152.29, - "Z": -9564.23 + "Z": -9563.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919163,9 +919163,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4387.96, + "X": 4387.63, "Y": 27.26, - "Z": -10357.06 + "Z": -10356.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919887,9 +919887,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6286.67, + "X": 6286.25, "Y": -166.67, - "Z": -9827.31 + "Z": -9826.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920249,9 +920249,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6348.39, + "X": -6347.8, "Y": 238.37, - "Z": 8441.76 + "Z": 8440.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920611,9 +920611,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7995.81, + "X": 7995.22, "Y": -156.25, - "Z": -8802.84 + "Z": -8802.19 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921154,9 +921154,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 7638.69, + "X": 7637.83, "Y": 141.51, - "Z": -5896.13 + "Z": -5895.45 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -926038,9 +926038,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4744.11, + "X": 4743.76, "Y": 252.02, - "Z": -9991.27 + "Z": -9990.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -926195,9 +926195,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4486.86, + "X": 4486.51, "Y": 281.75, - "Z": -9893.93 + "Z": -9893.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -926740,9 +926740,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -7740.34, + "X": -7739.17, "Y": -114.88, - "Z": 7431.06 + "Z": 7429.96 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index 3a630f16d..291b96e3a 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -11,14 +11,14 @@ "pyyaml": false }, "Target Root Name": "data", - "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-31T16:53:42.364125+00:00", - "Total Scan Duration": "47.17 seconds" + "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", + "Analysis ISO Timestamp": "2026-08-31T18:16:21.322205+00:00", + "Total Scan Duration": "18.31 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -26,7 +26,7 @@ "summary": { "total_files": 3365, "verified_files": 2817, - "total_loc": 836237, + "total_loc": 834627, "dominant_language": "c", "volatility_index": 0.0, "Percent_Visible": 83.7 @@ -236,10 +236,10 @@ } }, "health": { - "avg_cognitive_load": 29.833, - "avg_safety_score": 47.587, - "avg_tech_debt": 42.493, - "avg_documentation": 29.612 + "avg_cognitive_load": 29.79, + "avg_safety_score": 47.68, + "avg_tech_debt": 42.638, + "avg_documentation": 28.959 }, "composition": { "markdown": { @@ -409,8 +409,8 @@ }, "jcl": { "files": 185, - "loc": 7447, - "impact": 944.7400000000002 + "loc": 5837, + "impact": 894.9400000000007 }, "kotlin": { "files": 5, @@ -1152,20 +1152,20 @@ }, "jcl/cics-genapp": { "file_count": 30, - "total_mass": 270.96, + "total_mass": 261.84, "avg_exposures": { - "cognitive_load": 2.94, - "safety_score": 53.83, - "tech_debt": 46.78, - "verification": 2.28, + "cognitive_load": 3.51, + "safety_score": 53.66, + "tech_debt": 51.36, + "verification": 2.24, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.45, "dead_code": 0.0, - "spec_match": 95.33, + "spec_match": 93.33, "stability": 48.33, "churn": 0.0, - "documentation": 11.36, + "documentation": 11.13, "secrets_risk": 0.0 } }, @@ -2658,7 +2658,7 @@ "cognitive_load": 12.92, "safety_score": 32.78, "tech_debt": 13.96, - "verification": 2.46, + "verification": 2.45, "api_exposure": 4.4, "concurrency": 0.0, "state_flux": 0.0, @@ -5009,50 +5009,50 @@ }, "jcl/cash-account-cobol": { "file_count": 3, - "total_mass": 16.82, + "total_mass": 15.76, "avg_exposures": { - "cognitive_load": 4.94, - "safety_score": 83.59, - "tech_debt": 61.73, - "verification": 2.38, + "cognitive_load": 3.42, + "safety_score": 78.21, + "tech_debt": 64.41, + "verification": 2.33, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, - "spec_match": 100.0, + "spec_match": 97.78, "stability": 50.0, "churn": 0.0, - "documentation": 43.29, + "documentation": 40.99, "secrets_risk": 0.0 } }, "jcl/cics-banking-sample-application-cbsa": { "file_count": 99, - "total_mass": 332.32, + "total_mass": 312.88, "avg_exposures": { - "cognitive_load": 6.16, - "safety_score": 51.11, - "tech_debt": 56.97, - "verification": 1.88, + "cognitive_load": 6.08, + "safety_score": 52.59, + "tech_debt": 58.1, + "verification": 1.47, "api_exposure": 1.39, "concurrency": 0.0, - "state_flux": 1.49, + "state_flux": 1.61, "dead_code": 0.0, - "spec_match": 78.45, + "spec_match": 59.93, "stability": 50.0, "churn": 0.0, - "documentation": 53.06, + "documentation": 38.15, "secrets_risk": 0.0 } }, "jcl/cics-java-jcics-samples": { "file_count": 1, - "total_mass": 3.14, + "total_mass": 3.12, "avg_exposures": { - "cognitive_load": 5.96, - "safety_score": 82.6, + "cognitive_load": 6.07, + "safety_score": 83.04, "tech_debt": 0.0, - "verification": 2.37, + "verification": 2.38, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, @@ -5060,45 +5060,45 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 48.08, + "documentation": 48.05, "secrets_risk": 0.0 } }, "jcl/cobol-programming-course": { "file_count": 43, - "total_mass": 211.82, + "total_mass": 204.5, "avg_exposures": { - "cognitive_load": 9.91, - "safety_score": 69.66, - "tech_debt": 80.67, - "verification": 2.29, + "cognitive_load": 6.63, + "safety_score": 71.93, + "tech_debt": 81.27, + "verification": 2.13, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, - "spec_match": 92.25, + "spec_match": 83.1, "stability": 50.0, "churn": 0.0, - "documentation": 55.84, + "documentation": 50.35, "secrets_risk": 0.0 } }, "jcl/zopeneditor-sample": { "file_count": 10, - "total_mass": 110.72, + "total_mass": 97.88, "avg_exposures": { - "cognitive_load": 2.79, - "safety_score": 80.75, - "tech_debt": 68.22, - "verification": 2.36, + "cognitive_load": 4.55, + "safety_score": 84.44, + "tech_debt": 80.85, + "verification": 2.11, "api_exposure": 0.0, "concurrency": 0.0, - "state_flux": 41.96, + "state_flux": 55.48, "dead_code": 0.0, - "spec_match": 100.0, + "spec_match": 88.0, "stability": 50.0, "churn": 0.0, - "documentation": 32.83, + "documentation": 21.53, "secrets_risk": 0.0 } }, @@ -122903,9 +122903,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2058.38, + "X": 2058.22, "Y": -5.44, - "Z": -8161.67 + "Z": -8161.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -125095,9 +125095,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2111.04, + "X": 2110.87, "Y": 39.66, - "Z": -8558.89 + "Z": -8558.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -126549,9 +126549,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2381.41, + "X": 2381.25, "Y": 37.4, - "Z": -7649.48 + "Z": -7648.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -127422,9 +127422,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": 1881.29, + "X": 1881.12, "Y": -72.12, - "Z": -7347.4 + "Z": -7346.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -127579,9 +127579,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 1737.35, + "X": 1737.18, "Y": -100.48, - "Z": -7777.54 + "Z": -7776.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -139217,9 +139217,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1545.01, + "X": 1544.85, "Y": -73.67, - "Z": -7976.7 + "Z": -7976.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -139435,9 +139435,9 @@ "Identity Proof": "Single Indicator (Ext: .at)" }, "2. Topological Coordinates": { - "X": 2574.02, + "X": 2573.85, "Y": 98.26, - "Z": -8460.97 + "Z": -8460.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -177320,7 +177320,7 @@ "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "83.78%", "Tech Debt Exposure": "84.11%", - "Testing Exposure": "2.77%", + "Testing Exposure": "2.76%", "API Exposure": "1.24%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -257941,9 +257941,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -891.71, + "X": -891.7, "Y": -107.16, - "Z": -8287.16 + "Z": -8287.02 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -258098,9 +258098,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -767.69, + "X": -767.68, "Y": -297.2, - "Z": -7142.27 + "Z": -7142.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -258261,9 +258261,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -598.56, + "X": -598.55, "Y": -160.14, - "Z": -7921.99 + "Z": -7921.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -259136,9 +259136,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -956.53, + "X": -956.52, "Y": -177.82, - "Z": -7355.7 + "Z": -7355.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -260588,9 +260588,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -661.47, + "X": -661.46, "Y": -224.26, - "Z": -7722.68 + "Z": -7722.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263008,9 +263008,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -1183.26, + "X": -1183.25, "Y": -105.25, - "Z": -7729.68 + "Z": -7729.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263468,9 +263468,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -330.04, + "X": -330.03, "Y": -352.58, - "Z": -7362.04 + "Z": -7361.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263680,9 +263680,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -192.18, + "X": -192.16, "Y": -226.17, - "Z": -7754.42 + "Z": -7754.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -356246,9 +356246,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.61, + "X": 3101.32, "Y": -96.09, - "Z": -9885.04 + "Z": -9884.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -357160,9 +357160,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.24, + "X": 2746.96, "Y": -174.73, - "Z": -9333.82 + "Z": -9332.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -358608,9 +358608,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3073.21, + "X": 3072.92, "Y": -49.48, - "Z": -9616.2 + "Z": -9615.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -360340,9 +360340,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3356.73, + "X": 3356.44, "Y": 40.54, - "Z": -9276.06 + "Z": -9275.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -360508,9 +360508,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2575.92, + "X": 2575.63, "Y": -244.18, - "Z": -9678.39 + "Z": -9677.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -428278,9 +428278,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5211.22, + "X": -5210.58, "Y": -302.43, - "Z": 6994.6 + "Z": 6993.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -428481,9 +428481,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5693.18, + "X": -5692.54, "Y": -263.75, - "Z": 7144.05 + "Z": 7143.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -430109,9 +430109,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5843.94, + "X": -5843.31, "Y": -117.52, - "Z": 7899.42 + "Z": 7898.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -430441,9 +430441,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5373.19, + "X": -5372.56, "Y": -177.79, - "Z": 7689.62 + "Z": 7688.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -431405,9 +431405,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -5642.02, + "X": -5641.39, "Y": -322.11, - "Z": 6747.61 + "Z": 6746.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -432678,9 +432678,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -6002.8, + "X": -6002.16, "Y": -147.87, - "Z": 7283.07 + "Z": 7282.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -434041,9 +434041,9 @@ "Identity Proof": "Single Indicator (Ext: .scala)" }, "2. Topological Coordinates": { - "X": -6222.6, + "X": -6221.97, "Y": -246.69, - "Z": 7232.11 + "Z": 7231.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -441424,9 +441424,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7380.28, + "X": 7379.65, "Y": 165.91, - "Z": -8428.83 + "Z": -8428.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -442227,9 +442227,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6999.67, + "X": 6999.03, "Y": 265.38, - "Z": -7713.76 + "Z": -7713.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443197,9 +443197,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6787.87, + "X": 6787.23, "Y": 225.2, - "Z": -7949.41 + "Z": -7948.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443478,9 +443478,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7825.34, + "X": 7824.7, "Y": 134.51, - "Z": -8174.62 + "Z": -8173.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443750,9 +443750,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7638.48, + "X": 7637.84, "Y": 311.63, - "Z": -7253.96 + "Z": -7253.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444028,9 +444028,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7292.93, + "X": 7292.29, "Y": 257.91, - "Z": -7908.85 + "Z": -7908.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445138,9 +445138,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7202.11, + "X": 7201.47, "Y": 404.61, - "Z": -7209.25 + "Z": -7208.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445529,9 +445529,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.49, + "X": 3754.12, "Y": -127.57, - "Z": -9731.67 + "Z": -9730.85 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -445686,9 +445686,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4533.89, + "X": 4533.52, "Y": -109.1, - "Z": -9552.37 + "Z": -9551.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446918,9 +446918,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3541.43, + "X": 3541.07, "Y": -122.2, - "Z": -9221.12 + "Z": -9220.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447638,9 +447638,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4001.27, + "X": 4000.91, "Y": -115.21, - "Z": -9116.94 + "Z": -9116.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -448960,9 +448960,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4066.08, + "X": 4065.71, "Y": -150.26, - "Z": -9702.76 + "Z": -9701.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450009,9 +450009,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3853.66, + "X": 3853.29, "Y": -147.74, - "Z": -8520.24 + "Z": -8519.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450381,9 +450381,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3774.77, + "X": 3774.4, "Y": -155.51, - "Z": -8958.16 + "Z": -8957.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452209,9 +452209,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4360.32, + "X": 4359.96, "Y": -127.18, - "Z": -8644.37 + "Z": -8643.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544150,9 +544150,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1159.5, + "X": 1159.37, "Y": 225.95, - "Z": -6393.35 + "Z": -6392.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544368,9 +544368,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2028.81, + "X": 2028.68, "Y": 207.83, - "Z": -7210.43 + "Z": -7209.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544556,9 +544556,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1195.59, + "X": 1195.45, "Y": 264.26, - "Z": -7672.82 + "Z": -7672.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544734,9 +544734,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 882.31, + "X": 882.18, "Y": 256.41, - "Z": -6412.95 + "Z": -6412.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -544760,7 +544760,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "92.96%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.98%", + "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -544912,9 +544912,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1881.57, + "X": 1881.44, "Y": 219.35, - "Z": -6626.11 + "Z": -6625.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545110,9 +545110,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1602.26, + "X": 1602.13, "Y": 249.49, - "Z": -7446.05 + "Z": -7445.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545288,9 +545288,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1526.71, + "X": 1526.58, "Y": 168.24, - "Z": -6165.4 + "Z": -6164.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545466,9 +545466,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1057.59, + "X": 1057.46, "Y": 287.14, - "Z": -7506.33 + "Z": -7505.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545654,9 +545654,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1771.1, + "X": 1770.97, "Y": 272.25, - "Z": -7277.06 + "Z": -7276.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -545912,9 +545912,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 715.84, + "X": 715.71, "Y": 233.98, - "Z": -6512.34 + "Z": -6511.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -546110,9 +546110,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 854.89, + "X": 854.76, "Y": 245.54, - "Z": -6914.81 + "Z": -6914.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -546318,9 +546318,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1000.59, + "X": 1000.46, "Y": 203.57, - "Z": -6727.38 + "Z": -6726.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -546588,9 +546588,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1350.77, + "X": 1350.63, "Y": 210.13, - "Z": -6903.89 + "Z": -6903.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -546926,9 +546926,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": 1952.48, + "X": 1952.35, "Y": 177.61, - "Z": -6262.23 + "Z": -6261.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -547094,9 +547094,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 742.1, + "X": 741.96, "Y": 294.77, - "Z": -7442.34 + "Z": -7441.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -547272,9 +547272,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1566.78, + "X": 1566.65, "Y": 200.61, - "Z": -6733.61 + "Z": -6732.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -547464,9 +547464,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1356.16, + "X": 1356.03, "Y": 252.59, - "Z": -7436.76 + "Z": -7436.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -551658,7 +551658,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.31%", + "Testing Exposure": "1.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -552513,7 +552513,7 @@ "Cognitive Load Exposure": "76.15%", "Error & Exception Exposure": "96.5%", "Tech Debt Exposure": "57.2%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "1.17%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -560180,9 +560180,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": -5241.59, + "X": -5241.03, "Y": -220.14, - "Z": 8057.04 + "Z": 8056.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -560611,9 +560611,9 @@ "Identity Proof": "Metadata Anchor (Makefile.PL)" }, "2. Topological Coordinates": { - "X": -5440.69, + "X": -5440.12, "Y": -177.34, - "Z": 7761.73 + "Z": 7760.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -560772,9 +560772,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": -4953.87, + "X": -4953.31, "Y": -211.99, - "Z": 7621.77 + "Z": 7620.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -561299,9 +561299,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": -4881.2, + "X": -4880.63, "Y": -142.36, - "Z": 7464.58 + "Z": 7463.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -561551,9 +561551,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": -4607.68, + "X": -4607.11, "Y": -214.74, - "Z": 8272.97 + "Z": 8272.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565628,9 +565628,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3339.07, + "X": -3338.87, "Y": 123.4, - "Z": -5947.7 + "Z": -5947.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565785,9 +565785,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2146.74, + "X": -2146.54, "Y": -7.48, - "Z": -6025.66 + "Z": -6025.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565965,9 +565965,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2898.78, + "X": -2898.58, "Y": 104.01, - "Z": -5592.58 + "Z": -5592.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566182,9 +566182,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2671.84, + "X": -2671.64, "Y": 39.61, - "Z": -6488.56 + "Z": -6488.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566836,9 +566836,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3003.95, + "X": -3003.75, "Y": 31.14, - "Z": -6597.21 + "Z": -6596.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566997,9 +566997,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2458.46, + "X": -2458.26, "Y": 19.06, - "Z": -6681.59 + "Z": -6681.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567156,9 +567156,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2295.89, + "X": -2295.69, "Y": -60.08, - "Z": -6550.69 + "Z": -6550.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567473,9 +567473,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3249.99, + "X": -3249.79, "Y": 136.04, - "Z": -6170.14 + "Z": -6169.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567715,9 +567715,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2740.24, + "X": -2740.04, "Y": 79.27, - "Z": -6234.27 + "Z": -6233.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -568165,9 +568165,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2472.15, + "X": -2471.95, "Y": 57.03, - "Z": -5577.77 + "Z": -5577.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -568938,9 +568938,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3021.46, + "X": -3021.26, "Y": 86.64, - "Z": -5979.09 + "Z": -5978.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572251,9 +572251,9 @@ "Identity Proof": "Single Indicator (Ext: .podspec)" }, "2. Topological Coordinates": { - "X": -2820.07, + "X": -2819.9, "Y": 66.77, - "Z": -6847.19 + "Z": -6846.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572419,9 +572419,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2669.08, + "X": -2668.92, "Y": 286.85, - "Z": -7523.03 + "Z": -7522.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572609,9 +572609,9 @@ "Identity Proof": "Metadata Anchor (Package.swift)" }, "2. Topological Coordinates": { - "X": -2287.36, + "X": -2287.2, "Y": 252.72, - "Z": -7626.02 + "Z": -7625.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572768,9 +572768,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -3243.62, + "X": -3243.45, "Y": 166.02, - "Z": -7237.91 + "Z": -7237.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -573008,9 +573008,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2966.86, + "X": -2966.69, "Y": 82.32, - "Z": -6913.53 + "Z": -6913.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -573668,9 +573668,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2391.81, + "X": -2391.65, "Y": 126.68, - "Z": -6882.31 + "Z": -6881.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -573978,9 +573978,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2708.71, + "X": -2708.55, "Y": 135.59, - "Z": -7404.25 + "Z": -7403.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -583924,9 +583924,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -7997.68, + "X": -7997.17, "Y": 134.84, - "Z": 6229.53 + "Z": 6229.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -584464,9 +584464,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7446.03, + "X": -7445.52, "Y": 124.77, - "Z": 6525.23 + "Z": 6524.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -584621,9 +584621,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -7736.54, + "X": -7736.03, "Y": 160.35, - "Z": 5640.01 + "Z": 5639.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -584809,9 +584809,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7712.39, + "X": -7711.88, "Y": 101.25, - "Z": 6029.36 + "Z": 6028.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -585274,9 +585274,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5190.91, + "X": 5190.5, "Y": 237.38, - "Z": -9064.59 + "Z": -9063.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -585431,9 +585431,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4396.26, + "X": 4395.86, "Y": 229.37, - "Z": -9471.75 + "Z": -9470.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -585589,9 +585589,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.55, + "X": 4895.15, "Y": 292.43, - "Z": -9844.47 + "Z": -9843.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -587625,9 +587625,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4901.47, + "X": 4901.07, "Y": 202.09, - "Z": -9501.84 + "Z": -9501.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -589359,9 +589359,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4599.67, + "X": 4599.26, "Y": 227.35, - "Z": -9002.45 + "Z": -9001.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590182,9 +590182,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 463.34, + "X": 463.33, "Y": -200.51, - "Z": -9534.46 + "Z": -9534.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -590339,9 +590339,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 110.42, + "X": 110.41, "Y": -101.16, - "Z": -8990.4 + "Z": -8990.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590867,9 +590867,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 356.13, + "X": 356.12, "Y": -98.31, - "Z": -9205.37 + "Z": -9205.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -603374,9 +603374,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 488.57, + "X": 488.53, "Y": 159.93, - "Z": -7401.25 + "Z": -7400.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -603572,9 +603572,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 374.97, + "X": 374.93, "Y": 105.89, - "Z": -8360.8 + "Z": -8360.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -603743,9 +603743,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 1256.51, + "X": 1256.46, "Y": 195.61, - "Z": -7862.92 + "Z": -7862.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -603914,9 +603914,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 655.25, + "X": 655.2, "Y": 155.7, - "Z": -8085.23 + "Z": -8084.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -604229,9 +604229,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 926.24, + "X": 926.19, "Y": 215.76, - "Z": -7443.58 + "Z": -7443.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -604431,9 +604431,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 418.66, + "X": 418.61, "Y": 119.95, - "Z": -7685.5 + "Z": -7684.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -604852,9 +604852,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 187.64, + "X": 187.6, "Y": 151.98, - "Z": -8105.84 + "Z": -8105.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -605154,9 +605154,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 691.99, + "X": 691.95, "Y": 156.84, - "Z": -8393.13 + "Z": -8392.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -605650,9 +605650,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 1122.91, + "X": 1122.86, "Y": 174.24, - "Z": -8234.41 + "Z": -8233.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628165,7 +628165,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "99.81%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.39%", + "Testing Exposure": "3.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -641870,9 +641870,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3516.24, + "X": 3515.9, "Y": 71.06, - "Z": -8332.32 + "Z": -8331.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642078,9 +642078,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2648.93, + "X": 2648.6, "Y": 152.18, - "Z": -7788.57 + "Z": -7787.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642246,9 +642246,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3253.24, + "X": 3252.91, "Y": 174.96, - "Z": -7677.11 + "Z": -7676.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642403,9 +642403,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3062.26, + "X": 3061.92, "Y": 89.43, - "Z": -8675.48 + "Z": -8674.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642721,9 +642721,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.89, + "X": 2925.56, "Y": 80.1, - "Z": -8861.51 + "Z": -8860.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642889,9 +642889,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3083.15, + "X": 3082.82, "Y": 118.21, - "Z": -8096.06 + "Z": -8095.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643457,9 +643457,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2490.44, + "X": 2490.11, "Y": 140.87, - "Z": -7952.9 + "Z": -7952.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643655,9 +643655,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3743.03, + "X": 3742.69, "Y": 118.51, - "Z": -8298.49 + "Z": -8297.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643843,9 +643843,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2908.49, + "X": 2908.16, "Y": 179.25, - "Z": -7608.0 + "Z": -7607.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644061,9 +644061,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3381.88, + "X": 3381.54, "Y": 110.37, - "Z": -8947.9 + "Z": -8947.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644218,9 +644218,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2795.05, + "X": 2794.72, "Y": 125.85, - "Z": -8077.2 + "Z": -8076.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644456,9 +644456,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2774.16, + "X": 2773.83, "Y": 129.36, - "Z": -8575.33 + "Z": -8574.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644684,9 +644684,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2412.66, + "X": 2412.33, "Y": 97.98, - "Z": -8660.58 + "Z": -8659.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644852,9 +644852,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3651.4, + "X": 3651.07, "Y": 99.96, - "Z": -8041.78 + "Z": -8040.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645050,9 +645050,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3334.35, + "X": 3334.01, "Y": 92.83, - "Z": -7743.87 + "Z": -7742.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645218,9 +645218,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.79, + "X": 2580.46, "Y": 110.01, - "Z": -8384.19 + "Z": -8383.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645386,9 +645386,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3617.05, + "X": 3616.72, "Y": 137.93, - "Z": -7859.06 + "Z": -7858.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -645568,9 +645568,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1678.78, + "X": 1678.73, "Y": 197.84, - "Z": -9023.2 + "Z": -9022.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646080,9 +646080,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1930.58, + "X": 1930.52, "Y": 180.21, - "Z": -9201.56 + "Z": -9201.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -648592,9 +648592,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2015.93, + "X": 2015.88, "Y": 232.31, - "Z": -9585.79 + "Z": -9585.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657149,9 +657149,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5543.92, + "X": 5543.46, "Y": 137.98, - "Z": -9184.27 + "Z": -9183.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657306,9 +657306,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5619.68, + "X": 5619.22, "Y": 260.73, - "Z": -8066.21 + "Z": -8065.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657470,9 +657470,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5478.71, + "X": 5478.25, "Y": 205.12, - "Z": -8550.58 + "Z": -8549.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658098,9 +658098,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5855.55, + "X": 5855.09, "Y": 149.3, - "Z": -9179.53 + "Z": -9178.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658446,9 +658446,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5305.12, + "X": 5304.66, "Y": 269.32, - "Z": -8740.3 + "Z": -8739.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658704,9 +658704,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5808.31, + "X": 5807.85, "Y": 186.55, - "Z": -8852.98 + "Z": -8852.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -659162,9 +659162,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6071.37, + "X": 6070.91, "Y": 99.09, - "Z": -8310.73 + "Z": -8310.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -659450,9 +659450,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6184.4, + "X": 6183.94, "Y": 55.62, - "Z": -8989.05 + "Z": -8988.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665955,7 +665955,7 @@ "Cognitive Load Exposure": "99.68%", "Error & Exception Exposure": "89.8%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.03%", + "Testing Exposure": "3.02%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -685274,9 +685274,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -920.57, + "X": -920.55, "Y": -227.61, - "Z": -5536.27 + "Z": -5536.13 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -685431,9 +685431,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -877.25, + "X": -877.23, "Y": -197.73, - "Z": -6313.73 + "Z": -6313.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685729,9 +685729,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -473.64, + "X": -473.62, "Y": -240.93, - "Z": -6480.14 + "Z": -6480.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685907,9 +685907,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1155.25, + "X": -1155.22, "Y": -217.67, - "Z": -6626.89 + "Z": -6626.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686105,9 +686105,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1429.13, + "X": -1429.11, "Y": -227.48, - "Z": -6277.73 + "Z": -6277.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686283,9 +686283,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -377.7, + "X": -377.68, "Y": -171.66, - "Z": -6829.47 + "Z": -6829.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686451,9 +686451,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1053.89, + "X": -1053.87, "Y": -280.11, - "Z": -7108.01 + "Z": -7107.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686629,9 +686629,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1038.08, + "X": -1038.05, "Y": -260.02, - "Z": -5850.07 + "Z": -5849.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686817,9 +686817,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -328.18, + "X": -328.16, "Y": -217.08, - "Z": -5753.51 + "Z": -5753.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686995,9 +686995,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -678.34, + "X": -678.32, "Y": -218.82, - "Z": -5702.5 + "Z": -5702.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687173,9 +687173,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1186.99, + "X": -1186.97, "Y": -258.37, - "Z": -5942.44 + "Z": -5942.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687491,9 +687491,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -361.24, + "X": -361.22, "Y": -249.93, - "Z": -5941.36 + "Z": -5941.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687669,9 +687669,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -891.35, + "X": -891.33, "Y": -281.13, - "Z": -6660.4 + "Z": -6660.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687917,9 +687917,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1717.16, + "X": -1717.14, "Y": -270.39, - "Z": -6240.98 + "Z": -6240.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688085,9 +688085,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1455.19, + "X": -1455.17, "Y": -297.08, - "Z": -6115.78 + "Z": -6115.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688253,9 +688253,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1545.11, + "X": -1545.08, "Y": -255.54, - "Z": -6387.12 + "Z": -6386.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688431,9 +688431,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -636.19, + "X": -636.17, "Y": -194.72, - "Z": -6874.92 + "Z": -6874.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688619,9 +688619,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1327.24, + "X": -1327.22, "Y": -288.84, - "Z": -5476.23 + "Z": -5476.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688797,9 +688797,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -634.62, + "X": -634.6, "Y": -205.38, - "Z": -5978.99 + "Z": -5978.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688995,9 +688995,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -217.47, + "X": -217.45, "Y": -216.95, - "Z": -6332.43 + "Z": -6332.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -693773,9 +693773,9 @@ "Identity Proof": "Prose Anchor (MIT-LICENSE)" }, "2. Topological Coordinates": { - "X": -7191.31, + "X": -7190.63, "Y": -214.32, - "Z": 5775.87 + "Z": 5775.25 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -693930,9 +693930,9 @@ "Identity Proof": "Metadata Anchor (Rakefile)" }, "2. Topological Coordinates": { - "X": -6950.23, + "X": -6949.54, "Y": -212.88, - "Z": 5712.52 + "Z": 5711.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -694137,9 +694137,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -7452.47, + "X": -7451.78, "Y": -200.67, - "Z": 6329.12 + "Z": 6328.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -694564,9 +694564,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -7170.42, + "X": -7169.73, "Y": -180.03, - "Z": 6419.02 + "Z": 6418.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -695147,9 +695147,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -6993.02, + "X": -6992.34, "Y": -156.99, - "Z": 6244.51 + "Z": 6243.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -695559,9 +695559,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -6540.99, + "X": -6540.31, "Y": -234.2, - "Z": 6142.29 + "Z": 6141.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -695820,9 +695820,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -6678.18, + "X": -6677.49, "Y": -168.22, - "Z": 6650.76 + "Z": 6650.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -696245,9 +696245,9 @@ "Identity Proof": "Single Indicator (Ext: .rb)" }, "2. Topological Coordinates": { - "X": -7066.53, + "X": -7065.84, "Y": -72.13, - "Z": 6787.98 + "Z": 6787.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702094,9 +702094,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1575.64, + "X": -1575.62, "Y": -141.56, - "Z": -8611.52 + "Z": -8611.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702376,9 +702376,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1287.77, + "X": -1287.75, "Y": -203.92, - "Z": -7929.46 + "Z": -7929.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702609,9 +702609,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1880.52, + "X": -1880.5, "Y": -280.56, - "Z": -7970.41 + "Z": -7970.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702864,9 +702864,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1551.76, + "X": -1551.74, "Y": -165.03, - "Z": -8428.39 + "Z": -8428.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -703595,9 +703595,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1706.49, + "X": -1706.47, "Y": -276.55, - "Z": -7691.04 + "Z": -7690.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -703793,9 +703793,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1132.38, + "X": -1132.36, "Y": -115.73, - "Z": -8506.94 + "Z": -8506.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -704033,9 +704033,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -2036.73, + "X": -2036.7, "Y": -170.9, - "Z": -8298.88 + "Z": -8298.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -707571,7 +707571,7 @@ "Cognitive Load Exposure": "26.89%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.85%", + "Testing Exposure": "2.84%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -715459,7 +715459,7 @@ "Cognitive Load Exposure": "97.77%", "Error & Exception Exposure": "99.69%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.54%", + "Testing Exposure": "2.53%", "API Exposure": "7.02%", "Concurrency Exposure": "99.87%", "State Flux Exposure": "100.0%", @@ -719356,7 +719356,7 @@ "Cognitive Load Exposure": "55.28%", "Error & Exception Exposure": "94.89%", "Tech Debt Exposure": "98.69%", - "Testing Exposure": "3.04%", + "Testing Exposure": "3.03%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -721232,7 +721232,7 @@ "Cognitive Load Exposure": "91.04%", "Error & Exception Exposure": "99.63%", "Tech Debt Exposure": "51.42%", - "Testing Exposure": "2.66%", + "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -721442,7 +721442,7 @@ "Cognitive Load Exposure": "99.67%", "Error & Exception Exposure": "99.24%", "Tech Debt Exposure": "99.61%", - "Testing Exposure": "3.39%", + "Testing Exposure": "3.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.85%", @@ -721899,9 +721899,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -3943.16, + "X": -3942.54, "Y": -144.51, - "Z": 6356.72 + "Z": 6355.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -722120,9 +722120,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4389.21, + "X": -4388.59, "Y": -201.18, - "Z": 6206.38 + "Z": 6205.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -722351,9 +722351,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4768.57, + "X": -4767.96, "Y": -238.08, - "Z": 7144.89 + "Z": 7144.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -722611,9 +722611,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4094.76, + "X": -4094.14, "Y": -102.0, - "Z": 6986.23 + "Z": 6985.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -722842,9 +722842,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4377.42, + "X": -4376.8, "Y": -189.44, - "Z": 6856.74 + "Z": 6855.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -723083,9 +723083,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4650.45, + "X": -4649.83, "Y": -228.02, - "Z": 6479.97 + "Z": 6479.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -723353,9 +723353,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -5156.93, + "X": -5156.32, "Y": -271.62, - "Z": 7037.48 + "Z": 7036.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -723594,9 +723594,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4195.26, + "X": -4194.64, "Y": -145.97, - "Z": 6405.16 + "Z": 6404.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -723845,9 +723845,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4906.43, + "X": -4905.81, "Y": -232.73, - "Z": 6175.73 + "Z": 6174.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -724095,9 +724095,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -5067.99, + "X": -5067.37, "Y": -236.14, - "Z": 6391.7 + "Z": 6390.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -724346,9 +724346,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4826.11, + "X": -4825.49, "Y": -274.46, - "Z": 6870.14 + "Z": 6869.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -724607,9 +724607,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4555.82, + "X": -4555.21, "Y": -209.6, - "Z": 6151.25 + "Z": 6150.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -724867,9 +724867,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -5031.88, + "X": -5031.26, "Y": -245.56, - "Z": 7160.41 + "Z": 7159.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -725122,9 +725122,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -4383.11, + "X": -4382.49, "Y": -138.74, - "Z": 7133.32 + "Z": 7132.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -725354,9 +725354,9 @@ "Identity Proof": "Single Indicator (Ext: .asm)" }, "2. Topological Coordinates": { - "X": -5187.51, + "X": -5186.89, "Y": -317.43, - "Z": 6477.72 + "Z": 6476.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -731532,9 +731532,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6268.32, + "X": -6267.76, "Y": -220.38, - "Z": 7543.96 + "Z": 7543.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -731700,9 +731700,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6514.74, + "X": -6514.18, "Y": -198.77, - "Z": 6717.43 + "Z": 6716.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732002,9 +732002,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6552.92, + "X": -6552.37, "Y": -210.0, - "Z": 7451.29 + "Z": 7450.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732305,9 +732305,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6765.45, + "X": -6764.9, "Y": -122.11, - "Z": 7372.79 + "Z": 7372.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732563,9 +732563,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6982.78, + "X": -6982.23, "Y": -77.95, - "Z": 7076.29 + "Z": 7075.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732768,9 +732768,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5619.33, + "X": 5618.7, "Y": -266.49, - "Z": -6270.6 + "Z": -6269.74 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -732925,9 +732925,9 @@ "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": 4796.64, + "X": 4796.02, "Y": -119.0, - "Z": -6799.27 + "Z": -6798.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733193,9 +733193,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4253.01, + "X": 4252.39, "Y": -65.57, - "Z": -6270.34 + "Z": -6269.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733352,9 +733352,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4319.59, + "X": 4318.96, "Y": -45.97, - "Z": -6584.52 + "Z": -6583.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733514,9 +733514,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4468.17, + "X": 4467.55, "Y": 104.72, - "Z": -7644.04 + "Z": -7643.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733685,9 +733685,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3908.95, + "X": 3908.32, "Y": 56.25, - "Z": -6834.31 + "Z": -6833.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733842,9 +733842,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5407.21, + "X": 5406.59, "Y": -187.04, - "Z": -6452.44 + "Z": -6451.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734003,9 +734003,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5252.49, + "X": 5251.87, "Y": -40.13, - "Z": -6980.08 + "Z": -6979.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734166,9 +734166,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4670.85, + "X": 4670.23, "Y": -181.04, - "Z": -6038.06 + "Z": -6037.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734327,9 +734327,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5059.16, + "X": 5058.54, "Y": 71.52, - "Z": -7234.62 + "Z": -7233.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734486,9 +734486,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5480.53, + "X": 5479.91, "Y": -120.37, - "Z": -6840.91 + "Z": -6840.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734643,9 +734643,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4386.96, + "X": 4386.34, "Y": -167.98, - "Z": -5886.76 + "Z": -5885.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734800,9 +734800,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4580.34, + "X": 4579.71, "Y": -115.23, - "Z": -6530.41 + "Z": -6529.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734957,9 +734957,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5647.14, + "X": 5646.52, "Y": -51.69, - "Z": -6906.76 + "Z": -6905.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735130,9 +735130,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4976.2, + "X": 4975.58, "Y": -279.3, - "Z": -6116.04 + "Z": -6115.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735289,9 +735289,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4802.71, + "X": 4802.08, "Y": -308.97, - "Z": -5815.8 + "Z": -5814.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735448,9 +735448,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5102.05, + "X": 5101.42, "Y": -223.34, - "Z": -6434.61 + "Z": -6433.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735607,9 +735607,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4473.22, + "X": 4472.6, "Y": -273.55, - "Z": -5695.68 + "Z": -5694.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735775,9 +735775,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4605.64, + "X": 4605.02, "Y": 85.75, - "Z": -7112.67 + "Z": -7111.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735934,9 +735934,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4810.14, + "X": 4809.51, "Y": -20.86, - "Z": -7112.74 + "Z": -7111.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736091,9 +736091,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4260.59, + "X": 4259.97, "Y": 93.02, - "Z": -7131.9 + "Z": -7131.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736248,9 +736248,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5371.95, + "X": 5371.32, "Y": 1.17, - "Z": -7203.9 + "Z": -7203.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736405,9 +736405,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5677.28, + "X": 5676.66, "Y": -125.95, - "Z": -6631.97 + "Z": -6631.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736562,9 +736562,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5277.48, + "X": 5276.85, "Y": -299.12, - "Z": -5743.83 + "Z": -5742.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736721,9 +736721,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4240.82, + "X": 4240.2, "Y": -7.73, - "Z": -6944.48 + "Z": -6943.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736880,9 +736880,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4762.59, + "X": 4761.96, "Y": 95.18, - "Z": -7280.69 + "Z": -7279.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737039,9 +737039,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4103.43, + "X": 4102.81, "Y": -111.44, - "Z": -6139.78 + "Z": -6138.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737196,9 +737196,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5440.41, + "X": 5439.78, "Y": -196.51, - "Z": -6235.9 + "Z": -6235.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737355,9 +737355,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4070.63, + "X": 4070.01, "Y": -62.97, - "Z": -6732.43 + "Z": -6731.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737512,9 +737512,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5057.66, + "X": 5057.03, "Y": 133.54, - "Z": -7432.75 + "Z": -7431.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747135,9 +747135,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 430.1, + "X": 429.89, "Y": 215.41, - "Z": -5341.87 + "Z": -5341.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747313,9 +747313,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1262.31, + "X": 1262.1, "Y": 229.38, - "Z": -6043.96 + "Z": -6043.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747481,9 +747481,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2649.54, + "X": 2649.33, "Y": 238.99, - "Z": -5403.2 + "Z": -5402.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747649,9 +747649,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1250.95, + "X": 1250.73, "Y": 278.88, - "Z": -3911.89 + "Z": -3911.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747817,9 +747817,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2390.46, + "X": 2390.25, "Y": 284.2, - "Z": -5605.43 + "Z": -5604.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -747985,9 +747985,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 878.18, + "X": 877.96, "Y": 266.7, - "Z": -3993.88 + "Z": -3993.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748153,9 +748153,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 457.9, + "X": 457.69, "Y": 276.4, - "Z": -5036.15 + "Z": -5035.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748321,9 +748321,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 766.04, + "X": 765.82, "Y": 265.73, - "Z": -4384.42 + "Z": -4383.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748489,9 +748489,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1477.61, + "X": 1477.39, "Y": 280.46, - "Z": -6120.35 + "Z": -6119.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748657,9 +748657,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2208.57, + "X": 2208.36, "Y": 275.5, - "Z": -4085.98 + "Z": -4085.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748825,9 +748825,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2074.01, + "X": 2073.8, "Y": 275.68, - "Z": -5393.15 + "Z": -5392.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -748993,9 +748993,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 753.81, + "X": 753.59, "Y": 224.68, - "Z": -4882.14 + "Z": -4881.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749161,9 +749161,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 813.43, + "X": 813.22, "Y": 259.07, - "Z": -4069.91 + "Z": -4069.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749329,9 +749329,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1694.58, + "X": 1694.37, "Y": 203.09, - "Z": -4073.81 + "Z": -4073.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749497,9 +749497,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 914.67, + "X": 914.45, "Y": 255.36, - "Z": -5719.85 + "Z": -5719.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749665,9 +749665,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1088.43, + "X": 1088.22, "Y": 202.97, - "Z": -4078.4 + "Z": -4077.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -749833,9 +749833,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2360.72, + "X": 2360.51, "Y": 223.08, - "Z": -5218.49 + "Z": -5217.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750001,9 +750001,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1191.57, + "X": 1191.35, "Y": 210.17, - "Z": -5743.82 + "Z": -5743.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750169,9 +750169,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2365.86, + "X": 2365.65, "Y": 277.86, - "Z": -4336.33 + "Z": -4335.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750337,9 +750337,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 575.63, + "X": 575.42, "Y": 264.53, - "Z": -4599.29 + "Z": -4598.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750505,9 +750505,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2064.74, + "X": 2064.52, "Y": 268.41, - "Z": -5844.79 + "Z": -5844.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750675,9 +750675,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1908.63, + "X": 1908.42, "Y": 289.22, - "Z": -5209.94 + "Z": -5209.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -750843,9 +750843,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1276.56, + "X": 1276.34, "Y": 208.11, - "Z": -5533.25 + "Z": -5532.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751011,9 +751011,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1001.73, + "X": 1001.52, "Y": 206.3, - "Z": -5137.04 + "Z": -5136.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751179,9 +751179,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 706.11, + "X": 705.89, "Y": 218.87, - "Z": -5480.53 + "Z": -5479.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751347,9 +751347,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 658.03, + "X": 657.81, "Y": 284.17, - "Z": -5227.35 + "Z": -5226.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751515,9 +751515,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2143.28, + "X": 2143.07, "Y": 283.4, - "Z": -5190.34 + "Z": -5189.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751683,9 +751683,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2532.81, + "X": 2532.59, "Y": 231.84, - "Z": -5071.27 + "Z": -5070.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -751851,9 +751851,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1718.2, + "X": 1717.98, "Y": 273.51, - "Z": -4155.79 + "Z": -4155.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752019,9 +752019,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1748.25, + "X": 1748.04, "Y": 209.93, - "Z": -5384.92 + "Z": -5384.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752237,9 +752237,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1070.41, + "X": 1070.2, "Y": 259.42, - "Z": -4359.85 + "Z": -4359.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752415,9 +752415,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1360.07, + "X": 1359.85, "Y": 221.01, - "Z": -5589.96 + "Z": -5589.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752593,9 +752593,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1352.27, + "X": 1352.06, "Y": 285.47, - "Z": -4323.67 + "Z": -4322.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752771,9 +752771,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1960.23, + "X": 1960.01, "Y": 215.29, - "Z": -4123.35 + "Z": -4122.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -752979,9 +752979,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2531.77, + "X": 2531.56, "Y": 284.84, - "Z": -4482.1 + "Z": -4481.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753147,9 +753147,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 463.45, + "X": 463.24, "Y": 224.63, - "Z": -4462.28 + "Z": -4461.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753315,9 +753315,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 999.58, + "X": 999.37, "Y": 243.05, - "Z": -5733.63 + "Z": -5732.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753483,9 +753483,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1494.09, + "X": 1493.88, "Y": 243.37, - "Z": -4225.3 + "Z": -4224.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753651,9 +753651,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1917.28, + "X": 1917.06, "Y": 254.93, - "Z": -3952.27 + "Z": -3951.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753819,9 +753819,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1893.96, + "X": 1893.75, "Y": 273.87, - "Z": -5884.15 + "Z": -5883.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -753987,9 +753987,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1690.79, + "X": 1690.57, "Y": 207.01, - "Z": -5914.72 + "Z": -5914.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754155,9 +754155,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1249.0, + "X": 1248.79, "Y": 216.16, - "Z": -4606.2 + "Z": -4605.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754353,9 +754353,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1486.42, + "X": 1486.21, "Y": 268.86, - "Z": -4903.37 + "Z": -4902.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754551,9 +754551,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 929.52, + "X": 929.3, "Y": 233.51, - "Z": -4860.88 + "Z": -4860.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754729,9 +754729,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1511.98, + "X": 1511.77, "Y": 200.17, - "Z": -5161.54 + "Z": -5160.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -754927,9 +754927,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2340.54, + "X": 2340.32, "Y": 253.48, - "Z": -4739.37 + "Z": -4738.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -755125,9 +755125,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2024.95, + "X": 2024.74, "Y": 221.59, - "Z": -4803.55 + "Z": -4802.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -755333,9 +755333,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 882.75, + "X": 882.54, "Y": 230.87, - "Z": -5354.97 + "Z": -5354.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -755541,9 +755541,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 2051.59, + "X": 2051.38, "Y": 233.32, - "Z": -4470.71 + "Z": -4470.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -755749,9 +755749,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1727.2, + "X": 1726.99, "Y": 256.36, - "Z": -4520.8 + "Z": -4520.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -756021,9 +756021,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1558.96, + "X": 1558.88, "Y": 47.06, - "Z": -8275.49 + "Z": -8274.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -756279,9 +756279,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1358.84, + "X": 1358.77, "Y": 24.82, - "Z": -9039.18 + "Z": -9038.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -756537,9 +756537,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 789.93, + "X": 789.85, "Y": 93.43, - "Z": -8752.23 + "Z": -8751.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -756765,9 +756765,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1274.99, + "X": 1274.92, "Y": 99.49, - "Z": -8918.07 + "Z": -8917.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -757033,9 +757033,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1054.57, + "X": 1054.49, "Y": 159.02, - "Z": -8485.81 + "Z": -8485.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -757301,9 +757301,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1134.89, + "X": 1134.82, "Y": 144.73, - "Z": -8414.57 + "Z": -8414.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -757479,9 +757479,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 1713.75, + "X": 1713.67, "Y": -10.87, - "Z": -9201.58 + "Z": -9201.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -758439,7 +758439,7 @@ "Cognitive Load Exposure": "96.76%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "85.14%", - "Testing Exposure": "2.48%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -766111,9 +766111,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3963.82, + "X": 3963.5, "Y": 165.09, - "Z": -10504.92 + "Z": -10504.12 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -766268,9 +766268,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3947.89, + "X": 3947.57, "Y": 184.98, - "Z": -10128.74 + "Z": -10127.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766626,9 +766626,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3727.28, + "X": 3726.96, "Y": 160.01, - "Z": -9795.16 + "Z": -9794.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -770828,9 +770828,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -659.63, + "X": -659.65, "Y": 170.29, - "Z": -4734.21 + "Z": -4733.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -770996,9 +770996,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 91.97, + "X": 91.95, "Y": 168.57, - "Z": -3954.9 + "Z": -3954.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771164,9 +771164,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1.81, + "X": 1.8, "Y": 260.28, - "Z": -5450.93 + "Z": -5450.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771332,9 +771332,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 707.39, + "X": 707.38, "Y": 260.15, - "Z": -4366.98 + "Z": -4366.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771500,9 +771500,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 665.79, + "X": 665.77, "Y": 221.96, - "Z": -4647.59 + "Z": -4646.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771748,9 +771748,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -265.28, + "X": -265.3, "Y": 207.95, - "Z": -4191.27 + "Z": -4190.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -771916,9 +771916,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 670.51, + "X": 670.49, "Y": 306.88, - "Z": -5263.33 + "Z": -5262.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -772084,9 +772084,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 130.05, + "X": 130.03, "Y": 279.83, - "Z": -5191.54 + "Z": -5190.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -772332,9 +772332,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -152.54, + "X": -152.55, "Y": 218.53, - "Z": -4692.94 + "Z": -4692.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -772630,9 +772630,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 364.07, + "X": 364.06, "Y": 192.87, - "Z": -4529.16 + "Z": -4528.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -772828,9 +772828,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -401.97, + "X": -401.98, "Y": 236.52, - "Z": -4757.76 + "Z": -4757.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773116,9 +773116,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 561.7, + "X": 561.68, "Y": 284.23, - "Z": -4910.3 + "Z": -4909.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773304,9 +773304,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 82.19, + "X": 82.18, "Y": 205.05, - "Z": -4804.38 + "Z": -4803.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773622,9 +773622,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 268.98, + "X": 268.96, "Y": 220.44, - "Z": -4096.6 + "Z": -4095.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773790,9 +773790,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -481.17, + "X": -481.19, "Y": 229.59, - "Z": -5016.55 + "Z": -5015.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -773960,9 +773960,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -164.52, + "X": -164.53, "Y": 268.58, - "Z": -5435.91 + "Z": -5435.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -774148,9 +774148,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 347.4, + "X": 347.38, "Y": 274.52, - "Z": -5358.77 + "Z": -5358.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -774305,9 +774305,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -61.75, + "X": -61.76, "Y": 218.34, - "Z": -4185.47 + "Z": -4184.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -774493,9 +774493,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 757.87, + "X": 757.86, "Y": 245.35, - "Z": -4960.72 + "Z": -4959.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -774663,9 +774663,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -507.45, + "X": -507.47, "Y": 196.48, - "Z": -4412.03 + "Z": -4411.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -785703,9 +785703,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2278.58, + "X": -2278.28, "Y": 22.79, - "Z": -3488.68 + "Z": -3488.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -785976,9 +785976,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2333.1, + "X": -2332.8, "Y": -95.23, - "Z": -4091.83 + "Z": -4091.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -786156,9 +786156,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2620.77, + "X": -2620.47, "Y": 79.93, - "Z": -3613.54 + "Z": -3612.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -786337,9 +786337,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1856.43, + "X": -1856.13, "Y": 241.11, - "Z": -2562.73 + "Z": -2562.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -786521,9 +786521,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2440.32, + "X": -2440.02, "Y": -30.26, - "Z": -3824.33 + "Z": -3823.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -786725,9 +786725,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2061.12, + "X": -2060.82, "Y": 128.87, - "Z": -3295.02 + "Z": -3294.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787048,9 +787048,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2083.21, + "X": -2082.91, "Y": -36.94, - "Z": -3996.2 + "Z": -3995.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787291,9 +787291,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1824.57, + "X": -1824.27, "Y": -23.52, - "Z": -3913.48 + "Z": -3912.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787607,9 +787607,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2516.57, + "X": -2516.27, "Y": 167.99, - "Z": -3170.03 + "Z": -3169.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787788,9 +787788,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2237.9, + "X": -2237.6, "Y": 204.15, - "Z": -2764.52 + "Z": -2763.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -787980,9 +787980,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2381.08, + "X": -2380.78, "Y": 57.34, - "Z": -3393.96 + "Z": -3393.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -788201,9 +788201,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1569.78, + "X": -1569.48, "Y": 102.21, - "Z": -3308.29 + "Z": -3307.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -788434,9 +788434,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2008.24, + "X": -2007.94, "Y": 155.58, - "Z": -2873.6 + "Z": -2873.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -788677,9 +788677,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1615.39, + "X": -1615.09, "Y": 168.66, - "Z": -3002.01 + "Z": -3001.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -788905,9 +788905,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -990.59, + "X": -990.28, "Y": 99.83, - "Z": -3392.18 + "Z": -3391.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789085,9 +789085,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1290.19, + "X": -1289.89, "Y": -39.56, - "Z": -4222.38 + "Z": -4221.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789296,9 +789296,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1243.52, + "X": -1243.21, "Y": 130.02, - "Z": -3255.35 + "Z": -3254.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789586,9 +789586,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1180.7, + "X": -1180.4, "Y": 3.97, - "Z": -3570.04 + "Z": -3569.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789797,9 +789797,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1662.12, + "X": -1661.82, "Y": -119.51, - "Z": -4464.74 + "Z": -4464.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -789967,9 +789967,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1807.32, + "X": -1807.02, "Y": 65.58, - "Z": -3558.26 + "Z": -3557.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -790470,9 +790470,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1389.62, + "X": -1389.32, "Y": 31.17, - "Z": -3606.4 + "Z": -3605.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -790732,9 +790732,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1557.15, + "X": -1556.85, "Y": -60.48, - "Z": -4089.96 + "Z": -4089.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -790993,9 +790993,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1924.65, + "X": -1924.35, "Y": -120.31, - "Z": -4218.12 + "Z": -4217.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791184,9 +791184,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1237.61, + "X": -1237.31, "Y": 152.5, - "Z": -2943.04 + "Z": -2942.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791373,44 +791373,44 @@ } } }, - "jcl/cics-banking-sample-application-cbsa": { - "Directory Group Magnitude": 332.32, - "File Count": 99, + "groovy/spock_specs": { + "Directory Group Magnitude": 317.28, + "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "6.16%", - "Error & Exception Exposure": "51.11%", - "Tech Debt Exposure": "56.97%", - "Testing Exposure": "1.88%", - "API Exposure": "1.39%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "1.49%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "78.45%", + "Cognitive Load Exposure": "12.86%", + "Error & Exception Exposure": "18.31%", + "Tech Debt Exposure": "96.54%", + "Testing Exposure": "2.26%", + "API Exposure": "0.0%", + "Concurrency Exposure": "1.63%", + "State Flux Exposure": "9.56%", + "Commented Logic Exposure": "0.34%", + "Specification Exposure": "96.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "53.06%", + "Documentation Exposure": "44.66%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl": { + "groovy/spock_specs/org_spockframework_builder_PojoBuilderSpec.groovy": { "1. Artifact Identity": { - "Filename": "ABNDPROC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_builder_PojoBuilderSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_builder_PojoBuilderSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1061.8, - "Y": 112.97, - "Z": -2906.95 + "X": -3642.99, + "Y": 172.93, + "Z": -2988.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791419,52 +791419,152 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 216, + "Coding LOC": 166, + "Documentation LOC": 14, + "Structural Magnitude": 21.02, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Tech Debt Exposure": "98.63%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "16.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "\"configure primitives\"", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 123 + }, + { + "Function Name": "\"parse enum value\"", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 153, + "End Line": 167 + }, + { + "Function Name": "\"adding elements to collection\"", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 98 + }, + { + "Function Name": "\"configure nested property\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 44 + }, + { + "Function Name": "\"configure collection property that has concrete declared type\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 58, + "End Line": 69 + }, + { + "Function Name": "\"configure collection property and choose collection type\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 83 + }, + { + "Function Name": "\"access local variable\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 125, + "End Line": 137 + }, + { + "Function Name": "\"access field\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 151 + }, + { + "Function Name": "\"configure collection property\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 55 + }, + { + "Function Name": "\"configure top-level property\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 24, + "End Line": 32 + }, + { + "Function Name": "LinkedList", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 75, + "End Line": 76 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 30, + "Function Parameters": 11, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 9, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -791472,13 +791572,13 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 20, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 7, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, @@ -791496,7 +791596,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -791507,7 +791607,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 146, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -791524,15 +791624,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 9, + "Design Camel Case": 2, + "Design Snake Case": 7, "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -791556,32 +791656,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl": { + "groovy/spock_specs/org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy": { "1. Artifact Identity": { - "Filename": "ACCLOAD.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1664.7, - "Y": 19.69, - "Z": -2898.68 + "X": -4129.02, + "Y": 231.25, + "Z": -2018.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791590,70 +791689,90 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 50, + "Coding LOC": 22, + "Documentation LOC": 13, + "Structural Magnitude": 4.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.227 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "11.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "44.23%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"class file of regular class isn't considered a runnable spec\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 25, + "End Line": 28 + }, + { + "Function Name": "\"class file of abstract spec isn't considered a runnable spec\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 33 + }, + { + "Function Name": "\"class file of concrete spec is considered a runnable spec\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 18, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 4, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -791676,9 +791795,9 @@ "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 1, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -791695,15 +791814,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -791729,30 +791848,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.spockframework.util.ReflectionUtil", + "spock.lang.*" ] }, - "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl": { + "groovy/spock_specs/org_spockframework_datapipes_DataPipesIteratorSpec.groovy": { "1. Artifact Identity": { - "Filename": "ACCOFFL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_datapipes_DataPipesIteratorSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_datapipes_DataPipesIteratorSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -352.65, - "Y": 110.7, - "Z": -1030.33 + "X": -3915.54, + "Y": 193.13, + "Z": -2404.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791761,70 +791880,210 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, - "Control Flow Ratio": "0.0%", + "Total LOC": 175, + "Coding LOC": 120, + "Documentation LOC": 21, + "Structural Magnitude": 25.6, + "Control Flow Ratio": "7.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.093 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "6.74%", + "Error & Exception Exposure": "53.85%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "17.04%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "\"Iterable uses the Groovy default size method to estimate number of iterations\"", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 46, + "End Line": 57 + }, + { + "Function Name": "hasNext", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 156, + "End Line": 163 + }, + { + "Function Name": "next", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 165, + "End Line": 172 + }, + { + "Function Name": "\"Collection data provider will use size method to estimate number of iterations\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 44 + }, + { + "Function Name": "\"Iterable with size method shall use the size method to estimate number of iterations\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 71 + }, + { + "Function Name": "\"Iterator shall be only called once\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 85 + }, + { + "Function Name": "runIterations", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 87, + "End Line": 96 + }, + { + "Function Name": "dataProvider", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 98, + "End Line": 101 + }, + { + "Function Name": "getDataProvider", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 103, + "End Line": 107 + }, + { + "Function Name": "iterator", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 113, + "End Line": 117 + }, + { + "Function Name": "size", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 123 + }, + { + "Function Name": "size", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 130, + "End Line": 133 + }, + { + "Function Name": "iterator", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 135, + "End Line": 139 + }, + { + "Function Name": "iterator", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 145, + "End Line": 149 + }, + { + "Function Name": "cleanup", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 29, + "End Line": 31 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 39, + "Function Parameters": 15, + "Function/Method Declarations": 16, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 12, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 9, + "Generic Type Abstractions": 2, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -791839,17 +792098,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 1, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 7, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 113, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -791866,15 +792125,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 17, + "Design Camel Case": 12, + "Design Snake Case": 5, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Duplicate Logic": 3, + "Orphaned Logic": 8, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -791898,32 +792157,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.util.Objects.requireNonNull", + "org.spockframework.EmbeddedSpecification", + "spock.lang.Issue", + "spock.util.EmbeddedSpecRunner" ] }, - "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_DataSpec.groovy": { "1. Artifact Identity": { - "Filename": "BANKDATA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_DataSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_DataSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 576.41, - "Y": 44.61, - "Z": -1874.34 + "X": -3741.74, + "Y": 172.48, + "Z": -2369.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -791932,90 +792193,350 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 115, - "Coding LOC": 114, - "Documentation LOC": 0, - "Structural Magnitude": 9.18, - "Control Flow Ratio": "0.0%", + "Total LOC": 602, + "Coding LOC": 293, + "Documentation LOC": 221, + "Structural Magnitude": 101.76, + "Control Flow Ratio": "29.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.229 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.8%", - "Tech Debt Exposure": "37.14%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "11.05%", + "Error & Exception Exposure": "61.03%", + "Tech Debt Exposure": "99.94%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "71.17%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.21%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BANKDAT1", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 38, + "Function Name": "\"named multi-variable data pipes\"", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 357, + "End Line": 378 + }, + { + "Function Name": "\"nested and named multi-variable data pipes\"", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 380, + "End Line": 393 + }, + { + "Function Name": "\"multiple data provider combined\"", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 92, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 104, + "End Line": 195 + }, + { + "Function Name": "\"only single data providers are combined - part 2\"", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 244, + "End Line": 318 + }, + { + "Function Name": "\"only single data providers are combined - part 1\"", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 46, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 197, + "End Line": 242 + }, + { + "Function Name": "\"nested multi-variable data pipes\"", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 340, + "End Line": 355 + }, + { + "Function Name": "in", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 586, + "End Line": 600 + }, + { + "Function Name": "\"type coercion for data variable values with own coercion\"", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 507, + "End Line": 535 + }, + { + "Function Name": "\"type coercion for data variable values\"", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 497, + "End Line": 504 + }, + { + "Function Name": "setupSpec", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 17, + "End Line": 31 + }, + { + "Function Name": "\"maximum of two numbers combined assignment\"", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 479, + "End Line": 494 + }, + { + "Function Name": "\"maximum of two numbers data variable assignment\"", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 395, + "End Line": 405 + }, + { + "Function Name": "\"excluding iterations\"", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 584, + "End Line": 593 + }, + { + "Function Name": "cleanupSpec", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 33, + "End Line": 35 + }, + { + "Function Name": "\"multiple tables\"", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 93 + "Start Line": 50, + "End Line": 68 }, { - "Function Name": "BANKDAT0", + "Function Name": "\"multiple tables with top border\"", "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 55 + "Start Line": 84, + "End Line": 102 }, { - "Function Name": "BANKDAT5", + "Function Name": "\"maximum of two numbers previous column access over multiple tables\"", "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, + "Lines of Code (LOC)": 22, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 94, - "End Line": 114 + "Start Line": 434, + "End Line": 455 + }, + { + "Function Name": "\"single column\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 48 + }, + { + "Function Name": "\"multiple tables joined\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 70, + "End Line": 82 + }, + { + "Function Name": "\"maximum of two numbers sql data variable assignment\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 407, + "End Line": 419 + }, + { + "Function Name": "\"maximum of two numbers previous column access\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 421, + "End Line": 432 + }, + { + "Function Name": "\"data pipes\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 537, + "End Line": 547 + }, + { + "Function Name": "\"maximum of two numbers multi-assignment star\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 468, + "End Line": 477 + }, + { + "Function Name": "\"#lastName\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 571, + "End Line": 580 + }, + { + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 321, + "End Line": 327 + }, + { + "Function Name": "\"maximum of two numbers star\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 330, + "End Line": 338 + }, + { + "Function Name": "\"maximum of two numbers multi-assignment\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 458, + "End Line": 465 + }, + { + "Function Name": "\"#person is #person.age years old\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 550, + "End Line": 557 + }, + { + "Function Name": "\"#person.name.toUpperCase()\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 560, + "End Line": 567 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 17, - "Function Parameters": 0, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 18, + "Sequential Logic Declarations": 44, + "Function Parameters": 30, + "Function/Method Declarations": 29, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, - "I/O and Network Boundaries": 25, + "High-Risk Execution Commands": 6, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 22, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 59, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 3, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 2, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Collection Iterators / Comprehensions": 3, + "Scientific & Mathematical Operations": 12, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 6, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -792040,7 +792561,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 32, + "Structural Space Indentations": 284, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792057,15 +792578,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 20, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 19, + "Design Camel Case": 1, + "Design Snake Case": 18, "Design Pascal Case": 0, - "Design Upper Case": 20, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 28, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -792073,7 +792594,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -792082,41 +792603,44 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 7, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "@BANK_DBRMLIB@", - "@BANK_LOADLIB@", - "@BANK_PREFIX@.CUSTOMER", - "@DB2_HLQ@.SDSNLOAD" + "groovy.sql.Sql", + "groovy.transform.ToString", + "org.junit.platform.engine.TestDescriptor.Type.TEST", + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.GroovyRuntimeUtil", + "spock.lang.Shared", + "spock.util.mop.Use" ] }, - "jcl/cics-banking-sample-application-cbsa/BATCH.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v1_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BATCH.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BATCH.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v1_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v1_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 118.57, - "Y": 42.98, - "Z": -1854.54 + "X": -2834.37, + "Y": 120.23, + "Z": -2144.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792125,70 +792649,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 57, - "Coding LOC": 56, - "Documentation LOC": 0, - "Structural Magnitude": 8.82, + "Total LOC": 16, + "Coding LOC": 10, + "Documentation LOC": 3, + "Structural Magnitude": 1.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "82.34%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.42%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.57%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.53%", + "Documentation Exposure": "50.45%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "COBOL", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 41 - }, - { - "Function Name": "LKED", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 15, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 56 + "Start Line": 7, + "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 42, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 43, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -792196,9 +792710,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 3, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -792223,7 +792737,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792240,15 +792754,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 50, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -792265,50 +792779,38 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..ADATA(&MEMBER)", - "&CBSAHLQ..COBOL(&MEMBER)", - "&CBSAHLQ..DEBUG(&MEMBER)", - "&CBSAHLQ..DSECT", - "&CBSAHLQ..LKED(&MEMBER)", - "&CBSAHLQ..LOADLIB", - "&CICSHLQ..SDFHCOB", - "&CICSHLQ..SDFHLOAD", - "&CICSHLQ..SDFHSAMP", - "&COBOLHLQ..SIGYCOMP", - "&DB2HLQ..SDSNLOAD", - "&LEHLQ..SCEELKED", - "&LEHLQ..SCEESAMP" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v2_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1ACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v2_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v2_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1283.73, - "Y": 71.83, - "Z": -1249.13 + "X": -3195.59, + "Y": 107.4, + "Z": -2990.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792317,51 +792819,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 23, + "Coding LOC": 13, + "Documentation LOC": 6, + "Structural Magnitude": 2.86, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.06%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "57.34%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1ACC", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 8, + "End Line": 19 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -792370,7 +792872,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -792378,7 +792880,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -792405,7 +792907,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792422,15 +792924,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -792454,32 +792956,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v3_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v3_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v3_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -177.49, - "Y": 87.13, - "Z": -3616.39 + "X": -4103.8, + "Y": 193.73, + "Z": -1453.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792488,51 +792989,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 1.76, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -792541,7 +793042,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -792549,7 +793050,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -792576,7 +793077,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792593,11 +793094,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -792625,32 +793126,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v4_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v4_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v4_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1156.67, - "Y": 103.73, - "Z": -2146.04 + "X": -4536.44, + "Y": 207.29, + "Z": -2819.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792659,51 +793159,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 21, + "Coding LOC": 15, + "Documentation LOC": 2, + "Structural Magnitude": 1.9, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "67.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CAM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 8, + "End Line": 19 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -792712,17 +793212,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -792747,7 +793247,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792764,15 +793264,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -792797,31 +793297,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Rollup", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v5_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CCA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v5_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v5_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1575.12, - "Y": 48.41, - "Z": -1297.75 + "X": -2907.64, + "Y": 68.82, + "Z": -2757.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -792830,51 +793330,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 1.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.01%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"maximum of #a and #b is #c\"", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 17 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -792883,7 +793383,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -792891,7 +793391,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -792918,7 +793418,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -792935,11 +793435,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -792967,32 +793467,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v6_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CCM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v6_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v6_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1381.49, - "Y": 71.87, - "Z": -3155.41 + "X": -4035.07, + "Y": 137.55, + "Z": -3268.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793001,51 +793500,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 1.76, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CCM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 8 + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -793054,7 +793553,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -793062,7 +793561,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -793089,7 +793588,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793106,15 +793605,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793138,32 +793637,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl": { + "groovy/spock_specs/org_spockframework_docs_datadriven_v7_MathSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CCS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_datadriven_v7_MathSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v7_MathSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1187.28, - "Y": 91.83, - "Z": -1930.58 + "X": -3299.81, + "Y": 148.65, + "Z": -1686.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793172,51 +793670,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 25, + "Coding LOC": 18, + "Documentation LOC": 2, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.278 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "13.14%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "62.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"maximum of two numbers\"", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 22 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -793225,7 +793723,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -793233,7 +793731,7 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Scientific & Mathematical Operations": 2, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, @@ -793260,7 +793758,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793277,11 +793775,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -793309,32 +793807,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CDM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 123.04, - "Y": 67.75, - "Z": -739.07 + "X": -3035.11, + "Y": 152.32, + "Z": -2703.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793343,70 +793840,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 28, + "Coding LOC": 20, + "Documentation LOC": 2, + "Structural Magnitude": 4.2, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.85 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Cognitive Load Exposure": "59.87%", + "Error & Exception Exposure": "70.63%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "47.5%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "59.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CDM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"I run first\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 10, + "End Line": 17 + }, + { + "Function Name": "\"I run second\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 25 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 8, + "Function Parameters": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 4, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 2, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793420,7 +793927,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -793431,7 +793938,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793448,15 +793955,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793480,32 +793987,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification", + "spock.lang.Stepwise", + "spock.util.mop.ConfineMetaClassChanges" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_ExtensionStoreSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1CRA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_ExtensionStoreSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_ExtensionStoreSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1195.76, - "Y": 62.82, - "Z": -3592.37 + "X": -3937.37, + "Y": 175.76, + "Z": -2947.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793514,70 +794022,110 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, - "Control Flow Ratio": "0.0%", + "Total LOC": 136, + "Coding LOC": 78, + "Documentation LOC": 36, + "Structural Magnitude": 14.66, + "Control Flow Ratio": "11.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.287 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Cognitive Load Exposure": "13.57%", + "Error & Exception Exposure": "59.53%", + "Tech Debt Exposure": "99.6%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", + "Concurrency Exposure": "48.84%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "15.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "executionStop", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 119, + "End Line": 133 + }, + { + "Function Name": "\"extension store example\"", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 53, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 36, + "End Line": 88 + }, + { + "Function Name": "executionStart", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 113, + "End Line": 117 + }, + { + "Function Name": "visitSpec", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 108, + "End Line": 111 + }, + { + "Function Name": "setup", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 34 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 24, + "Function Parameters": 9, + "Function/Method Declarations": 5, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Unit Test Assertions": 3, + "Asynchronous/Concurrent Execution": 2, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 4, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 6, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 13, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793590,19 +794138,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Ad-hoc Print / Debug Statements": 5, + "Explicit Type Casts": 1, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 3, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 3, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 58, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793619,15 +794167,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 7, + "Design Camel Case": 1, + "Design Snake Case": 3, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 5, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793651,32 +794199,44 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 14, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.util.concurrent.ConcurrentHashMap", + "java.util.concurrent.atomic.AtomicInteger", + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.IStandardStreamsListener", + "org.spockframework.runtime.StandardStreamsCapturer", + "org.spockframework.runtime.extension.IGlobalExtension", + "org.spockframework.runtime.extension.IMethodInterceptor", + "org.spockframework.runtime.extension.ISpockExecution", + "org.spockframework.runtime.extension.IStore.Namespace", + "org.spockframework.runtime.model.SpecInfo", + "org.spockframework.runtime.model.parallel.Resources", + "spock.lang.AutoCleanup", + "spock.lang.ResourceLock", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1DAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 499.25, - "Y": 90.73, - "Z": -647.76 + "X": -4491.58, + "Y": 158.1, + "Z": -2435.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793685,51 +794245,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, - "Control Flow Ratio": "0.0%", + "Total LOC": 37, + "Coding LOC": 15, + "Documentation LOC": 17, + "Structural Magnitude": 2.9, + "Control Flow Ratio": "10.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.4 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "19.78%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "47.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, + "Function Name": "\"FancyMockMaker usage\"", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Control Flow Ratio": "20.0%", + "Start Line": 24, + "End Line": 35 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 9, + "Function Parameters": 2, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -793738,17 +794298,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793773,7 +794333,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793790,12 +794350,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -793824,30 +794384,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.spockframework.EmbeddedSpecification", + "org.spockframework.mock.CannotCreateMockException" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_IgnoreIfDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1DAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_IgnoreIfDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_IgnoreIfDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -603.92, - "Y": 128.09, - "Z": -3321.9 + "X": -4326.63, + "Y": 208.93, + "Z": -2156.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793856,51 +794416,111 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 92, + "Coding LOC": 52, + "Documentation LOC": 24, + "Structural Magnitude": 10.34, + "Control Flow Ratio": "6.7%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.212 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "10.4%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "21.91%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1DAM", + "Function Name": "\"IgnoreIf can be configured to be inherited\"", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 89 + }, + { + "Function Name": "\"I will run everywhere but not on Windows\"", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 34 + }, + { + "Function Name": "\"I'll run everywhere but on Windows\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 14 + }, + { + "Function Name": "\"I will run everywhere but on Windows\"", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 17, + "End Line": 17 + }, + { + "Function Name": "\"I'll run everywhere but on Windows or anywhere on Java 8\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 25 + }, + { + "Function Name": "\"I'll run everywhere but on Windows and only if a != 5 and b < 6\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 43 + }, + { + "Function Name": "\"For the given reason, I will not run on MacOS\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 58, + "End Line": 58 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 14, + "Function Parameters": 7, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -793909,17 +794529,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 9, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 1, + "Decorators and Annotations": 8, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793944,7 +794564,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 46, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -793961,15 +794581,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793993,32 +794613,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.extension.builtin.PreconditionContext", + "spock.lang.IgnoreIf" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_InterceptorSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1DCM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_InterceptorSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_InterceptorSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1752.04, - "Y": 82.49, - "Z": -1809.2 + "X": -3170.43, + "Y": 138.84, + "Z": -2435.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794027,70 +794648,110 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 111, + "Coding LOC": 65, + "Documentation LOC": 34, + "Structural Magnitude": 11.9, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "98.27%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Commented Logic Exposure": "10.07%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "16.58%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1DCM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "visitSpecAnnotation", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 50, + "End Line": 82 + }, + { + "Function Name": "visitFeatureAnnotation", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 109 + }, + { + "Function Name": "I", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 96, + "End Line": 100 + }, + { + "Function Name": "I", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 40, + "End Line": 40 + }, + { + "Function Name": "\"a method\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 32, + "End Line": 35 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 20, + "Function Parameters": 14, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 3, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 6, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Decorators and Annotations": 8, + "Generic Type Abstractions": 1, + "Collection Iterators / Comprehensions": 3, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 10, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794115,7 +794776,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 43, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794132,15 +794793,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794164,32 +794825,40 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 10, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.lang.annotation.ElementType", + "java.lang.annotation.Retention", + "java.lang.annotation.RetentionPolicy", + "java.lang.annotation.Target", + "org.spockframework.runtime.extension.AbstractMethodInterceptor", + "org.spockframework.runtime.extension.ExtensionAnnotation", + "org.spockframework.runtime.extension.IAnnotationDrivenExtension", + "org.spockframework.runtime.model.FeatureInfo", + "org.spockframework.runtime.model.SpecInfo", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_IssueDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1DCS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_IssueDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_IssueDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -919.81, - "Y": 68.17, - "Z": -3092.56 + "X": -3773.03, + "Y": 91.68, + "Z": -3022.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794198,51 +794867,71 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 26, + "Coding LOC": 19, + "Documentation LOC": 2, + "Structural Magnitude": 3.98, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "12.48%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "61.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"Foo should do bar\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 12 + }, + { + "Function Name": "\"I have two related issues\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 17 + }, + { + "Function Name": "\"I have three related issues\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 8, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -794251,17 +794940,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 5, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794286,7 +794975,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794303,15 +794992,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794337,30 +795026,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Issue", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1MAI.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -991.65, - "Y": 71.63, - "Z": -1490.13 + "X": -3563.39, + "Y": 134.72, + "Z": -3195.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794369,70 +795058,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, + "Total LOC": 44, + "Coding LOC": 19, + "Documentation LOC": 20, + "Structural Magnitude": 2.28, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Cognitive Load Exposure": "12.48%", + "Error & Exception Exposure": "80.34%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "38.91%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1MAI", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "\"preferredMockMaker configuration setting\"", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 25, + "End Line": 42 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794446,7 +795135,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -794457,7 +795146,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794474,15 +795163,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794506,32 +795195,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.RunContext", + "spock.mock.MockMakers" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_ParameterInjectionSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1TFM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_ParameterInjectionSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_ParameterInjectionSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 720.48, - "Y": 113.75, - "Z": -3565.82 + "X": -3453.67, + "Y": 123.97, + "Z": -2154.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794540,52 +795230,112 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 65, + "Coding LOC": 49, + "Documentation LOC": 4, + "Structural Magnitude": 18.88, + "Control Flow Ratio": "12.5%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.233 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "11.23%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "33.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1TFM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 - } + "Function Name": "visitParameterAnnotation", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 51, + "End Line": 62 + }, + { + "Function Name": "\"test\"", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 31 + }, + { + "Function Name": "SpockExecutionException", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 60 + }, + { + "Function Name": "setupSpec", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 17, + "End Line": 19 + }, + { + "Function Name": "setup", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 22, + "End Line": 24 + }, + { + "Function Name": "cleanup", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 36 + }, + { + "Function Name": "cleanupSpec", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 40 + } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 21, + "Function Parameters": 7, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 4, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -794593,17 +795343,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 5, + "Generic Type Abstractions": 2, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 10, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794618,7 +795368,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -794628,7 +795378,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 30, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794645,15 +795395,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794677,32 +795427,40 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 10, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.lang.annotation.ElementType", + "java.lang.annotation.Retention", + "java.lang.annotation.RetentionPolicy", + "java.lang.annotation.Target", + "org.spockframework.runtime.SpockExecutionException", + "org.spockframework.runtime.extension.ExtensionAnnotation", + "org.spockframework.runtime.extension.IAnnotationDrivenExtension", + "org.spockframework.runtime.extension.ParameterResolver", + "org.spockframework.runtime.model.ParameterInfo", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1TFN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1846.58, - "Y": 28.3, - "Z": -2411.35 + "X": -3328.93, + "Y": 111.83, + "Z": -2603.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794711,70 +795469,90 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, - "Control Flow Ratio": "0.0%", + "Total LOC": 41, + "Coding LOC": 30, + "Documentation LOC": 6, + "Structural Magnitude": 16.0, + "Control Flow Ratio": "9.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.95 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "69.0%", + "Error & Exception Exposure": "85.37%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "44.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "\"I have various problems in certain situations\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 29 + }, + { + "Function Name": "\"I'm not yet implemented on windows, but I am on other operating systems\"", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 10, + "End Line": 10 + }, + { + "Function Name": "\"This feature isn't deployed out to production yet, and isn't expected to pass\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 18 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 10, + "Function Parameters": 5, + "Function/Method Declarations": 5, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 5, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794789,7 +795567,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -794797,9 +795575,9 @@ "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 1, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 23, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794816,15 +795594,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 6, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794848,32 +795626,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "org.opentest4j.TestAbortedException", + "spock.lang.PendingFeature", + "spock.lang.PendingFeatureIf", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_RequiresDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1UAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_RequiresDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_RequiresDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -794.96, - "Y": 57.41, - "Z": -1229.36 + "X": -4460.95, + "Y": 195.02, + "Z": -1859.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794882,51 +795662,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 24, + "Coding LOC": 16, + "Documentation LOC": 4, + "Structural Magnitude": 2.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.312 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "14.8%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "63.59%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "\"I'll only run on Windows\"", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 8, + "End Line": 8 + }, + { + "Function Name": "\"I'll run only on Windows with Java 8\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -794935,17 +795725,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 3, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794970,7 +795760,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794987,15 +795777,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795021,30 +795811,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Requires", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_RetryDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNK1UAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_RetryDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_RetryDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 992.71, - "Y": 22.85, - "Z": -768.48 + "X": -4150.79, + "Y": 165.97, + "Z": -2555.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795053,70 +795843,190 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 1.26, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 103, + "Coding LOC": 75, + "Documentation LOC": 10, + "Structural Magnitude": 17.9, + "Control Flow Ratio": "5.9%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.136 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", + "Cognitive Load Exposure": "7.91%", + "Error & Exception Exposure": "69.11%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.16%", + "Documentation Exposure": "23.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1UAM", + "Function Name": "\"only retry if condition on failure holds\"", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 34, + "End Line": 36 + }, + { + "Function Name": "\"retry failing feature methods\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 49 + }, + { + "Function Name": "\"retry with setup and cleanup\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 57 + }, + { + "Function Name": "\"retry 3 times\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 21 + }, + { + "Function Name": "\"retry 5 times\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 26 + }, + { + "Function Name": "\"only retry on IOException\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 31 + }, + { + "Function Name": "\"retry after 1000 ms delay\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 62 + }, + { + "Function Name": "\"will be retried using its own config\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 78 + }, + { + "Function Name": "\"only retry if condition on instance holds\"", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 38, + "End Line": 38 + }, + { + "Function Name": "\"will be retried with config from class\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 73 + }, + { + "Function Name": "inherited", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 87 + }, + { + "Function Name": "foo", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 93 + }, + { + "Function Name": "bar", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 98, + "End Line": 100 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 32, + "Function Parameters": 13, + "Function/Method Declarations": 13, + "Class/Entity Declarations": 6, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 15, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 13, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795141,7 +796051,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 54, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795158,15 +796068,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 11, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795190,32 +796100,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 4, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "groovy.sql.Sql", + "spock.lang.Retry", + "spock.lang.Shared", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_SeeDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BNKMENU.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_SeeDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_SeeDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 361.0, - "Y": 79.59, - "Z": -3797.74 + "X": -3760.36, + "Y": 213.89, + "Z": -1594.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795224,51 +796136,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 21, + "Coding LOC": 15, + "Documentation LOC": 2, + "Structural Magnitude": 2.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "67.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"Even more information is available on the feature\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 12 + }, + { + "Function Name": "\"And even more information is available on the feature\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 18 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -795277,17 +796199,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 4, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795312,7 +796234,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 9, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795329,15 +796251,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795363,30 +796285,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.See", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_SnapshotDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "BTCHSQL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_SnapshotDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_SnapshotDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 661.58, - "Y": 85.57, - "Z": -3200.25 + "X": -4266.05, + "Y": 153.16, + "Z": -2960.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795395,22 +796317,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 64, + "Coding LOC": 31, + "Documentation LOC": 23, + "Structural Magnitude": 6.22, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.161 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "8.67%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795418,47 +796340,77 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "28.25%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", + "Function Name": "\"using parameter based snapshot\"", "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 40, + "End Line": 43 + }, + { + "Function Name": "\"using field based snapshot\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 29, + "End Line": 35 + }, + { + "Function Name": "\"custom matching\"", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 61 + }, + { + "Function Name": "\"multi snapshot\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 47, + "End Line": 51 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 14, + "Function Parameters": 6, + "Function/Method Declarations": 4, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 10, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 7, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795483,7 +796435,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 21, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795500,15 +796452,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795516,7 +796468,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -795525,39 +796477,44 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 7, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "org.hamcrest.MatcherAssert", + "org.hamcrest.MatcherAssert.assertThat", + "org.hamcrest.Matchers", + "org.hamcrest.Matchers.equalTo", + "spock.lang.Snapshot", + "spock.lang.Snapshotter", + "spock.lang.Specification" ] }, - "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_StepwiseDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "CBSACSD.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_StepwiseDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_StepwiseDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 590.97, - "Y": 84.6, - "Z": -799.31 + "X": -3447.53, + "Y": 134.09, + "Z": -3065.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795566,60 +796523,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 1.86, + "Total LOC": 52, + "Coding LOC": 28, + "Documentation LOC": 15, + "Structural Magnitude": 6.76, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.321 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "15.26%", + "Error & Exception Exposure": "69.53%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "68.07%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "36.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "DFHCSDUP", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "\"Annotation on feature\"", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 23, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 23 + "Start Line": 28, + "End Line": 50 + }, + { + "Function Name": "\"Annotation on spec\"", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 26 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 10, + "Function Parameters": 2, + "Function/Method Declarations": 2, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 10, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 4, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -795629,7 +796596,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795654,7 +796621,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 22, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795671,15 +796638,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795696,7 +796663,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -795709,27 +796676,27 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "@CBSA_INSTALL@(BANK)", - "@CICS_PREFIX@.SDFHLOAD", - "@CSD_PREFIX@.DFHCSD" + "org.spockframework.EmbeddedSpecification", + "org.spockframework.runtime.extension.builtin.PreconditionContext", + "spock.lang.IgnoreIf" ] }, - "jcl/cics-banking-sample-application-cbsa/CICS.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_SubjectDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "CICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CICS.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_SubjectDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_SubjectDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -122.69, - "Y": 75.46, - "Z": -2233.27 + "X": -3895.48, + "Y": 168.14, + "Z": -1908.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795738,65 +796705,44 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 59, - "Coding LOC": 58, - "Documentation LOC": 0, - "Structural Magnitude": 8.86, + "Total LOC": 27, + "Coding LOC": 14, + "Documentation LOC": 8, + "Structural Magnitude": 15.28, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "81.76%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.14%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.78%", + "Documentation Exposure": "57.55%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "COBOL", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 42 - }, - { - "Function Name": "LKED", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 58 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 43, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 3, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 43, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -795806,12 +796752,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 4, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795825,7 +796771,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -795836,7 +796782,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795853,11 +796799,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 50, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -795878,51 +796824,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..ADATA(&MEMBER)", - "&CBSAHLQ..COBOL(&MEMBER)", - "&CBSAHLQ..DEBUG(&MEMBER)", - "&CBSAHLQ..DSECT", - "&CBSAHLQ..LKED(&MEMBER)", - "&CBSAHLQ..LOADLIB", - "&CICSHLQ..SDFHCOB", - "&CICSHLQ..SDFHLOAD", - "&CICSHLQ..SDFHSAMP", - "&COBOLHLQ..SIGYCOMP", - "&DB2HLQ..SDSNLOAD", - "&LEHLQ..SCEELKED", - "&LEHLQ..SCEESAMP" + "spock.lang.Specification", + "spock.lang.Subject" ] }, - "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_TagDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "CICSTS56.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_TagDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_TagDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Alert": "TYPOSQUATTING THREAT: 'DSNC10/SDSNLOD2' mimics 'DSNC10/SDSNLOAD'", - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 351.34, - "Y": 47.48, - "Z": -2730.67 + "X": -4274.87, + "Y": 119.03, + "Z": -3023.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795931,130 +796865,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 183, - "Coding LOC": 182, - "Documentation LOC": 0, - "Structural Magnitude": 19.74, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 2.56, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "81.31%", - "Tech Debt Exposure": "59.5%", - "Testing Exposure": "2.39%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.04%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.17%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CICS", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 100, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 142 - }, - { - "Function Name": "PRTDMPB", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 166 - }, - { - "Function Name": "PRTDMPA", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 143, - "End Line": 153 - }, - { - "Function Name": "PRTAUXT", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 167, - "End Line": 176 - }, - { - "Function Name": "CICSCNTL", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 34 - }, - { - "Function Name": "DTCNTL", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, + "Function Name": "\"has two tags\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 42 + "Start Line": 13, + "End Line": 16 }, { - "Function Name": "PRTBUXT", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "\"has one tag\"", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 177, - "End Line": 182 + "Start Line": 9, + "End Line": 11 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 70, - "Function Parameters": 4, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 7, - "I/O and Network Boundaries": 123, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 2, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 2, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -796079,7 +796963,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -796096,15 +796980,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 109, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 109, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -796117,62 +797001,43 @@ "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 1, + "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 21, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&INDEX2..SDFHAUTH", - "&INDEX2..SDFHLOAD", - "&INDEX3..SEYUAUTH", - "&INDEX3..SEYULOAD", - "ADCD.Z25A.TCPPARMS(GBLTDATA)", - "CBSA.CICSBSA.LOADLIB", - "CEE.SCEECICS", - "CEE.SCEERUN", - "CEE.SCEERUN2", - "DFH560.CICS.EQADPFMB", - "DFH560.CICS.SDFHLINK", - "DFH560.DFHCMACD", - "DFH560.EQAIVP.LOAD", - "DFH560.SDFHLIC", - "DFH560.SYSIN(DFHPLT)", - "DSNC10.SDSNLOAD", - "DSNC10.SDSNLOD2", - "ISM330.SEQAMOD", - "SYS1.MIGLIB", - "SYS1.SIEAMIGE", - "TCPIP.SEZATCP" + "spock.lang.Specification", + "spock.lang.Tag" ] }, - "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_TempDirDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "COMPALL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "org_spockframework_docs_extension_TempDirDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_TempDirDocSpec.groovy", + "Language": "Groovy", + "Architect": "dqyuan", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 255.21, - "Y": 92.42, - "Z": -2313.16 + "X": -3499.36, + "Y": 192.9, + "Z": -1985.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -796181,22 +797046,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 175, - "Coding LOC": 174, - "Documentation LOC": 0, - "Structural Magnitude": 49.18, + "Total LOC": 54, + "Coding LOC": 29, + "Documentation LOC": 13, + "Structural Magnitude": 6.38, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.172 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "7.16%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.48%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -796204,418 +797069,68 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.47%", + "Documentation Exposure": "33.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "XFRFUN", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 97, - "End Line": 103 - }, - { - "Function Name": "ABNDPROC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 15 - }, - { - "Function Name": "BANKDATA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "setupSpec", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 16, - "End Line": 19 - }, - { - "Function Name": "BNK1MAI", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 - }, - { - "Function Name": "BNKMENU", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 28 - }, - { - "Function Name": "CRDTAGY1", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 32 + "End Line": 35 }, { - "Function Name": "CRDTAGY2", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "demo", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 36 + "Start Line": 43, + "End Line": 50 }, { - "Function Name": "CRDTAGY3", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "setup", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 37, + "Start Line": 38, "End Line": 40 - }, - { - "Function Name": "CRDTAGY4", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 44 - }, - { - "Function Name": "CRDTAGY5", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 48 - }, - { - "Function Name": "CREACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 49, - "End Line": 52 - }, - { - "Function Name": "CRECUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 56 - }, - { - "Function Name": "DBCRFUN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 60 - }, - { - "Function Name": "DELACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 64 - }, - { - "Function Name": "DELCUS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 68 - }, - { - "Function Name": "GETCOMPY", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 72 - }, - { - "Function Name": "GETSCODE", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 76 - }, - { - "Function Name": "INQACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 80 - }, - { - "Function Name": "INQACCCU", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 84 - }, - { - "Function Name": "INQCUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 88 - }, - { - "Function Name": "UPDACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 92 - }, - { - "Function Name": "UPDCUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 93, - "End Line": 96 - }, - { - "Function Name": "BNK1ACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 108 - }, - { - "Function Name": "BNK1CAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 109, - "End Line": 113 - }, - { - "Function Name": "BNK1CAC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 117 - }, - { - "Function Name": "BNK1CCA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 121 - }, - { - "Function Name": "BNK1CCM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 122, - "End Line": 126 - }, - { - "Function Name": "BNK1CCS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 130 - }, - { - "Function Name": "BNK1CDM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 135 - }, - { - "Function Name": "BNK1CRA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 139 - }, - { - "Function Name": "BNK1DAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 140, - "End Line": 144 - }, - { - "Function Name": "BNK1DAC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 145, - "End Line": 148 - }, - { - "Function Name": "BNK1DCM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 153 - }, - { - "Function Name": "BNK1DCS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 158 - }, - { - "Function Name": "BNK1TFM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 159, - "End Line": 163 - }, - { - "Function Name": "BNK1TFN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 167 - }, - { - "Function Name": "BNK1UAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 172 - }, - { - "Function Name": "BNK1UAC", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 173, - "End Line": 174 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 38, - "Function Parameters": 0, - "Function/Method Declarations": 38, + "Sequential Logic Declarations": 10, + "Function Parameters": 3, + "Function/Method Declarations": 3, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 9, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 5, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 38, - "Authorship Metadata": 0, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -796639,7 +797154,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 23, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -796656,15 +797171,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 95, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 95, - "Design Short Vars": 38, + "Design Upper Case": 0, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -796688,32 +797203,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "java.nio.file.Path", + "spock.lang.*", + "spock.util.io.FileSystemFixture" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl": { + "groovy/spock_specs/org_spockframework_docs_extension_UseDocSpec.groovy": { "1. Artifact Identity": { - "Filename": "CRDTAGY1.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_extension_UseDocSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_extension_UseDocSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 1242.32, - "Y": 7.87, - "Z": -1185.67 + "X": -3135.13, + "Y": 152.75, + "Z": -1843.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -796722,51 +797238,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 19, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 2.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.09%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, + "Function Name": "avg", + "Structural Impact": 1.5, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 8 + }, + { + "Function Name": "\"can use avg() method\"", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 12, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -796775,17 +797301,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 1, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -796799,7 +797325,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -796810,7 +797336,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -796827,11 +797353,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -796861,30 +797387,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "spock.lang.Specification", + "spock.util.mop.Use" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl": { + "groovy/spock_specs/org_spockframework_docs_interaction_BuilderExampleSpec.groovy": { "1. Artifact Identity": { - "Filename": "CRDTAGY2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl", - "Language": "Jcl", + "Filename": "org_spockframework_docs_interaction_BuilderExampleSpec.groovy", + "Path": "groovy/spock_specs/org_spockframework_docs_interaction_BuilderExampleSpec.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -1295.11, - "Y": 114.22, - "Z": -2311.7 + "X": -2855.91, + "Y": 123.04, + "Z": -2214.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -796893,51 +797419,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 40, + "Coding LOC": 27, + "Documentation LOC": 2, + "Structural Magnitude": 2.54, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.185 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "9.46%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Tech Debt Exposure": "99.71%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "51.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "\"build example\"", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 27 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Sequential Logic Declarations": 8, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 3, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -796946,17 +797472,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, + "Decorators and Annotations": 1, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -796981,7 +797507,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797000,9 +797526,9 @@ "Vectorized Math & Tensor Operations": 0, "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -797032,82 +797558,96 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "groovy.transform.builder.*", + "spock.lang.Specification" ] - }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl": { + } + } + }, + "sqlite/mediawiki_sqlite_tables": { + "Directory Group Magnitude": 315.54, + "File Count": 11, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "90.9%", + "Static: Literature & Documentation": "9.1%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "5.49%", + "Error & Exception Exposure": "33.6%", + "Tech Debt Exposure": "90.91%", + "Testing Exposure": "1.62%", + "API Exposure": "0.42%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "63.03%", + "Instability Exposure": "45.45%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "36.66%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "sqlite/mediawiki_sqlite_tables/COPYING": { "1. Artifact Identity": { - "Filename": "CRDTAGY3.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl", - "Language": "Jcl", + "Filename": "COPYING", + "Path": "sqlite/mediawiki_sqlite_tables/COPYING", + "Language": "Plaintext", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Folder Dominant Lang": "sqlite", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 1596.65, - "Y": 35.44, - "Z": -3067.33 + "X": -2341.96, + "Y": -8.88, + "Z": -7213.53 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 379, + "Coding LOC": 0, + "Documentation LOC": 307, + "Structural Magnitude": 7.58, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -797127,7 +797667,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797169,15 +797709,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797201,32 +797741,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-block_target.sql": { "1. Artifact Identity": { - "Filename": "CRDTAGY4.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl", - "Language": "Jcl", + "Filename": "patch-block_target.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-block_target.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -57.99, - "Y": 44.26, - "Z": -604.43 + "X": -1794.18, + "Y": 10.01, + "Z": -7748.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797235,52 +797772,142 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, + "Total LOC": 42, + "Coding LOC": 30, "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Structural Magnitude": 12.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.167 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "8.84%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "2.55%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "50.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2, + "End Line": 15 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 17, + "End Line": 17 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 19 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 21 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 37 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 39, + "End Line": 39 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 41 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -797298,7 +797925,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797323,7 +797950,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797340,15 +797967,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797372,32 +797999,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-collation.sql": { "1. Artifact Identity": { - "Filename": "CRDTAGY5.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl", - "Language": "Jcl", + "Filename": "patch-collation.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-collation.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -547.3, - "Y": 80.95, - "Z": -3773.44 + "X": -1599.29, + "Y": 32.75, + "Z": -7728.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797407,34 +798031,44 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, + "Coding LOC": 5, "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Structural Magnitude": 2.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "0.82%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "29.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, @@ -797447,11 +798081,11 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -797469,7 +798103,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797494,7 +798128,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797511,15 +798145,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797543,32 +798177,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREACC.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql": { "1. Artifact Identity": { - "Filename": "CREACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREACC.jcl", - "Language": "Jcl", + "Filename": "patch-existencelinks.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 790.95, - "Y": 65.39, - "Z": -2927.12 + "X": -2381.44, + "Y": -73.32, + "Z": -6947.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797578,35 +798209,45 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, + "Coding LOC": 6, "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.0%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "34.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, @@ -797618,15 +798259,15 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -797640,7 +798281,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797665,7 +798306,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797682,15 +798323,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797714,32 +798355,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-file.sql": { "1. Artifact Identity": { - "Filename": "CRECUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl", - "Language": "Jcl", + "Filename": "patch-file.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-file.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 423.48, - "Y": 103.32, - "Z": -1118.48 + "X": -2106.91, + "Y": -108.36, + "Z": -6909.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797748,56 +798386,156 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, + "Total LOC": 47, + "Coding LOC": 33, "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Structural Magnitude": 13.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.152 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "8.36%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "47.17%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 25 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2, + "End Line": 7 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 42 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 9 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 27 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 29 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 31, + "End Line": 31 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 46 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -797811,7 +798549,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797836,7 +798574,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797853,15 +798591,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 11, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797885,32 +798623,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql": { "1. Artifact Identity": { - "Filename": "CREDB00.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl", - "Language": "Jcl", + "Filename": "patch-user-user_is_temp.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1151.48, - "Y": 87.8, - "Z": -2635.73 + "X": -1334.79, + "Y": -96.87, + "Z": -6905.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -797919,57 +798654,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Total LOC": 7, + "Coding LOC": 2, + "Documentation LOC": 4, + "Structural Magnitude": 3.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 3.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.09%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "11.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "ALTER_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 5, + "End Line": 6 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -798007,7 +798742,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798024,11 +798759,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -798040,7 +798775,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -798049,39 +798784,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql": { "1. Artifact Identity": { - "Filename": "CREDB2L.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl", - "Language": "Jcl", + "Filename": "patch-user_autocreate_serial-uas_year.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -247.9, - "Y": 110.87, - "Z": -2016.63 + "X": -1380.27, + "Y": -43.7, + "Z": -7502.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798090,66 +798822,96 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 27, - "Coding LOC": 26, - "Documentation LOC": 0, - "Structural Magnitude": 5.22, + "Total LOC": 28, + "Coding LOC": 18, + "Documentation LOC": 4, + "Structural Magnitude": 6.26, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.192 + "Raw Cognitive Density": 0.278 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.79%", - "Error & Exception Exposure": "92.71%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.42%", - "API Exposure": "6.59%", + "Cognitive Load Exposure": "13.14%", + "Error & Exception Exposure": "84.62%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "87.14%", + "Documentation Exposure": "60.42%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 20 + "Start Line": 14, + "End Line": 19 }, { - "Function Name": "STEP20", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 9 + }, + { + "Function Name": "INSERT_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 21, - "End Line": 26 + "End Line": 25 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 27 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 3, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -798183,12 +798945,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Resource Deallocation & Cleanup": 2, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798205,15 +798967,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 11, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 5, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798230,39 +798992,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..DB2.JCL.INSTALL", - "&HLQ..DB2.JCL.INSTALL(EMPTY)" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREI101.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql": { "1. Artifact Identity": { - "Filename": "CREI101.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI101.jcl", - "Language": "Jcl", + "Filename": "patch-watchlist_label.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -60.83, - "Y": 80.97, - "Z": -1557.66 + "X": -2064.86, + "Y": 59.16, + "Z": -7604.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798271,55 +799030,85 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 23, + "Total LOC": 17, + "Coding LOC": 12, "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Structural Magnitude": 4.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "60.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 1, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 14 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -798376,15 +799165,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798392,7 +799181,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -798401,39 +799190,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREI201.jcl": { + "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql": { "1. Artifact Identity": { - "Filename": "CREI201.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI201.jcl", - "Language": "Jcl", + "Filename": "searchindex-fts3.sql", + "Path": "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -42.5, - "Y": 55.23, - "Z": -3283.0 + "X": -2034.62, + "Y": -148.41, + "Z": -6689.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798442,56 +799228,76 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Total LOC": 19, + "Coding LOC": 6, + "Documentation LOC": 9, + "Structural Magnitude": 5.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.38%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.1%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.14%", + "API Exposure": "4.63%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "37.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", + "Function Name": "INSERT_Statement", "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 18 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 6, + "End Line": 16 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -798525,12 +799331,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798547,15 +799353,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798563,7 +799369,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -798572,39 +799378,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREI301.jcl": { + "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql": { "1. Artifact Identity": { - "Filename": "CREI301.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI301.jcl", - "Language": "Jcl", + "Filename": "searchindex-no-fts.sql", + "Path": "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1169.85, - "Y": 46.65, - "Z": -1983.63 + "X": -1605.34, + "Y": -145.6, + "Z": -6950.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798614,54 +799417,124 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, - "Control Flow Ratio": "0.0%", + "Coding LOC": 13, + "Documentation LOC": 5, + "Structural Magnitude": 10.16, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.462 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "99.93%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "98.81%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "58.49%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "DELETE_Statement", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 18 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 6, + "End Line": 6 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 23 + "End Line": 9 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 10 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 20 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 8, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -798696,7 +799569,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -798718,15 +799591,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 8, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798734,7 +799607,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -798743,39 +799616,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREL001.jcl": { + "sqlite/mediawiki_sqlite_tables/tables-generated.sql": { "1. Artifact Identity": { - "Filename": "CREL001.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL001.jcl", - "Language": "Jcl", + "Filename": "tables-generated.sql", + "Path": "sqlite/mediawiki_sqlite_tables/tables-generated.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 589.4, - "Y": 100.45, - "Z": -2675.2 + "X": -1805.21, + "Y": -74.03, + "Z": -7206.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798784,1098 +799654,2026 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 5.2, + "Total LOC": 948, + "Coding LOC": 683, + "Documentation LOC": 4, + "Structural Magnitude": 247.46, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.49%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", + "Documentation Exposure": "13.37%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 27 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 51 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 103, + "End Line": 112 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 220, + "End Line": 236 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 251, + "End Line": 262 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 286, + "End Line": 301 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 381, + "End Line": 390 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 442, + "End Line": 452 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 485, + "End Line": 498 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 511, + "End Line": 522 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 580, + "End Line": 589 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 629, + "End Line": 645 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 685, + "End Line": 694 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 731, + "End Line": 740 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 743, + "End Line": 755 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 809, + "End Line": 827 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 836, + "End Line": 851 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 69 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.4, "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 + "Start Line": 80, + "End Line": 88 }, { - "Function Name": "STEP20", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 122, + "End Line": 128 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 316, + "End Line": 322 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 338, + "End Line": 346 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 536, + "End Line": 542 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 610, + "End Line": 616 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 673, + "End Line": 680 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 768, + "End Line": 774 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 11, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 2, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.BUILDJCL", - "&HLQ..CICSBSA.BUILDJCL(EMPTY)" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL002.jcl": { - "1. Artifact Identity": { - "Filename": "CREL002.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL002.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 269.07, - "Y": 63.91, - "Z": -1549.38 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 91, + "End Line": 96 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.ADATA" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL003.jcl": { - "1. Artifact Identity": { - "Filename": "CREL003.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL003.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -253.54, - "Y": 89.52, - "Z": -2852.34 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 171, + "End Line": 176 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.LOADLIB" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL004.jcl": { - "1. Artifact Identity": { - "Filename": "CREL004.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL004.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 1069.26, - "Y": 79.99, - "Z": -1990.79 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 196, + "End Line": 201 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DBRM" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL005.jcl": { - "1. Artifact Identity": { - "Filename": "CREL005.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL005.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -450.91, - "Y": 130.59, - "Z": -1909.03 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 208, + "End Line": 213 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.LKED" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL006.jcl": { - "1. Artifact Identity": { - "Filename": "CREL006.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL006.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 467.18, - "Y": 36.16, - "Z": -1637.88 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 5.2, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 349, + "End Line": 354 + }, { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 + "Start Line": 361, + "End Line": 366 }, { - "Function Name": "STEP20", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 11, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 2, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.BMS", - "&HLQ..CICSBSA.BMS(EMPTY)" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL007.jcl": { - "1. Artifact Identity": { - "Filename": "CREL007.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL007.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 468.21, - "Y": 58.35, - "Z": -3264.13 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 371, + "End Line": 376 + }, { - "Function Name": "STEP10", + "Function Name": "CREATE_Statement", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 406, + "End Line": 411 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 414, + "End Line": 419 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 432, + "End Line": 437 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 475, + "End Line": 480 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 549, + "End Line": 554 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 565, + "End Line": 570 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 707, + "End Line": 712 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 719, + "End Line": 724 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 781, + "End Line": 786 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 860, + "End Line": 865 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 875, + "End Line": 880 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 897, + "End Line": 902 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 907, + "End Line": 912 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 9 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 117 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 145 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 157 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 162, + "End Line": 166 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 179, + "End Line": 182 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 187, + "End Line": 191 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 275, + "End Line": 279 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 332, + "End Line": 335 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 398, + "End Line": 401 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 424, + "End Line": 427 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 530, + "End Line": 533 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 574, + "End Line": 577 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 594, + "End Line": 598 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 603, + "End Line": 607 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 665, + "End Line": 668 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 760, + "End Line": 763 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 790, + "End Line": 793 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 796, + "End Line": 799 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 802, + "End Line": 806 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 868, + "End Line": 872 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 887, + "End Line": 890 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 923, + "End Line": 927 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 932, + "End Line": 936 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 941, + "End Line": 945 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 13 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 31 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 53 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 55 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 57 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 59 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 71 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 73 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 75 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 77 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 98, + "End Line": 98 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 100 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 119 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 130, + "End Line": 130 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 132, + "End Line": 132 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 134, + "End Line": 134 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 138 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 147, + "End Line": 147 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 149 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 151, + "End Line": 151 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 159, + "End Line": 159 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 168 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 184, + "End Line": 184 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 193, + "End Line": 193 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 203, + "End Line": 203 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 205, + "End Line": 205 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 215, + "End Line": 215 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 217, + "End Line": 217 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 238 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 240, + "End Line": 242 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 244, + "End Line": 244 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 246, + "End Line": 246 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 248, + "End Line": 248 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 264, + "End Line": 264 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 266, + "End Line": 266 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 268 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 270 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 272, + "End Line": 272 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 281, + "End Line": 283 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 303, + "End Line": 303 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 305, + "End Line": 305 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 307, + "End Line": 307 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 309, + "End Line": 309 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 311, + "End Line": 313 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 324, + "End Line": 324 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 326, + "End Line": 328 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 330, + "End Line": 330 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 356, + "End Line": 356 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 358, + "End Line": 358 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 368, + "End Line": 368 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 378, + "End Line": 378 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 392, + "End Line": 392 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 394, + "End Line": 394 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 396, + "End Line": 396 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 403, + "End Line": 403 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 421, + "End Line": 421 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 429, + "End Line": 429 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 439, + "End Line": 439 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 454, + "End Line": 454 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 456, + "End Line": 456 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 458, + "End Line": 460 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 462, + "End Line": 462 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 464, + "End Line": 466 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 468, + "End Line": 468 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 470, + "End Line": 472 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 482, + "End Line": 482 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 500, + "End Line": 500 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 502, + "End Line": 502 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 504, + "End Line": 504 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 506, + "End Line": 506 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 508, + "End Line": 508 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 524, + "End Line": 524 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 526, + "End Line": 526 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 528, + "End Line": 528 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 544, + "End Line": 544 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 546, + "End Line": 546 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 556, + "End Line": 556 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 558, + "End Line": 558 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 560, + "End Line": 560 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 562, + "End Line": 562 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 572, + "End Line": 572 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 591, + "End Line": 591 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 600, + "End Line": 600 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 618, + "End Line": 618 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 620, + "End Line": 622 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 624, + "End Line": 626 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 647, + "End Line": 647 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 649, + "End Line": 651 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 653, + "End Line": 653 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 655, + "End Line": 657 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 659, + "End Line": 659 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 661, + "End Line": 661 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 663, + "End Line": 663 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 670, + "End Line": 670 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 682, + "End Line": 682 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 696, + "End Line": 696 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 698, + "End Line": 698 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 700, + "End Line": 700 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 702, + "End Line": 704 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 714, + "End Line": 714 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 716, + "End Line": 716 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 726, + "End Line": 726 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 728, + "End Line": 728 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 757, + "End Line": 757 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 765, + "End Line": 765 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 776, + "End Line": 778 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 788, + "End Line": 788 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 829, + "End Line": 829 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 831, + "End Line": 831 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 833, + "End Line": 833 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 853, + "End Line": 853 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 855, + "End Line": 855 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 857, + "End Line": 857 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 882, + "End Line": 882 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 884, + "End Line": 884 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 892, + "End Line": 892 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 894, + "End Line": 894 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 904, + "End Line": 904 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 914, + "End Line": 914 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 916, + "End Line": 916 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 918, + "End Line": 920 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 929, + "End Line": 929 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 938, + "End Line": 938 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 947, + "End Line": 947 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 134, + "Class/Entity Declarations": 64, + "Defensive Programming Constructs": 83, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -799914,7 +801712,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 398, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -799922,7 +801720,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -799931,15 +801729,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 198, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799956,96 +801754,108 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DEBUG" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL008.jcl": { + "9. Extracted Dependencies": [] + } + } + }, + "python/wtfpython": { + "Directory Group Magnitude": 313.92, + "File Count": 6, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "83.3%", + "Static: Literature & Documentation": "16.7%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "21.73%", + "Error & Exception Exposure": "29.68%", + "Tech Debt Exposure": "37.59%", + "Testing Exposure": "14.42%", + "API Exposure": "3.61%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "33.33%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "62.22%", + "Instability Exposure": "41.67%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "7.42%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "python/wtfpython/README.md": { "1. Artifact Identity": { - "Filename": "CREL008.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL008.jcl", - "Language": "Jcl", + "Filename": "README.md", + "Path": "python/wtfpython/README.md", + "Language": "Markdown", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 745.7, - "Y": 65.31, - "Z": -1646.6 + "X": -4576.34, + "Y": 99.18, + "Z": 10610.36 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.62, + "Total LOC": 4180, + "Coding LOC": 0, + "Documentation LOC": 3118, + "Structural Magnitude": 83.6, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "4.8%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.86%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800101,19 +801911,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, - "Instructional Code Examples": 0, + "Instructional Code Examples": 504, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Structured Literature Headers": 174, + "Hyperlinked Literature References": 171, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -800126,110 +801936,87 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.CBSAMOD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREL009.jcl": { + "python/wtfpython/2_tricky_strings.py": { "1. Artifact Identity": { - "Filename": "CREL009.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL009.jcl", - "Language": "Jcl", + "Filename": "2_tricky_strings.py", + "Path": "python/wtfpython/2_tricky_strings.py", + "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -305.08, - "Y": 127.91, - "Z": -2458.45 + "X": -4313.79, + "Y": 191.44, + "Z": 10129.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 5.2, + "Total LOC": 20, + "Coding LOC": 12, + "Documentation LOC": 3, + "Structural Magnitude": 15.24, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.167 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", + "Documentation Exposure": "9.54%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 6, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 6, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -800242,7 +802029,7 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 8, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -800281,12 +802068,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 6, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 6, "Design Pascal Case": 0, - "Design Upper Case": 11, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -800306,108 +802093,95 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.COBOL", - "&HLQ..CICSBSA.COBOL(EMPTY)" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREL010.jcl": { + "python/wtfpython/insert_ids.py": { "1. Artifact Identity": { - "Filename": "CREL010.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL010.jcl", - "Language": "Jcl", + "Filename": "insert_ids.py", + "Path": "python/wtfpython/insert_ids.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 986.53, - "Y": 70.68, - "Z": -2412.03 + "X": -4069.66, + "Y": 187.76, + "Z": 10761.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, + "Total LOC": 25, + "Coding LOC": 15, "Documentation LOC": 0, - "Structural Magnitude": 5.2, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Structural Magnitude": 8.4, + "Control Flow Ratio": "44.4%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 1.15 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", + "Cognitive Load Exposure": "83.2%", + "Error & Exception Exposure": "88.67%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", + "Testing Exposure": "2.34%", + "API Exposure": "4.25%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "generate_random_id_comment", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 + "Start Line": 9, + "End Line": 11 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 4, "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, + "Function Parameters": 1, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -800420,7 +802194,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800445,7 +802219,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800462,11 +802236,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 5, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 5, "Design Pascal Case": 0, - "Design Upper Case": 11, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800487,107 +802261,96 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DSECT", - "&HLQ..CICSBSA.DSECT(EMPTY)" + "uuid" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL011.jcl": { + "python/wtfpython/mixed_tabs_and_spaces.py": { "1. Artifact Identity": { - "Filename": "CREL011.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL011.jcl", - "Language": "Jcl", + "Filename": "mixed_tabs_and_spaces.py", + "Path": "python/wtfpython/mixed_tabs_and_spaces.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Mixed (75.0% Spaces / 25.0% Tabs)", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -89.13, - "Y": 44.49, - "Z": -1833.94 + "X": -4807.34, + "Y": 107.58, + "Z": 10237.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 25, + "Total LOC": 8, + "Coding LOC": 6, "Documentation LOC": 0, - "Structural Magnitude": 5.2, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, + "Structural Magnitude": 4.22, + "Control Flow Ratio": "33.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", - "Error & Exception Exposure": "93.09%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", - "API Exposure": "6.67%", + "Testing Exposure": "1.04%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.08%", + "Documentation Exposure": "4.77%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 19 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 25 + "Function Name": "square", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 2, + "Function Parameters": 1, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800614,7 +802377,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -800625,8 +802388,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 1, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800643,11 +802406,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 11, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800668,114 +802431,181 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.REORG", - "&HLQ..CICSBSA.REORG(EMPTY)" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl": { + "python/wtfpython/notebook_generator.py": { "1. Artifact Identity": { - "Filename": "CRELIBS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl", - "Language": "Jcl", + "Filename": "notebook_generator.py", + "Path": "python/wtfpython/notebook_generator.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -440.53, - "Y": 85.05, - "Z": -2106.17 + "X": -4390.23, + "Y": 179.55, + "Z": 10396.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 20, - "Documentation LOC": 0, - "Structural Magnitude": 3.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 398, + "Coding LOC": 245, + "Documentation LOC": 89, + "Structural Magnitude": 199.8, + "Control Flow Ratio": "65.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.35 + "Raw Cognitive Density": 0.898 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.76%", - "Error & Exception Exposure": "89.45%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "32.19%", + "Error & Exception Exposure": "89.44%", + "Tech Debt Exposure": "25.51%", + "Testing Exposure": "80.0%", + "API Exposure": "6.52%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "47.5%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.25%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "IEFBR14", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "parse_example_parts", + "Structural Impact": 57.1, + "Lines of Code (LOC)": 103, + "Control Flow Branches": 25, + "Input Parameters": 3, + "Control Flow Ratio": "92.6%", + "Start Line": 96, + "End Line": 198 + }, + { + "Function Name": "convert_to_cells", + "Structural Impact": 16.2, + "Lines of Code (LOC)": 81, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 228, + "End Line": 308 + }, + { + "Function Name": "convert_to_notebook", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 311, + "End Line": 342 + }, + { + "Function Name": "inspect_and_sanitize_code_lines", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 208, + "End Line": 225 + }, + { + "Function Name": "remove_from_beginning", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 201, + "End Line": 205 + }, + { + "Function Name": "is_interactive_statement", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 89, + "End Line": 93 + }, + { + "Function Name": "generate_code_block", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 20 + "Start Line": 57, + "End Line": 72 + }, + { + "Function Name": "generate_markdown_block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 86 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 13, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "Control Flow Branches": 56, + "Sequential Logic Declarations": 29, + "Function Parameters": 9, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 17, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 8, + "State Mutations / Variable Reassignments": 81, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 25, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 12, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 3, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -800785,19 +802615,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 226, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800814,13 +802644,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 15, + "Core Var Decl": 69, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 67, "Design Pascal Case": 0, - "Design Upper Case": 15, + "Design Upper Case": 2, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 1, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -800846,101 +802676,92 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 12, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "CREDB2L", - "CREL001", - "CREL002", - "CREL003", - "CREL004", - "CREL005", - "CREL006", - "CREL007", - "CREL008", - "CREL009", - "CREL010", - "CREL011" + "json", + "os", + "pprint", + "sys" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl": { + "python/wtfpython/noxfile.py": { "1. Artifact Identity": { - "Filename": "CRESG01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl", - "Language": "Jcl", + "Filename": "noxfile.py", + "Path": "python/wtfpython/noxfile.py", + "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 725.74, - "Y": 47.34, - "Z": -1122.52 + "X": -3977.43, + "Y": 253.19, + "Z": 10025.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, + "Total LOC": 14, + "Coding LOC": 8, "Documentation LOC": 0, - "Structural Magnitude": 2.02, - "Control Flow Ratio": "0.0%", + "Structural Magnitude": 2.66, + "Control Flow Ratio": "14.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.375 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.28%", + "API Exposure": "5.12%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "6.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "tests", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 12, + "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Sequential Logic Declarations": 6, - "Function Parameters": 0, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800949,12 +802770,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800979,7 +802800,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800995,13 +802816,13 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 8, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -801012,7 +802833,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801021,39 +802842,64 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "nox", + "nox.sessions", + "typing" ] - }, - "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl": { + } + } + }, + "jcl/cics-banking-sample-application-cbsa": { + "Directory Group Magnitude": 312.88, + "File Count": 99, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "6.08%", + "Error & Exception Exposure": "52.59%", + "Tech Debt Exposure": "58.1%", + "Testing Exposure": "1.47%", + "API Exposure": "1.39%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "1.61%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "59.93%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "38.15%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl": { "1. Artifact Identity": { - "Filename": "CRESG02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl", + "Filename": "ABNDPROC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -787.26, - "Y": 59.35, - "Z": -2709.88 + "X": -1061.47, + "Y": 112.96, + "Z": -2906.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801062,55 +802908,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801125,7 +802971,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801150,7 +802996,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801167,11 +803013,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801183,7 +803029,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801192,7 +803038,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801201,30 +803047,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl": { + "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl": { "1. Artifact Identity": { - "Filename": "CRESG03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl", + "Filename": "ACCLOAD.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1411.84, - "Y": 32.73, - "Z": -2490.12 + "X": 1664.29, + "Y": 19.7, + "Z": -2898.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801233,55 +803079,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801296,7 +803142,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801321,7 +803167,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801338,11 +803184,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801354,7 +803200,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801363,7 +803209,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801372,30 +803218,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl": { + "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl": { "1. Artifact Identity": { - "Filename": "CRETB01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl", + "Filename": "ACCOFFL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 895.66, - "Y": 83.43, - "Z": -1831.75 + "X": -352.52, + "Y": 110.7, + "Z": -1030.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801404,55 +803250,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 36, - "Documentation LOC": 0, - "Structural Magnitude": 3.12, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.139 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.59%", - "Error & Exception Exposure": "80.94%", - "Tech Debt Exposure": "97.7%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.66%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 28, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 36 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801467,7 +803313,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801492,7 +803338,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801509,11 +803355,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801525,7 +803371,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801534,7 +803380,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801543,18 +803389,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl": { + "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl": { "1. Artifact Identity": { - "Filename": "CRETB02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl", + "Filename": "BANKDATA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -801564,9 +803410,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 838.84, - "Y": 105.09, - "Z": -2726.45 + "X": 188.46, + "Y": 52.61, + "Z": -1700.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801575,22 +803421,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 34, - "Documentation LOC": 0, - "Structural Magnitude": 2.98, + "Total LOC": 115, + "Coding LOC": 64, + "Documentation LOC": 50, + "Structural Magnitude": 7.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.147 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.76%", - "Error & Exception Exposure": "81.76%", - "Tech Debt Exposure": "98.4%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "86.07%", + "Tech Debt Exposure": "98.43%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801598,32 +803444,52 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.3%", + "Documentation Exposure": "12.05%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 26, + "Function Name": "BANKDAT1", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 23, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 34 + "Start Line": 56, + "End Line": 78 + }, + { + "Function Name": "BANKDAT0", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 36, + "End Line": 55 + }, + { + "Function Name": "BANKDAT5", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 94, + "End Line": 114 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 17, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 3, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 3, + "I/O and Network Boundaries": 25, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801650,7 +803516,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -801663,7 +803529,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 32, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801680,15 +803546,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 20, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 20, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801705,39 +803571,41 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 3, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "@BANK_DBRMLIB@", + "@BANK_LOADLIB@", + "@BANK_PREFIX@.CUSTOMER", + "@DB2_HLQ@.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl": { + "jcl/cics-banking-sample-application-cbsa/BATCH.jcl": { "1. Artifact Identity": { - "Filename": "CRETB03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl", + "Filename": "BATCH.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BATCH.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -594.26, - "Y": 90.86, - "Z": -2436.19 + "X": -193.46, + "Y": 52.39, + "Z": -2438.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801746,22 +803614,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 29, - "Coding LOC": 27, - "Documentation LOC": 0, - "Structural Magnitude": 2.54, + "Total LOC": 57, + "Coding LOC": 52, + "Documentation LOC": 4, + "Structural Magnitude": 8.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.185 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.62%", - "Error & Exception Exposure": "84.86%", - "Tech Debt Exposure": "99.71%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "73.59%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801769,32 +803637,42 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "53.19%", + "Documentation Exposure": "32.71%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Function Name": "COBOL", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 36, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 6, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 28 + "Start Line": 5, + "End Line": 40 + }, + { + "Function Name": "LKED", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 42, + "End Line": 56 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 42, + "Function Parameters": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801834,7 +803712,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801851,15 +803729,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 50, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 50, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801867,7 +803745,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801876,39 +803754,50 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&CBSAHLQ..ADATA(&MEMBER)", + "&CBSAHLQ..COBOL(&MEMBER)", + "&CBSAHLQ..DEBUG(&MEMBER)", + "&CBSAHLQ..DSECT", + "&CBSAHLQ..LKED(&MEMBER)", + "&CBSAHLQ..LOADLIB", + "&CICSHLQ..SDFHCOB", + "&CICSHLQ..SDFHLOAD", + "&CICSHLQ..SDFHSAMP", + "&COBOLHLQ..SIGYCOMP", + "&DB2HLQ..SDSNLOAD", + "&LEHLQ..SCEELKED", + "&LEHLQ..SCEESAMP" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl": { "1. Artifact Identity": { - "Filename": "CRETS01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl", + "Filename": "BNK1ACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -331.11, - "Y": 47.7, - "Z": -1135.32 + "X": 1283.4, + "Y": 71.83, + "Z": -1249.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801917,55 +803806,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1ACC", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801980,7 +803869,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802005,7 +803894,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -802022,15 +803911,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802038,7 +803927,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -802047,7 +803936,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802055,31 +803944,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl": { "1. Artifact Identity": { - "Filename": "CRETS02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl", + "Filename": "BNK1CAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 48.24, - "Y": 114.88, - "Z": -3297.43 + "X": -177.42, + "Y": 87.12, + "Z": -3615.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802088,55 +803977,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -802151,7 +804040,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802176,7 +804065,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -802193,11 +804082,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -802209,7 +804098,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -802218,7 +804107,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802227,30 +804116,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl": { "1. Artifact Identity": { - "Filename": "CRETS03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl", + "Filename": "BNK1CAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1224.33, - "Y": 74.41, - "Z": -1535.68 + "X": -1156.32, + "Y": 103.72, + "Z": -2145.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802259,55 +804148,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1CAM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -802322,7 +804211,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802347,7 +804236,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -802364,15 +804253,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802380,7 +804269,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -802389,7 +804278,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802397,31 +804286,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl": { "1. Artifact Identity": { - "Filename": "DB2BIND.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl", + "Filename": "BNK1CCA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 713.06, - "Y": 36.88, - "Z": -2480.31 + "X": 1574.74, + "Y": 48.42, + "Z": -1297.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802430,65 +804319,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 110, - "Coding LOC": 98, - "Documentation LOC": 0, - "Structural Magnitude": 8.86, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.94%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.0%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BIND", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 78, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 89 - }, - { - "Function Name": "GRANT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 109 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 24, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 38, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -802528,7 +804407,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -802545,15 +804424,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 27, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 27, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802561,7 +804440,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 3, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -802570,39 +804449,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&BANKDBRM(BANKDATA)", - "&BANKDBRM(CREACC)", - "&BANKDBRM(CRECUST)", - "&BANKDBRM(DBCRFUN)", - "&BANKDBRM(DELACC)", - "&BANKDBRM(DELCUS)", - "&BANKDBRM(INQACC)", - "&BANKDBRM(INQACCCU)", - "&BANKDBRM(UPDACC)", - "&BANKDBRM(XFRFUN)", - "&DB2HLQ..SDSNEXIT", - "&DB2HLQ..SDSNLOAD", - "CBSA.DB2.JCL.INSTALL", + "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl": { "1. Artifact Identity": { - "Filename": "DBCRFUN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl", + "Filename": "BNK1CCM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802612,9 +804479,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1855.1, - "Y": -1.05, - "Z": -1755.93 + "X": 1381.15, + "Y": 71.87, + "Z": -3154.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802623,42 +804490,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "BNK1CCM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -802728,15 +804595,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802761,19 +804628,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl": { "1. Artifact Identity": { - "Filename": "DEFAULT.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", + "Filename": "BNK1CCS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802783,9 +804650,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 90.11, - "Y": 88.15, - "Z": -2113.1 + "X": -1186.93, + "Y": 91.82, + "Z": -1930.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802794,46 +804661,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 48, - "Coding LOC": 47, - "Documentation LOC": 0, - "Structural Magnitude": 24.94, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", - "Popularity Rank": 44, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.489 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.25%", - "Error & Exception Exposure": "78.18%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.62%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.58%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 9, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 9, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -802846,7 +804724,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802888,15 +804766,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802920,17 +804798,20 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 44, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 65 + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "jcl/cics-banking-sample-application-cbsa/DELACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl": { "1. Artifact Identity": { - "Filename": "DELACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DELACC.jcl", + "Filename": "BNK1CDM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802940,9 +804821,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -476.58, - "Y": 126.94, - "Z": -3031.76 + "X": 123.04, + "Y": 67.75, + "Z": -739.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802951,42 +804832,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Testing Exposure": "0.66%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "BNK1CDM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -803000,7 +804881,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -803056,11 +804937,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -803089,7 +804970,7 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, @@ -803098,10 +804979,10 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl": { "1. Artifact Identity": { - "Filename": "DELCUS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl", + "Filename": "BNK1CRA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -803111,9 +804992,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1302.2, - "Y": 28.49, - "Z": -2172.9 + "X": 1195.48, + "Y": 62.83, + "Z": -3591.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803123,29 +805004,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -803171,7 +805052,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -803235,7 +805116,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803262,29 +805143,29 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl": { "1. Artifact Identity": { - "Filename": "DROPDB2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl", + "Filename": "BNK1DAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 188.45, - "Y": 54.46, - "Z": -2856.16 + "X": 499.16, + "Y": 90.74, + "Z": -647.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803293,55 +805174,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 33, - "Documentation LOC": 0, - "Structural Magnitude": 3.16, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.152 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.85%", - "Error & Exception Exposure": "82.18%", - "Tech Debt Exposure": "98.69%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.17%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 30, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 38 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803356,7 +805237,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803381,7 +805262,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803398,11 +805279,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -803414,7 +805295,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803423,7 +805304,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803432,30 +805313,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl": { "1. Artifact Identity": { - "Filename": "DRPDB00.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl", + "Filename": "BNK1DAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -910.39, - "Y": 119.17, - "Z": -2213.69 + "X": -603.73, + "Y": 128.09, + "Z": -3321.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803464,55 +805345,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1DAM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803527,7 +805408,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803552,7 +805433,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803569,15 +805450,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803585,7 +805466,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803594,7 +805475,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803602,31 +805483,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl": { "1. Artifact Identity": { - "Filename": "DRPI101.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl", + "Filename": "BNK1DCM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1110.33, - "Y": 22.41, - "Z": -3192.84 + "X": 1751.61, + "Y": 82.5, + "Z": -1808.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803635,55 +805516,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1DCM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803698,7 +805579,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803723,7 +805604,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803740,15 +805621,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803756,7 +805637,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803765,7 +805646,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803773,31 +805654,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl": { "1. Artifact Identity": { - "Filename": "DRPI201.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl", + "Filename": "BNK1DCS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 345.8, - "Y": 83.0, - "Z": -970.96 + "X": -919.55, + "Y": 68.16, + "Z": -3091.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803806,55 +805687,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803869,7 +805750,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803894,7 +805775,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803911,11 +805792,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -803927,7 +805808,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803936,7 +805817,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803945,30 +805826,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl": { "1. Artifact Identity": { - "Filename": "DRPI301.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl", + "Filename": "BNK1MAI.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -574.37, - "Y": 112.19, - "Z": -3082.23 + "X": -991.35, + "Y": 71.62, + "Z": -1489.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803977,55 +805858,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1MAI", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804040,7 +805921,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804065,7 +805946,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804082,15 +805963,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -804098,7 +805979,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804107,7 +805988,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804115,31 +805996,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl", + "Filename": "BNK1TFM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1516.92, - "Y": 72.68, - "Z": -2314.62 + "X": 720.33, + "Y": 113.75, + "Z": -3565.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804148,55 +806029,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1TFM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804211,7 +806092,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804236,7 +806117,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804253,15 +806134,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -804269,7 +806150,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804278,7 +806159,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804286,31 +806167,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl", + "Filename": "BNK1TFN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -682.71, - "Y": 109.01, - "Z": -1343.37 + "X": 1846.14, + "Y": 28.31, + "Z": -2411.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804319,55 +806200,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804382,7 +806263,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804407,7 +806288,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804424,11 +806305,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804440,7 +806321,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804449,7 +806330,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804458,30 +806339,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl", + "Filename": "BNK1UAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 486.08, - "Y": 63.84, - "Z": -3413.44 + "X": -794.73, + "Y": 57.4, + "Z": -1229.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804490,55 +806371,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804553,7 +806434,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804578,7 +806459,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804595,11 +806476,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804611,7 +806492,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804620,7 +806501,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804629,30 +806510,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl": { "1. Artifact Identity": { - "Filename": "DRPTB01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl", + "Filename": "BNK1UAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1052.91, - "Y": 34.93, - "Z": -1063.92 + "X": 992.49, + "Y": 22.86, + "Z": -768.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804661,55 +806542,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "23.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BNK1UAM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804724,7 +806605,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804749,7 +806630,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804766,15 +806647,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -804782,7 +806663,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804791,7 +806672,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804799,31 +806680,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl": { + "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl": { "1. Artifact Identity": { - "Filename": "DRPTB02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl", + "Filename": "BNKMENU.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -976.76, - "Y": 107.55, - "Z": -2591.31 + "X": 360.94, + "Y": 79.59, + "Z": -3797.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804832,55 +806713,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804895,7 +806776,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804920,7 +806801,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804937,11 +806818,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804953,7 +806834,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804962,7 +806843,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804971,18 +806852,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl": { + "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl": { "1. Artifact Identity": { - "Filename": "DRPTB03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl", + "Filename": "BTCHSQL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -804992,9 +806873,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1379.5, - "Y": 74.55, - "Z": -2932.13 + "X": 661.38, + "Y": 85.57, + "Z": -3199.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805004,21 +806885,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805026,7 +806907,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -805078,7 +806959,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805150,22 +807031,22 @@ "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl": { + "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl": { "1. Artifact Identity": { - "Filename": "DRPTS01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl", + "Filename": "CBSACSD.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -105.57, - "Y": 83.15, - "Z": -881.25 + "X": 590.81, + "Y": 84.6, + "Z": -799.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805174,42 +807055,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 24, + "Coding LOC": 10, + "Documentation LOC": 13, + "Structural Magnitude": 1.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "93.7%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.64%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "41.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "DFHCSDUP", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 17, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -805222,7 +807103,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805249,7 +807130,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805262,7 +807143,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805279,15 +807160,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805295,7 +807176,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805311,32 +807192,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "@CBSA_INSTALL@(BANK)", + "@CICS_PREFIX@.SDFHLOAD", + "@CSD_PREFIX@.DFHCSD" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl": { + "jcl/cics-banking-sample-application-cbsa/CICS.jcl": { "1. Artifact Identity": { - "Filename": "DRPTS02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl", + "Filename": "CICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CICS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -238.09, - "Y": 77.5, - "Z": -3584.62 + "X": 577.65, + "Y": 58.05, + "Z": -1824.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805345,22 +807227,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 59, + "Coding LOC": 53, + "Documentation LOC": 5, + "Structural Magnitude": 8.66, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "73.32%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805368,32 +807250,42 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "31.74%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "COBOL", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 36, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 6, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 5, + "End Line": 40 + }, + { + "Function Name": "LKED", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 58 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 43, + "Function Parameters": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805433,7 +807325,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805450,15 +807342,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 50, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 50, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805466,7 +807358,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805475,39 +807367,51 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&CBSAHLQ..ADATA(&MEMBER)", + "&CBSAHLQ..COBOL(&MEMBER)", + "&CBSAHLQ..DEBUG(&MEMBER)", + "&CBSAHLQ..DSECT", + "&CBSAHLQ..LKED(&MEMBER)", + "&CBSAHLQ..LOADLIB", + "&CICSHLQ..SDFHCOB", + "&CICSHLQ..SDFHLOAD", + "&CICSHLQ..SDFHSAMP", + "&COBOLHLQ..SIGYCOMP", + "&DB2HLQ..SDSNLOAD", + "&LEHLQ..SCEELKED", + "&LEHLQ..SCEESAMP" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl": { + "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl": { "1. Artifact Identity": { - "Filename": "DRPTS03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl", + "Filename": "CICSTS56.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, + "Alert": "TYPOSQUATTING THREAT: 'DSNC10/SDSNLOD2' mimics 'DSNC10/SDSNLOAD'", "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1531.67, - "Y": 49.66, - "Z": -1896.56 + "X": 351.16, + "Y": 47.47, + "Z": -2728.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805516,22 +807420,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Total LOC": 183, + "Coding LOC": 108, + "Documentation LOC": 74, + "Structural Magnitude": 17.26, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "65.31%", + "Tech Debt Exposure": "91.38%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805539,32 +807443,92 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CICS", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 98, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 140 + }, + { + "Function Name": "PRTDMPA", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 143, + "End Line": 151 + }, + { + "Function Name": "PRTDMPB", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 162 + }, + { + "Function Name": "PRTAUXT", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 167, + "End Line": 172 + }, + { + "Function Name": "PRTBUXT", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 177, + "End Line": 182 + }, + { + "Function Name": "CICSCNTL", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 31 + }, + { + "Function Name": "DTCNTL", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 70, + "Function Parameters": 4, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 115, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805604,7 +807568,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805621,15 +807585,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 104, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 104, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805637,36 +807601,55 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, + "Non-Standard Unicode / Homoglyphs": 1, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 7, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 21, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&INDEX2..SDFHAUTH", + "&INDEX2..SDFHLOAD", + "&INDEX3..SEYUAUTH", + "&INDEX3..SEYULOAD", + "ADCD.Z25A.TCPPARMS(GBLTDATA)", + "CBSA.CICSBSA.LOADLIB", + "CEE.SCEECICS", + "CEE.SCEERUN", + "CEE.SCEERUN2", + "DFH560.CICS.EQADPFMB", + "DFH560.CICS.SDFHLINK", + "DFH560.DFHCMACD", + "DFH560.EQAIVP.LOAD", + "DFH560.SDFHLIC", + "DFH560.SYSIN(DFHPLT)", + "DSNC10.SDSNLOAD", + "DSNC10.SDSNLOD2", + "ISM330.SEQAMOD", + "SYS1.MIGLIB", + "SYS1.SIEAMIGE", + "TCPIP.SEZATCP" ] }, - "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl": { + "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl": { "1. Artifact Identity": { - "Filename": "EXTDCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl", + "Filename": "COMPALL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -805676,9 +807659,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1229.73, - "Y": 139.07, - "Z": -1697.43 + "X": 255.16, + "Y": 92.42, + "Z": -2312.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805687,51 +807670,421 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 1.24, + "Total LOC": 175, + "Coding LOC": 87, + "Documentation LOC": 87, + "Structural Magnitude": 47.44, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.12%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.68%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "XFRFUN", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 97, + "End Line": 103 + }, + { + "Function Name": "ABNDPROC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 12, + "End Line": 15 + }, + { + "Function Name": "BANKDATA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 19 + }, + { + "Function Name": "BNK1MAI", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 + }, + { + "Function Name": "BNKMENU", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 28 + }, + { + "Function Name": "CRDTAGY1", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 32 + }, + { + "Function Name": "CRDTAGY2", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 36 + }, + { + "Function Name": "CRDTAGY3", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 40 + }, + { + "Function Name": "CRDTAGY4", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 44 + }, + { + "Function Name": "CRDTAGY5", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 45, + "End Line": 48 + }, + { + "Function Name": "CREACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 49, + "End Line": 52 + }, + { + "Function Name": "CRECUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 56 + }, + { + "Function Name": "DBCRFUN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 60 + }, + { + "Function Name": "DELACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 64 + }, + { + "Function Name": "DELCUS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 68 + }, + { + "Function Name": "GETCOMPY", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 72 + }, + { + "Function Name": "GETSCODE", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 76 + }, + { + "Function Name": "INQACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 80 + }, + { + "Function Name": "INQACCCU", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 84 + }, + { + "Function Name": "INQCUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 88 + }, + { + "Function Name": "UPDACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 92 + }, + { + "Function Name": "UPDCUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 93, + "End Line": 96 + }, + { + "Function Name": "BNK1ACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 104, + "End Line": 108 + }, + { + "Function Name": "BNK1CAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 109, + "End Line": 113 + }, + { + "Function Name": "BNK1CAC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 117 + }, + { + "Function Name": "BNK1CCA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 121 + }, + { + "Function Name": "BNK1CCM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 122, + "End Line": 126 + }, + { + "Function Name": "BNK1CCS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 130 + }, + { + "Function Name": "BNK1CDM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 135 + }, + { + "Function Name": "BNK1CRA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 139 + }, + { + "Function Name": "BNK1DAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 140, + "End Line": 144 + }, + { + "Function Name": "BNK1DAC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 145, + "End Line": 148 + }, + { + "Function Name": "BNK1DCM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 153 + }, + { + "Function Name": "BNK1DCS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 158 + }, + { + "Function Name": "BNK1TFM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 159, + "End Line": 163 + }, + { + "Function Name": "BNK1TFN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 164, + "End Line": 167 + }, + { + "Function Name": "BNK1UAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 172 + }, + { + "Function Name": "BNK1UAC", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 173, + "End Line": 173 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 38, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 38, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -805750,7 +808103,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 38, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -805762,7 +808115,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805792,15 +808145,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 57, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 57, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805830,14 +808183,14 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CTSSVT.CICSBSA.BUILDJCL", + "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl": { "1. Artifact Identity": { - "Filename": "GETCOMPY.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl", + "Filename": "CRDTAGY1.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -805847,9 +808200,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -432.87, - "Y": 64.92, - "Z": -1378.27 + "X": 1242.03, + "Y": 7.88, + "Z": -1185.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805859,29 +808212,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -805907,7 +808260,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -805971,7 +808324,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805998,17 +808351,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl": { "1. Artifact Identity": { - "Filename": "GETSCODE.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl", + "Filename": "CRDTAGY2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806018,9 +808371,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 296.61, - "Y": 66.66, - "Z": -3121.47 + "X": -1294.76, + "Y": 114.21, + "Z": -2311.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806030,29 +808383,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -806078,7 +808431,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806142,7 +808495,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806169,17 +808522,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/INQACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl": { "1. Artifact Identity": { - "Filename": "INQACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQACC.jcl", + "Filename": "CRDTAGY3.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806189,9 +808542,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1031.51, - "Y": 17.6, - "Z": -1455.49 + "X": 1596.28, + "Y": 35.44, + "Z": -3066.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806201,29 +808554,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -806249,7 +808602,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806313,7 +808666,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806340,17 +808693,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl": { "1. Artifact Identity": { - "Filename": "INQACCCU.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl", + "Filename": "CRDTAGY4.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806360,9 +808713,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -792.69, - "Y": 60.97, - "Z": -2440.85 + "X": -57.94, + "Y": 44.26, + "Z": -604.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806372,29 +808725,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -806420,7 +808773,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806484,7 +808837,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806511,17 +808864,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 4 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl": { "1. Artifact Identity": { - "Filename": "INQCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl", + "Filename": "CRDTAGY5.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806531,9 +808884,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1122.94, - "Y": 37.72, - "Z": -3052.05 + "X": -547.15, + "Y": 80.95, + "Z": -3772.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806543,29 +808896,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "0.51%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -806591,7 +808944,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806655,7 +809008,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806682,29 +809035,29 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 5 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREACC.jcl": { "1. Artifact Identity": { - "Filename": "INSTDB2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl", + "Filename": "CREACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 868.89, - "Y": 20.29, - "Z": -1946.89 + "X": -671.2, + "Y": 93.84, + "Z": -1857.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806713,56 +809066,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 106, - "Coding LOC": 90, - "Documentation LOC": 0, - "Structural Magnitude": 5.8, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "67.62%", - "Tech Debt Exposure": "50.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.14%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 90, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 105 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806801,7 +809154,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 38, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806818,15 +809171,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 10, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 10, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806834,7 +809187,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806843,28 +809196,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "&DB2HLQ..SDSNLOAD", - "CBSA.DB2.JCL.INSTALL", + "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl": { "1. Artifact Identity": { - "Filename": "MAPGEN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl", + "Filename": "CRECUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -806874,9 +809226,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 54.82, - "Y": 60.89, - "Z": -2834.4 + "X": 784.49, + "Y": 102.61, + "Z": -2919.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806885,86 +809237,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 50, - "Coding LOC": 49, - "Documentation LOC": 0, - "Structural Magnitude": 7.68, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.102 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.88%", - "Error & Exception Exposure": "84.5%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.42%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.57%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "ASMDSECT", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 49 - }, - { - "Function Name": "LINKMAP", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 39 - }, - { - "Function Name": "ASMMAP", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 32 - }, - { - "Function Name": "COPY", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 19 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 25, - "Function Parameters": 3, - "Function/Method Declarations": 4, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 28, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806978,7 +809300,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -807020,15 +809342,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 41, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 41, - "Design Short Vars": 1, + "Design Upper Case": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807045,30 +809367,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..BMS(&MEMBER)", - "&CBSAHLQ..DSECT(&MEMBER)", - "&CBSAHLQ..LOADLIB(&MEMBER)", - "&CICSHLQ..SDFHMAC", - "SYS1.MACLIB" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/RACF001.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl": { "1. Artifact Identity": { - "Filename": "RACF001.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RACF001.jcl", + "Filename": "CREDB00.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -807078,9 +809397,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -956.25, - "Y": 107.25, - "Z": -1683.88 + "X": 1150.86, + "Y": 87.81, + "Z": -2635.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807089,10 +809408,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, + "Total LOC": 24, "Coding LOC": 19, - "Documentation LOC": 0, - "Structural Magnitude": 1.98, + "Documentation LOC": 4, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -807103,8 +809422,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "8.74%", "Error & Exception Exposure": "88.86%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -807112,32 +809431,32 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.74%", + "Documentation Exposure": "58.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "TSO", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 19 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 4, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -807164,7 +809483,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807177,7 +809496,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807194,15 +809513,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807210,7 +809529,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807226,29 +809545,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl": { "1. Artifact Identity": { - "Filename": "REPLCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl", + "Filename": "CREDB2L.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1358.87, - "Y": 39.07, - "Z": -2077.68 + "X": -246.85, + "Y": 110.85, + "Z": -2016.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807257,56 +809579,66 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.12, + "Total LOC": 27, + "Coding LOC": 11, + "Documentation LOC": 15, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "69.32%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "JOBSTEP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 21 + "Start Line": 12, + "End Line": 17 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 25 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -807345,7 +809677,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807362,15 +809694,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 14, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807387,7 +809719,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -807395,19 +809727,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "FEU.Z25A.PROCLIB" + "&HLQ..DB2.JCL.INSTALL", + "&HLQ..DB2.JCL.INSTALL(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI101.jcl": { "1. Artifact Identity": { - "Filename": "REPLSIP.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl", + "Filename": "CREI101.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI101.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -807417,9 +809749,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -756.02, - "Y": 126.69, - "Z": -1637.12 + "X": -60.63, + "Y": 80.96, + "Z": -1557.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807428,22 +809760,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 2.12, + "Total LOC": 24, + "Coding LOC": 19, + "Documentation LOC": 4, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.39%", + "Cognitive Load Exposure": "8.74%", + "Error & Exception Exposure": "88.86%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -807451,25 +809783,25 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "JOBSTEP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 21 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, @@ -807503,7 +809835,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807516,7 +809848,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807533,11 +809865,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 14, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -807549,7 +809881,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807571,26 +809903,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "DFH560.SYSIN" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI201.jcl": { "1. Artifact Identity": { - "Filename": "RESTCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl", + "Filename": "CREI201.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI201.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -823.7, - "Y": 95.34, - "Z": -2964.51 + "X": -42.32, + "Y": 55.22, + "Z": -3282.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807599,55 +809931,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.56, + "Total LOC": 24, + "Coding LOC": 19, + "Documentation LOC": 4, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.1%", + "Cognitive Load Exposure": "8.74%", + "Error & Exception Exposure": "88.86%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "58.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -807674,7 +810006,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807687,7 +810019,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807704,11 +810036,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -807720,7 +810052,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807729,36 +810061,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI301.jcl": { "1. Artifact Identity": { - "Filename": "RESTZOSC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl", + "Filename": "CREI301.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI301.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1641.7, - "Y": -0.79, - "Z": -2559.22 + "X": 1169.24, + "Y": 46.66, + "Z": -1983.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807767,55 +810102,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.56, + "Total LOC": 24, + "Coding LOC": 19, + "Documentation LOC": 4, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.1%", + "Cognitive Load Exposure": "8.74%", + "Error & Exception Exposure": "88.86%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "58.93%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -807842,7 +810177,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807855,7 +810190,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807872,11 +810207,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -807888,7 +810223,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807897,24 +810232,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL001.jcl": { "1. Artifact Identity": { - "Filename": "SHUTCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl", + "Filename": "CREL001.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL001.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -807924,9 +810262,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -607.58, - "Y": 72.27, - "Z": -1232.22 + "X": 588.86, + "Y": 100.45, + "Z": -2673.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807935,56 +810273,66 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.56, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.1%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", + "Function Name": "STEP10", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -808040,15 +810388,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808056,7 +810404,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808065,24 +810413,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..CICSBSA.BUILDJCL", + "&HLQ..CICSBSA.BUILDJCL(EMPTY)" + ] }, - "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL002.jcl": { "1. Artifact Identity": { - "Filename": "SHUTZOSC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl", + "Filename": "CREL002.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL002.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808092,9 +810443,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 172.92, - "Y": 79.17, - "Z": -3677.87 + "X": -216.03, + "Y": 80.65, + "Z": -2972.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808103,56 +810454,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.56, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.1%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "95.75%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", + "Function Name": "STEP10", "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -808208,15 +810559,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808224,7 +810575,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808233,24 +810584,26 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..CICSBSA.ADATA" + ] }, - "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL003.jcl": { "1. Artifact Identity": { - "Filename": "UPDACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl", + "Filename": "CREL003.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL003.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808260,9 +810613,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 117.7, - "Y": 75.65, - "Z": -1124.73 + "X": 1092.93, + "Y": 56.25, + "Z": -2114.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808271,42 +810624,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "95.75%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -808318,8 +810671,8 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -808334,7 +810687,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808376,11 +810729,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -808401,27 +810754,26 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.LOADLIB" ] }, - "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL004.jcl": { "1. Artifact Identity": { - "Filename": "UPDCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl", + "Filename": "CREL004.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL004.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808431,9 +810783,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -669.75, - "Y": 58.87, - "Z": -2019.49 + "X": -451.35, + "Y": 112.62, + "Z": -1617.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808442,42 +810794,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.625 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "95.75%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.28%", - "API Exposure": "5.78%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.8%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 8 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -808489,8 +810841,8 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -808505,7 +810857,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808547,11 +810899,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -808572,27 +810924,26 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.DBRM" ] }, - "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL005.jcl": { "1. Artifact Identity": { - "Filename": "XFRFUN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl", + "Filename": "CREL005.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL005.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808602,9 +810953,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -264.48, - "Y": 59.68, - "Z": -3112.72 + "X": 435.07, + "Y": 116.14, + "Z": -3235.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808613,42 +810964,42 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "95.75%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", - "API Exposure": "5.78%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.81%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -808660,8 +811011,8 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -808676,7 +811027,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808718,11 +811069,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -808743,27 +811094,26 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.LKED" ] }, - "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL006.jcl": { "1. Artifact Identity": { - "Filename": "ZOSCSEC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl", + "Filename": "CREL006.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL006.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -808773,9 +811123,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 891.55, - "Y": 97.13, - "Z": -3573.43 + "X": 466.79, + "Y": 36.17, + "Z": -1638.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808784,56 +811134,66 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 1.96, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.12%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.87%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BPXIT", - "Structural Impact": 1.7, + "Function Name": "STEP10", + "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -808889,15 +811249,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808905,69 +811265,48 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] - } - } - }, - "groovy/spock_specs": { - "Directory Group Magnitude": 317.28, - "File Count": 30, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "12.86%", - "Error & Exception Exposure": "18.31%", - "Tech Debt Exposure": "96.54%", - "Testing Exposure": "2.26%", - "API Exposure": "0.0%", - "Concurrency Exposure": "1.63%", - "State Flux Exposure": "9.56%", - "Commented Logic Exposure": "0.34%", - "Specification Exposure": "96.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.66%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "groovy/spock_specs/org_spockframework_builder_PojoBuilderSpec.groovy": { + "9. Extracted Dependencies": [ + "&HLQ..CICSBSA.BMS", + "&HLQ..CICSBSA.BMS(EMPTY)" + ] + }, + "jcl/cics-banking-sample-application-cbsa/CREL007.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_builder_PojoBuilderSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_builder_PojoBuilderSpec.groovy", - "Language": "Groovy", + "Filename": "CREL007.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL007.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3642.99, - "Y": 172.93, - "Z": -2988.96 + "X": 715.31, + "Y": 46.2, + "Z": -1657.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808976,170 +811315,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 216, - "Coding LOC": 166, - "Documentation LOC": 14, - "Structural Magnitude": 21.02, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "98.63%", - "Testing Exposure": "2.32%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "95.75%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.64%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"configure primitives\"", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 123 - }, - { - "Function Name": "\"parse enum value\"", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 153, - "End Line": 167 - }, - { - "Function Name": "\"adding elements to collection\"", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 98 - }, - { - "Function Name": "\"configure nested property\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 44 - }, - { - "Function Name": "\"configure collection property that has concrete declared type\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 69 - }, - { - "Function Name": "\"configure collection property and choose collection type\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 83 - }, - { - "Function Name": "\"access local variable\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 125, - "End Line": 137 - }, - { - "Function Name": "\"access field\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 151 - }, - { - "Function Name": "\"configure collection property\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 55 - }, - { - "Function Name": "\"configure top-level property\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 32 - }, - { - "Function Name": "LinkedList", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 76 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 30, - "Function Parameters": 11, - "Function/Method Declarations": 11, - "Class/Entity Declarations": 9, - "Defensive Programming Constructs": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 20, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 7, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809153,7 +811392,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -809164,7 +811403,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 146, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809181,15 +811420,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, - "Design Camel Case": 2, - "Design Snake Case": 7, + "Core Var Decl": 6, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 6, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809206,7 +811445,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809214,30 +811453,30 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "&HLQ..CICSBSA.DEBUG" ] }, - "groovy/spock_specs/org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CREL008.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_buildsupport_SpecClassFileFinderSpec.groovy", - "Language": "Groovy", + "Filename": "CREL008.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL008.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4129.02, - "Y": 231.25, - "Z": -2018.14 + "X": -543.32, + "Y": 98.52, + "Z": -2681.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809246,90 +811485,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 50, - "Coding LOC": 22, - "Documentation LOC": 13, - "Structural Magnitude": 4.04, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.227 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.35%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "95.75%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.03%", + "API Exposure": "4.8%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.23%", + "Documentation Exposure": "37.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"class file of regular class isn't considered a runnable spec\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 28 - }, - { - "Function Name": "\"class file of abstract spec isn't considered a runnable spec\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 33 - }, - { - "Function Name": "\"class file of concrete spec is considered a runnable spec\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 38 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 18, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 4, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809352,9 +811571,9 @@ "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 1, + "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809371,15 +811590,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 6, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809396,39 +811615,38 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "org.spockframework.util.ReflectionUtil", - "spock.lang.*" + "&HLQ..CICSBSA.CBSAMOD" ] }, - "groovy/spock_specs/org_spockframework_datapipes_DataPipesIteratorSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CREL009.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_datapipes_DataPipesIteratorSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_datapipes_DataPipesIteratorSpec.groovy", - "Language": "Groovy", + "Filename": "CREL009.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL009.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3915.54, - "Y": 193.13, - "Z": -2404.48 + "X": -304.12, + "Y": 127.88, + "Z": -2457.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809437,210 +811655,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 175, - "Coding LOC": 120, - "Documentation LOC": 21, - "Structural Magnitude": 25.6, - "Control Flow Ratio": "7.1%", - "Popularity Rank": 0, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.093 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.74%", - "Error & Exception Exposure": "53.85%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.04%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"Iterable uses the Groovy default size method to estimate number of iterations\"", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 46, - "End Line": 57 - }, - { - "Function Name": "hasNext", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 156, - "End Line": 163 - }, - { - "Function Name": "next", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 165, - "End Line": 172 - }, - { - "Function Name": "\"Collection data provider will use size method to estimate number of iterations\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 44 - }, - { - "Function Name": "\"Iterable with size method shall use the size method to estimate number of iterations\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 71 - }, - { - "Function Name": "\"Iterator shall be only called once\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 85 - }, - { - "Function Name": "runIterations", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 87, - "End Line": 96 - }, - { - "Function Name": "dataProvider", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 98, - "End Line": 101 - }, - { - "Function Name": "getDataProvider", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 103, - "End Line": 107 - }, - { - "Function Name": "iterator", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 113, - "End Line": 117 - }, - { - "Function Name": "size", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 123 - }, - { - "Function Name": "size", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 130, - "End Line": 133 - }, - { - "Function Name": "iterator", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 139 + "Start Line": 11, + "End Line": 16 }, { - "Function Name": "iterator", + "Function Name": "STEP20", "Structural Impact": 1.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 145, - "End Line": 149 - }, - { - "Function Name": "cleanup", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 31 + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 39, - "Function Parameters": 15, - "Function/Method Declarations": 16, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 2, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 12, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 9, - "Generic Type Abstractions": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809655,17 +811743,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 7, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 113, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809682,15 +811770,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 17, - "Design Camel Case": 12, - "Design Snake Case": 5, + "Core Var Decl": 9, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 3, - "Orphaned Logic": 8, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809707,41 +811795,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "java.util.Objects.requireNonNull", - "org.spockframework.EmbeddedSpecification", - "spock.lang.Issue", - "spock.util.EmbeddedSpecRunner" + "&HLQ..CICSBSA.COBOL", + "&HLQ..CICSBSA.COBOL(EMPTY)" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_DataSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CREL010.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_DataSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_DataSpec.groovy", - "Language": "Groovy", + "Filename": "CREL010.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL010.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3741.74, - "Y": 172.48, - "Z": -2369.04 + "X": 985.36, + "Y": 70.7, + "Z": -2411.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809750,350 +811836,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 602, - "Coding LOC": 293, - "Documentation LOC": 221, - "Structural Magnitude": 101.76, - "Control Flow Ratio": "29.0%", - "Popularity Rank": 0, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.229 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.05%", - "Error & Exception Exposure": "61.03%", - "Tech Debt Exposure": "99.94%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "71.17%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"named multi-variable data pipes\"", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 357, - "End Line": 378 - }, - { - "Function Name": "\"nested and named multi-variable data pipes\"", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 380, - "End Line": 393 - }, - { - "Function Name": "\"multiple data provider combined\"", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 92, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 104, - "End Line": 195 - }, - { - "Function Name": "\"only single data providers are combined - part 2\"", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 244, - "End Line": 318 - }, - { - "Function Name": "\"only single data providers are combined - part 1\"", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 197, - "End Line": 242 - }, - { - "Function Name": "\"nested multi-variable data pipes\"", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 340, - "End Line": 355 - }, - { - "Function Name": "in", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 586, - "End Line": 600 - }, - { - "Function Name": "\"type coercion for data variable values with own coercion\"", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 507, - "End Line": 535 - }, - { - "Function Name": "\"type coercion for data variable values\"", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 497, - "End Line": 504 - }, - { - "Function Name": "setupSpec", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 17, - "End Line": 31 - }, - { - "Function Name": "\"maximum of two numbers combined assignment\"", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 479, - "End Line": 494 - }, - { - "Function Name": "\"maximum of two numbers data variable assignment\"", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 395, - "End Line": 405 - }, - { - "Function Name": "\"excluding iterations\"", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 584, - "End Line": 593 - }, - { - "Function Name": "cleanupSpec", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 33, - "End Line": 35 - }, - { - "Function Name": "\"multiple tables\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 68 - }, - { - "Function Name": "\"multiple tables with top border\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 102 - }, - { - "Function Name": "\"maximum of two numbers previous column access over multiple tables\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 434, - "End Line": 455 - }, - { - "Function Name": "\"single column\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 48 - }, - { - "Function Name": "\"multiple tables joined\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 70, - "End Line": 82 - }, - { - "Function Name": "\"maximum of two numbers sql data variable assignment\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 407, - "End Line": 419 - }, - { - "Function Name": "\"maximum of two numbers previous column access\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 421, - "End Line": 432 - }, - { - "Function Name": "\"data pipes\"", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 537, - "End Line": 547 - }, - { - "Function Name": "\"maximum of two numbers multi-assignment star\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 468, - "End Line": 477 - }, - { - "Function Name": "\"#lastName\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 571, - "End Line": 580 - }, - { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 321, - "End Line": 327 - }, - { - "Function Name": "\"maximum of two numbers star\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 330, - "End Line": 338 - }, - { - "Function Name": "\"maximum of two numbers multi-assignment\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 458, - "End Line": 465 - }, - { - "Function Name": "\"#person is #person.age years old\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 550, - "End Line": 557 + "Start Line": 11, + "End Line": 16 }, { - "Function Name": "\"#person.name.toUpperCase()\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 567 + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, - "Sequential Logic Declarations": 44, - "Function Parameters": 30, - "Function/Method Declarations": 29, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 22, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 59, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 2, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 3, - "Scientific & Mathematical Operations": 12, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 6, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810118,7 +811934,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 284, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810135,15 +811951,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 19, - "Design Camel Case": 1, - "Design Snake Case": 18, + "Core Var Decl": 9, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 9, + "Design Upper Case": 9, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 28, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810160,44 +811976,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "groovy.sql.Sql", - "groovy.transform.ToString", - "org.junit.platform.engine.TestDescriptor.Type.TEST", - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.GroovyRuntimeUtil", - "spock.lang.Shared", - "spock.util.mop.Use" + "&HLQ..CICSBSA.DSECT", + "&HLQ..CICSBSA.DSECT(EMPTY)" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v1_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CREL011.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v1_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v1_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CREL011.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL011.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2834.37, - "Y": 120.23, - "Z": -2144.71 + "X": -88.51, + "Y": 44.48, + "Z": -1834.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810206,60 +812017,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 16, - "Coding LOC": 10, - "Documentation LOC": 3, - "Structural Magnitude": 1.6, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.57%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "97.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.9%", + "API Exposure": "6.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.45%", + "Documentation Exposure": "69.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 13 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 5, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -810267,9 +812088,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810294,7 +812115,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810311,15 +812132,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810336,38 +812157,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "&HLQ..CICSBSA.REORG", + "&HLQ..CICSBSA.REORG(EMPTY)" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v2_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v2_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v2_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRELIBS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3195.59, - "Y": 107.4, - "Z": -2990.61 + "X": -440.0, + "Y": 85.04, + "Z": -2105.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810376,60 +812198,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 23, - "Coding LOC": 13, - "Documentation LOC": 6, - "Structural Magnitude": 2.86, + "Total LOC": 21, + "Coding LOC": 16, + "Documentation LOC": 4, + "Structural Magnitude": 2.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.438 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.06%", + "Cognitive Load Exposure": "15.59%", + "Error & Exception Exposure": "91.49%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "59.87%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.34%", + "Documentation Exposure": "63.59%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, + "Function Name": "IEFBR14", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 8, - "End Line": 19 + "End Line": 20 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 13, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -810437,9 +812259,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 12, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810464,7 +812286,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810481,15 +812303,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 15, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 15, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810513,31 +812335,43 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 12, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "CBSA.JCL.INSTALL", + "CREDB2L", + "CREL001", + "CREL002", + "CREL003", + "CREL004", + "CREL005", + "CREL006", + "CREL007", + "CREL008", + "CREL009", + "CREL010", + "CREL011" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v3_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v3_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v3_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRESG01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4103.8, - "Y": 193.73, - "Z": -1453.77 + "X": 725.53, + "Y": 47.35, + "Z": -1122.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810546,60 +812380,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 1.76, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -810607,9 +812441,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810621,7 +812455,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810634,7 +812468,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810651,11 +812485,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -810667,7 +812501,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810676,38 +812510,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v4_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v4_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v4_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRESG02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4536.44, - "Y": 207.29, - "Z": -2819.77 + "X": -786.89, + "Y": 59.34, + "Z": -2709.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810716,22 +812551,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 15, - "Documentation LOC": 2, - "Structural Magnitude": 1.9, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.89%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.32%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -810739,47 +812574,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.79%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 19 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 6, - "Function Parameters": 1, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810791,7 +812626,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810804,7 +812639,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810821,11 +812656,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -810837,7 +812672,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810846,7 +812681,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -810859,26 +812694,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Rollup", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v5_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v5_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v5_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRESG03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2907.64, - "Y": 68.82, - "Z": -2757.63 + "X": 1411.36, + "Y": 32.74, + "Z": -2489.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810887,60 +812722,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 1.86, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.01%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of #a and #b is #c\"", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 17 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -810948,9 +812783,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810962,7 +812797,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810975,7 +812810,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810992,11 +812827,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811008,7 +812843,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811017,38 +812852,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v6_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v6_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v6_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRETB01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4035.07, - "Y": 137.55, - "Z": -3268.52 + "X": 895.19, + "Y": 83.44, + "Z": -1831.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811057,60 +812893,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 1.76, + "Total LOC": 37, + "Coding LOC": 32, + "Documentation LOC": 4, + "Structural Magnitude": 3.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.156 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.0%", + "Cognitive Load Exposure": "5.96%", + "Error & Exception Exposure": "82.6%", + "Tech Debt Exposure": "98.93%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "44.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "GRANT", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 28, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 16 + "Start Line": 9, + "End Line": 36 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -811118,9 +812954,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811132,7 +812968,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811145,7 +812981,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811162,11 +812998,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811178,7 +813014,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811187,38 +813023,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_datadriven_v7_MathSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_datadriven_v7_MathSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_datadriven_v7_MathSpec.groovy", - "Language": "Groovy", + "Filename": "CRETB02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3299.81, - "Y": 148.65, - "Z": -1686.35 + "X": 838.39, + "Y": 105.1, + "Z": -2725.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811227,22 +813064,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 18, - "Documentation LOC": 2, - "Structural Magnitude": 2.16, + "Total LOC": 35, + "Coding LOC": 30, + "Documentation LOC": 4, + "Structural Magnitude": 2.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.278 + "Raw Cognitive Density": 0.167 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.14%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.32%", + "Cognitive Load Exposure": "6.19%", + "Error & Exception Exposure": "83.48%", + "Tech Debt Exposure": "99.33%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -811250,37 +813087,37 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.89%", + "Documentation Exposure": "46.05%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"maximum of two numbers\"", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "GRANT", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 26, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 22 + "Start Line": 9, + "End Line": 34 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -811288,9 +813125,9 @@ "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 2, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811302,7 +813139,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811315,7 +813152,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811332,11 +813169,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811348,7 +813185,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811357,38 +813194,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_ConfineMetaClassChangesDocSpec.groovy", - "Language": "Groovy", + "Filename": "CRETB03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3035.11, - "Y": 152.32, - "Z": -2703.42 + "X": 221.12, + "Y": 68.15, + "Z": -1366.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811397,80 +813235,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 20, - "Documentation LOC": 2, - "Structural Magnitude": 4.2, + "Total LOC": 29, + "Coding LOC": 23, + "Documentation LOC": 4, + "Structural Magnitude": 2.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.85 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "59.87%", - "Error & Exception Exposure": "70.63%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.31%", + "Cognitive Load Exposure": "7.43%", + "Error & Exception Exposure": "86.8%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "47.5%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "59.89%", + "Documentation Exposure": "53.53%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"I run first\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 17 - }, - { - "Function Name": "\"I run second\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "GRANT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 25 + "Start Line": 9, + "End Line": 28 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 8, - "Function Parameters": 3, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 4, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 2, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811482,9 +813310,9 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -811495,7 +813323,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 13, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811512,15 +813340,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811528,7 +813356,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811537,40 +813365,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification", - "spock.lang.Stepwise", - "spock.util.mop.ConfineMetaClassChanges" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_ExtensionStoreSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_ExtensionStoreSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_ExtensionStoreSpec.groovy", - "Language": "Groovy", + "Filename": "CRETS01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3937.37, - "Y": 175.76, - "Z": -2947.55 + "X": -330.93, + "Y": 47.69, + "Z": -1135.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811579,110 +813406,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 136, - "Coding LOC": 78, - "Documentation LOC": 36, - "Structural Magnitude": 14.66, - "Control Flow Ratio": "11.1%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.287 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.57%", - "Error & Exception Exposure": "59.53%", - "Tech Debt Exposure": "99.6%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", - "Concurrency Exposure": "48.84%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.36%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "executionStop", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 119, - "End Line": 133 - }, - { - "Function Name": "\"extension store example\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 88 - }, - { - "Function Name": "executionStart", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 113, - "End Line": 117 - }, - { - "Function Name": "visitSpec", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 108, - "End Line": 111 - }, - { - "Function Name": "setup", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 34 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 24, - "Function Parameters": 9, - "Function/Method Declarations": 5, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 1, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, - "Asynchronous/Concurrent Execution": 2, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 4, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 6, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 13, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811694,20 +813481,20 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 5, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 1, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 3, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 58, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811724,15 +813511,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 7, - "Design Camel Case": 1, - "Design Snake Case": 3, + "Core Var Decl": 8, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811740,7 +813527,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811749,51 +813536,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "java.util.concurrent.ConcurrentHashMap", - "java.util.concurrent.atomic.AtomicInteger", - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.IStandardStreamsListener", - "org.spockframework.runtime.StandardStreamsCapturer", - "org.spockframework.runtime.extension.IGlobalExtension", - "org.spockframework.runtime.extension.IMethodInterceptor", - "org.spockframework.runtime.extension.ISpockExecution", - "org.spockframework.runtime.extension.IStore.Namespace", - "org.spockframework.runtime.model.SpecInfo", - "org.spockframework.runtime.model.parallel.Resources", - "spock.lang.AutoCleanup", - "spock.lang.ResourceLock", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_FancyMockMakerDocSpec.groovy", - "Language": "Groovy", + "Filename": "CRETS02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4491.58, - "Y": 158.1, - "Z": -2435.45 + "X": 48.29, + "Y": 114.88, + "Z": -3296.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811802,22 +813577,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 15, - "Documentation LOC": 17, - "Structural Magnitude": 2.9, - "Control Flow Ratio": "10.0%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.4 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "19.78%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -811825,47 +813600,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.39%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"FancyMockMaker usage\"", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 24, - "End Line": 35 + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 9, - "Function Parameters": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811877,7 +813652,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811890,7 +813665,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811907,12 +813682,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 8, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -811923,7 +813698,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811932,7 +813707,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -811945,26 +813720,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "org.spockframework.EmbeddedSpecification", - "org.spockframework.mock.CannotCreateMockException" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_IgnoreIfDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_IgnoreIfDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_IgnoreIfDocSpec.groovy", - "Language": "Groovy", + "Filename": "CRETS03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4326.63, - "Y": 208.93, - "Z": -2156.1 + "X": 1223.92, + "Y": 74.42, + "Z": -1535.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811973,20 +813748,20 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 92, - "Coding LOC": 52, - "Documentation LOC": 24, - "Structural Magnitude": 10.34, - "Control Flow Ratio": "6.7%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.212 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.4%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", @@ -811996,107 +813771,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.91%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"IgnoreIf can be configured to be inherited\"", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 89 - }, - { - "Function Name": "\"I will run everywhere but not on Windows\"", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 34 - }, - { - "Function Name": "\"I'll run everywhere but on Windows\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 14 - }, - { - "Function Name": "\"I will run everywhere but on Windows\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 17 - }, - { - "Function Name": "\"I'll run everywhere but on Windows or anywhere on Java 8\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 25 - }, - { - "Function Name": "\"I'll run everywhere but on Windows and only if a != 5 and b < 6\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 43 - }, - { - "Function Name": "\"For the given reason, I will not run on MacOS\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 58 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 14, - "Function Parameters": 7, - "Function/Method Declarations": 7, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 9, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 1, - "Decorators and Annotations": 8, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812108,7 +813823,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812121,7 +813836,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 46, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812138,15 +813853,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812154,7 +813869,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812163,40 +813878,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.extension.builtin.PreconditionContext", - "spock.lang.IgnoreIf" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_InterceptorSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_InterceptorSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_InterceptorSpec.groovy", - "Language": "Groovy", + "Filename": "DB2BIND.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3170.43, - "Y": 138.84, - "Z": -2435.68 + "X": 712.49, + "Y": 36.89, + "Z": -2479.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812205,10 +813919,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 111, - "Coding LOC": 65, - "Documentation LOC": 34, - "Structural Magnitude": 11.9, + "Total LOC": 110, + "Coding LOC": 89, + "Documentation LOC": 9, + "Structural Magnitude": 8.58, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812218,97 +813932,67 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "98.27%", - "Testing Exposure": "2.4%", + "Error & Exception Exposure": "74.52%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "10.07%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.58%", + "Documentation Exposure": "22.34%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "visitSpecAnnotation", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 82 - }, - { - "Function Name": "visitFeatureAnnotation", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 109 - }, - { - "Function Name": "I", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 96, - "End Line": 100 - }, - { - "Function Name": "I", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "BIND", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 75, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 40 + "Start Line": 12, + "End Line": 86 }, { - "Function Name": "\"a method\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "GRANT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 32, - "End Line": 35 + "Start Line": 90, + "End Line": 109 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 20, - "Function Parameters": 14, - "Function/Method Declarations": 11, - "Class/Entity Declarations": 3, + "Sequential Logic Declarations": 24, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 6, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 8, - "Generic Type Abstractions": 1, - "Collection Iterators / Comprehensions": 3, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 10, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812320,7 +814004,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812333,7 +814017,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 43, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812350,15 +814034,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 27, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 27, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812366,7 +814050,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 3, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812375,47 +814059,51 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 10, + "Direct Upstream (Fragility)": 14, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "java.lang.annotation.ElementType", - "java.lang.annotation.Retention", - "java.lang.annotation.RetentionPolicy", - "java.lang.annotation.Target", - "org.spockframework.runtime.extension.AbstractMethodInterceptor", - "org.spockframework.runtime.extension.ExtensionAnnotation", - "org.spockframework.runtime.extension.IAnnotationDrivenExtension", - "org.spockframework.runtime.model.FeatureInfo", - "org.spockframework.runtime.model.SpecInfo", - "spock.lang.Specification" + "&BANKDBRM(BANKDATA)", + "&BANKDBRM(CREACC)", + "&BANKDBRM(CRECUST)", + "&BANKDBRM(DBCRFUN)", + "&BANKDBRM(DELACC)", + "&BANKDBRM(DELCUS)", + "&BANKDBRM(INQACC)", + "&BANKDBRM(INQACCCU)", + "&BANKDBRM(UPDACC)", + "&BANKDBRM(XFRFUN)", + "&DB2HLQ..SDSNEXIT", + "&DB2HLQ..SDSNLOAD", + "CBSA.DB2.JCL.INSTALL", + "DEFAULT" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_IssueDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_IssueDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_IssueDocSpec.groovy", - "Language": "Groovy", + "Filename": "DBCRFUN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3773.03, - "Y": 91.68, - "Z": -3022.85 + "X": 1854.69, + "Y": -1.04, + "Z": -1755.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812424,71 +814112,51 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 19, - "Documentation LOC": 2, - "Structural Magnitude": 3.98, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.263 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.48%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.36%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"Foo should do bar\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 12 - }, - { - "Function Name": "\"I have two related issues\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 17 - }, - { - "Function Name": "\"I have three related issues\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 23 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 8, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, @@ -812497,17 +814165,17 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812532,7 +814200,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 13, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812549,15 +814217,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812583,30 +814251,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Issue", - "spock.lang.Specification" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_MockMakerConfigurationDocSpec.groovy", - "Language": "Groovy", + "Filename": "DEFAULT.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3563.39, - "Y": 134.72, - "Z": -3195.89 + "X": 90.67, + "Y": 88.14, + "Z": -2113.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812615,70 +814283,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 44, - "Coding LOC": 19, - "Documentation LOC": 20, - "Structural Magnitude": 2.28, + "Total LOC": 48, + "Coding LOC": 9, + "Documentation LOC": 38, + "Structural Magnitude": 23.68, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 44, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.263 + "Raw Cognitive Density": 1.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.48%", - "Error & Exception Exposure": "80.34%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.34%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "95.02%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.91%", + "Documentation Exposure": "14.47%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "\"preferredMockMaker configuration setting\"", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 42 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 9, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812692,7 +814349,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -812703,7 +814360,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 13, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812720,15 +814377,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812752,33 +814409,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 44, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 65 }, - "9. Extracted Dependencies": [ - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.RunContext", - "spock.mock.MockMakers" - ] + "9. Extracted Dependencies": [] }, - "groovy/spock_specs/org_spockframework_docs_extension_ParameterInjectionSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DELACC.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_ParameterInjectionSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_ParameterInjectionSpec.groovy", - "Language": "Groovy", + "Filename": "DELACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DELACC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3453.67, - "Y": 123.97, - "Z": -2154.19 + "X": 486.05, + "Y": 98.77, + "Z": -1438.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812787,130 +814440,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 65, - "Coding LOC": 49, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 18.88, - "Control Flow Ratio": "12.5%", + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.233 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.23%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.51%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.95%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "visitParameterAnnotation", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 51, - "End Line": 62 - }, - { - "Function Name": "\"test\"", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 31 - }, - { - "Function Name": "SpockExecutionException", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 60 - }, - { - "Function Name": "setupSpec", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 19 - }, - { - "Function Name": "setup", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 22, - "End Line": 24 - }, - { - "Function Name": "cleanup", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 36 - }, - { - "Function Name": "cleanupSpec", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 40 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 21, - "Function Parameters": 7, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 4, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, - "Generic Type Abstractions": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 10, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -812925,7 +814518,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -812935,7 +814528,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 30, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812952,15 +814545,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812984,40 +814577,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 10, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "java.lang.annotation.ElementType", - "java.lang.annotation.Retention", - "java.lang.annotation.RetentionPolicy", - "java.lang.annotation.Target", - "org.spockframework.runtime.SpockExecutionException", - "org.spockframework.runtime.extension.ExtensionAnnotation", - "org.spockframework.runtime.extension.IAnnotationDrivenExtension", - "org.spockframework.runtime.extension.ParameterResolver", - "org.spockframework.runtime.model.ParameterInfo", - "spock.lang.Specification" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_PendingFeatureIfDocSpec.groovy", - "Language": "Groovy", + "Filename": "DELCUS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3328.93, - "Y": 111.83, - "Z": -2603.91 + "X": -506.89, + "Y": 71.31, + "Z": -2703.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813026,90 +814611,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 41, - "Coding LOC": 30, - "Documentation LOC": 6, - "Structural Magnitude": 16.0, - "Control Flow Ratio": "9.1%", + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.95 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "69.0%", - "Error & Exception Exposure": "85.37%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.09%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"I have various problems in certain situations\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 29 - }, - { - "Function Name": "\"I'm not yet implemented on windows, but I am on other operating systems\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "\"This feature isn't deployed out to production yet, and isn't expected to pass\"", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 18 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 10, - "Function Parameters": 5, - "Function/Method Declarations": 5, - "Class/Entity Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813124,7 +814689,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -813132,9 +814697,9 @@ "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 1, + "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 23, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813151,15 +814716,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 6, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813183,34 +814748,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "org.opentest4j.TestAbortedException", - "spock.lang.PendingFeature", - "spock.lang.PendingFeatureIf", - "spock.lang.Specification" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_RequiresDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_RequiresDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_RequiresDocSpec.groovy", - "Language": "Groovy", + "Filename": "DROPDB2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4460.95, - "Y": 195.02, - "Z": -1859.61 + "X": 188.48, + "Y": 54.46, + "Z": -2855.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813219,22 +814782,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 16, + "Total LOC": 39, + "Coding LOC": 29, "Documentation LOC": 4, - "Structural Magnitude": 2.52, + "Structural Magnitude": 3.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 + "Raw Cognitive Density": 0.172 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.8%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.39%", + "Cognitive Load Exposure": "6.32%", + "Error & Exception Exposure": "83.93%", + "Tech Debt Exposure": "99.48%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813242,57 +814805,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.59%", + "Documentation Exposure": "46.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"I'll only run on Windows\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 8 - }, - { - "Function Name": "\"I'll run only on Windows with Java 8\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 30, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 16 + "Start Line": 9, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 3, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813304,7 +814857,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813317,7 +814870,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 11, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813334,15 +814887,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813350,7 +814903,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813359,7 +814912,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -813372,26 +814925,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Requires", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_RetryDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_RetryDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_RetryDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPDB00.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4150.79, - "Y": 165.97, - "Z": -2555.0 + "X": -909.98, + "Y": 119.16, + "Z": -2213.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813400,22 +814953,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 103, - "Coding LOC": 75, - "Documentation LOC": 10, - "Structural Magnitude": 17.9, - "Control Flow Ratio": "5.9%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.136 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.91%", - "Error & Exception Exposure": "69.11%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813423,167 +814976,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.94%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"only retry if condition on failure holds\"", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 34, - "End Line": 36 - }, - { - "Function Name": "\"retry failing feature methods\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 49 - }, - { - "Function Name": "\"retry with setup and cleanup\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 57 - }, - { - "Function Name": "\"retry 3 times\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 18, + "Start Line": 9, "End Line": 21 - }, - { - "Function Name": "\"retry 5 times\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 26 - }, - { - "Function Name": "\"only retry on IOException\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 31 - }, - { - "Function Name": "\"retry after 1000 ms delay\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 62 - }, - { - "Function Name": "\"will be retried using its own config\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 78 - }, - { - "Function Name": "\"only retry if condition on instance holds\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 38 - }, - { - "Function Name": "\"will be retried with config from class\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 73 - }, - { - "Function Name": "inherited", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 87 - }, - { - "Function Name": "foo", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 93 - }, - { - "Function Name": "bar", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 98, - "End Line": 100 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 32, - "Function Parameters": 13, - "Function/Method Declarations": 13, - "Class/Entity Declarations": 6, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 15, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 13, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813595,7 +815028,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813608,7 +815041,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 54, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813625,15 +815058,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813641,7 +815074,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813650,41 +815083,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "groovy.sql.Sql", - "spock.lang.Retry", - "spock.lang.Shared", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_SeeDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_SeeDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_SeeDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPI101.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3760.36, - "Y": 213.89, - "Z": -1594.63 + "X": 1109.99, + "Y": 22.41, + "Z": -3192.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813693,22 +815124,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 15, - "Documentation LOC": 2, - "Structural Magnitude": 2.7, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.89%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813716,57 +815147,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.79%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"Even more information is available on the feature\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 12 - }, - { - "Function Name": "\"And even more information is available on the feature\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 18 + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 4, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813778,7 +815199,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813791,7 +815212,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 9, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813808,15 +815229,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813824,7 +815245,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813833,7 +815254,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -813846,26 +815267,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.See", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_SnapshotDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_SnapshotDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_SnapshotDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPI201.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4266.05, - "Y": 153.16, - "Z": -2960.97 + "X": 345.74, + "Y": 83.0, + "Z": -971.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813874,22 +815295,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 64, - "Coding LOC": 31, - "Documentation LOC": 23, - "Structural Magnitude": 6.22, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.161 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.67%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813897,77 +815318,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.25%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"using parameter based snapshot\"", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 43 - }, - { - "Function Name": "\"using field based snapshot\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 35 - }, - { - "Function Name": "\"custom matching\"", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 61 - }, - { - "Function Name": "\"multi snapshot\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 47, - "End Line": 51 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 14, - "Function Parameters": 6, - "Function/Method Declarations": 4, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 10, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 7, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813979,7 +815370,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813992,7 +815383,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814009,15 +815400,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814025,7 +815416,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814034,44 +815425,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "org.hamcrest.MatcherAssert", - "org.hamcrest.MatcherAssert.assertThat", - "org.hamcrest.Matchers", - "org.hamcrest.Matchers.equalTo", - "spock.lang.Snapshot", - "spock.lang.Snapshotter", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_StepwiseDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_StepwiseDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_StepwiseDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPI301.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3447.53, - "Y": 134.09, - "Z": -3065.69 + "X": -574.1, + "Y": 112.18, + "Z": -3081.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814080,70 +815466,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 52, - "Coding LOC": 28, - "Documentation LOC": 15, - "Structural Magnitude": 6.76, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.321 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.26%", - "Error & Exception Exposure": "69.53%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.34%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "68.07%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.93%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"Annotation on feature\"", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 50 - }, - { - "Function Name": "\"Annotation on spec\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 26 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 10, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 4, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -814153,7 +815529,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -814165,7 +815541,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -814178,7 +815554,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 22, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814195,15 +815571,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814211,7 +815587,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814220,40 +815596,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "org.spockframework.EmbeddedSpecification", - "org.spockframework.runtime.extension.builtin.PreconditionContext", - "spock.lang.IgnoreIf" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_SubjectDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_SubjectDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_SubjectDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPSG01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3895.48, - "Y": 168.14, - "Z": -1908.85 + "X": 1516.43, + "Y": 72.69, + "Z": -2314.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814262,44 +815637,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 27, - "Coding LOC": 14, - "Documentation LOC": 8, - "Structural Magnitude": 15.28, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.357 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.55%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 21 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 3, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -814309,12 +815695,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 4, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -814326,9 +815712,9 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -814339,7 +815725,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814356,15 +815742,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814372,7 +815758,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814381,7 +815767,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -814394,26 +815780,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification", - "spock.lang.Subject" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_TagDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_TagDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_TagDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPSG02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4274.87, - "Y": 119.03, - "Z": -3023.87 + "X": -682.4, + "Y": 109.0, + "Z": -1343.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814422,80 +815808,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 2.56, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.04%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"has two tags\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 16 - }, - { - "Function Name": "\"has one tag\"", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 11 + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 2, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -814507,7 +815883,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -814520,7 +815896,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814537,15 +815913,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814553,7 +815929,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814562,7 +815938,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -814575,26 +815951,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification", - "spock.lang.Tag" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_TempDirDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_TempDirDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_TempDirDocSpec.groovy", - "Language": "Groovy", - "Architect": "dqyuan", + "Filename": "DRPSG03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3499.36, - "Y": 192.9, - "Z": -1985.91 + "X": 485.98, + "Y": 63.84, + "Z": -3412.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814603,22 +815979,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 54, - "Coding LOC": 29, - "Documentation LOC": 13, - "Structural Magnitude": 6.38, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.172 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.16%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -814626,68 +816002,48 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "33.89%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "setupSpec", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 35 - }, - { - "Function Name": "demo", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 50 - }, - { - "Function Name": "setup", + "Function Name": "GRANT", "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 40 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 10, - "Function Parameters": 3, - "Function/Method Declarations": 3, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 9, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 1, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 1, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -814698,7 +816054,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -814711,7 +816067,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 23, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814728,15 +816084,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -814744,7 +816100,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814753,40 +816109,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "java.nio.file.Path", - "spock.lang.*", - "spock.util.io.FileSystemFixture" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_extension_UseDocSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_extension_UseDocSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_extension_UseDocSpec.groovy", - "Language": "Groovy", + "Filename": "DRPTB01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3135.13, - "Y": 152.75, - "Z": -1843.12 + "X": 1052.61, + "Y": 34.94, + "Z": -1063.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814795,80 +816150,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 13, - "Documentation LOC": 2, - "Structural Magnitude": 2.96, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.09%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.8%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "avg", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 8 - }, - { - "Function Name": "\"can use avg() method\"", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -814880,9 +816225,9 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -814893,7 +816238,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -814910,11 +816255,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -814926,7 +816271,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -814935,7 +816280,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -814948,26 +816293,26 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.Specification", - "spock.util.mop.Use" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "groovy/spock_specs/org_spockframework_docs_interaction_BuilderExampleSpec.groovy": { + "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl": { "1. Artifact Identity": { - "Filename": "org_spockframework_docs_interaction_BuilderExampleSpec.groovy", - "Path": "groovy/spock_specs/org_spockframework_docs_interaction_BuilderExampleSpec.groovy", - "Language": "Groovy", + "Filename": "DRPTB02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2855.91, - "Y": 123.04, - "Z": -2214.68 + "X": -976.36, + "Y": 107.54, + "Z": -2590.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814976,22 +816321,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 40, - "Coding LOC": 27, - "Documentation LOC": 2, - "Structural Magnitude": 2.54, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.185 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.46%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.71%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -814999,47 +816344,47 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "51.08%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "\"build example\"", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 27 + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 8, - "Function Parameters": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 3, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -815051,7 +816396,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815064,7 +816409,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815081,11 +816426,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -815097,7 +816442,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815106,7 +816451,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -815119,97 +816464,83 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "groovy.transform.builder.*", - "spock.lang.Specification" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] - } - } - }, - "sqlite/mediawiki_sqlite_tables": { - "Directory Group Magnitude": 315.54, - "File Count": 11, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "90.9%", - "Static: Literature & Documentation": "9.1%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "5.49%", - "Error & Exception Exposure": "33.6%", - "Tech Debt Exposure": "90.91%", - "Testing Exposure": "1.62%", - "API Exposure": "0.42%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "63.03%", - "Instability Exposure": "45.45%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.66%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "sqlite/mediawiki_sqlite_tables/COPYING": { + }, + "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl": { "1. Artifact Identity": { - "Filename": "COPYING", - "Path": "sqlite/mediawiki_sqlite_tables/COPYING", - "Language": "Plaintext", + "Filename": "DRPTB03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYING)" + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2341.99, - "Y": -8.88, - "Z": -7213.65 + "X": 1379.06, + "Y": 74.55, + "Z": -2931.56 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 379, - "Coding LOC": 0, - "Documentation LOC": 307, - "Structural Magnitude": 7.58, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.4%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "61.98%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 21 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -815236,7 +816567,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815249,7 +816580,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815266,15 +816597,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815282,7 +816613,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815291,36 +816622,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-block_target.sql": { + "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl": { "1. Artifact Identity": { - "Filename": "patch-block_target.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-block_target.sql", - "Language": "Sqlite", + "Filename": "DRPTS01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1794.21, - "Y": 10.01, - "Z": -7748.32 + "X": -105.47, + "Y": 83.15, + "Z": -881.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815329,22 +816663,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 42, - "Coding LOC": 30, - "Documentation LOC": 0, - "Structural Magnitude": 12.3, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.167 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.84%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.55%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -815352,122 +816686,32 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.0%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 15 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 17 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 21, + "Start Line": 9, "End Line": 21 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 37 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 39 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 41 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 8, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -815494,7 +816738,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815507,7 +816751,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815524,15 +816768,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815540,7 +816784,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815549,36 +816793,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-collation.sql": { + "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl": { "1. Artifact Identity": { - "Filename": "patch-collation.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-collation.sql", - "Language": "Sqlite", + "Filename": "DRPTS02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1599.32, - "Y": 32.75, - "Z": -7728.95 + "X": -237.94, + "Y": 77.49, + "Z": -3583.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815587,65 +816834,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 5, - "Documentation LOC": 0, - "Structural Magnitude": 2.4, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.82%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "33.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.36%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -815672,7 +816909,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815685,7 +816922,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815702,15 +816939,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815718,7 +816955,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815727,36 +816964,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql": { + "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl": { "1. Artifact Identity": { - "Filename": "patch-existencelinks.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql", - "Language": "Sqlite", + "Filename": "DRPTS03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2381.47, - "Y": -73.32, - "Z": -6947.49 + "X": 1531.21, + "Y": 49.67, + "Z": -1896.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815765,65 +817005,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.0%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "61.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -815850,7 +817080,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815863,7 +817093,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815880,15 +817110,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815896,7 +817126,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815905,36 +817135,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-file.sql": { + "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl": { "1. Artifact Identity": { - "Filename": "patch-file.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-file.sql", - "Language": "Sqlite", + "Filename": "EXTDCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2106.94, - "Y": -108.36, - "Z": -6909.99 + "X": -1229.41, + "Y": 139.06, + "Z": -1697.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815943,152 +817176,52 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 47, - "Coding LOC": 33, - "Documentation LOC": 0, - "Structural Magnitude": 13.46, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.152 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.36%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.51%", + "Testing Exposure": "0.51%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.17%", + "Documentation Exposure": "17.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 25 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 7 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 42 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 27 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 29 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 31 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 46 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 8, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 5, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -816106,7 +817239,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816131,7 +817264,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816148,15 +817281,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 11, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816180,29 +817313,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CTSSVT.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql": { + "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl": { "1. Artifact Identity": { - "Filename": "patch-user-user_is_temp.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql", - "Language": "Sqlite", + "Filename": "GETCOMPY.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1334.82, - "Y": -96.87, - "Z": -6906.02 + "X": 1281.4, + "Y": 29.86, + "Z": -2219.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816211,57 +817347,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 7, - "Coding LOC": 2, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 3.14, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.5 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.36%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "13.33%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.99%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "ALTER_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 6 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -816274,7 +817410,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816299,7 +817435,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816316,15 +817452,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816348,29 +817484,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql": { + "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl": { "1. Artifact Identity": { - "Filename": "patch-user_autocreate_serial-uas_year.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql", - "Language": "Sqlite", + "Filename": "GETSCODE.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1380.31, - "Y": -43.7, - "Z": -7502.15 + "X": -408.31, + "Y": 75.09, + "Z": -1320.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816379,96 +817518,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 18, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 6.26, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.278 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.14%", - "Error & Exception Exposure": "84.62%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.51%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.42%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 9 - }, - { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 25 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 27 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -816482,7 +817581,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816502,12 +817601,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816524,15 +817623,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 5, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816556,29 +817655,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql": { + "jcl/cics-banking-sample-application-cbsa/INQACC.jcl": { "1. Artifact Identity": { - "Filename": "patch-watchlist_label.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql", - "Language": "Sqlite", + "Filename": "INQACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQACC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2064.89, - "Y": 59.16, - "Z": -7604.57 + "X": 327.12, + "Y": 40.92, + "Z": -3280.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816587,55 +817689,35 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 12, - "Documentation LOC": 0, - "Structural Magnitude": 4.84, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.97%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.39%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 14 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, @@ -816643,30 +817725,20 @@ "Control Flow Ratio": "0.0%", "Start Line": 7, "End Line": 7 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 3, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -816680,7 +817752,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816705,7 +817777,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816722,15 +817794,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816754,29 +817826,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql": { + "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl": { "1. Artifact Identity": { - "Filename": "searchindex-fts3.sql", - "Path": "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql", - "Language": "Sqlite", + "Filename": "INQACCCU.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2034.65, - "Y": -148.41, - "Z": -6689.56 + "X": 980.0, + "Y": 17.53, + "Z": -1560.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816785,75 +817860,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 6, - "Documentation LOC": 9, - "Structural Magnitude": 5.52, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "94.1%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.14%", - "API Exposure": "4.63%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.48%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 18 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 16 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 5 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 1, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -816868,7 +817923,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816888,12 +817943,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816910,15 +817965,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816942,29 +817997,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 4 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql": { + "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl": { "1. Artifact Identity": { - "Filename": "searchindex-no-fts.sql", - "Path": "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql", - "Language": "Sqlite", + "Filename": "INQCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1605.37, - "Y": -145.6, - "Z": -6950.18 + "X": -800.75, + "Y": 78.66, + "Z": -2496.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816973,126 +818031,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 13, - "Documentation LOC": 5, - "Structural Magnitude": 10.16, - "Control Flow Ratio": "50.0%", + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.462 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "98.81%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.46%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.49%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "DELETE_Statement", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 18 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 6 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 20 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, + "Control Flow Branches": 0, "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 8, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -817106,7 +818094,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -817126,12 +818114,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 5, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -817148,15 +818136,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 8, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -817180,29 +818168,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 5 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/tables-generated.sql": { + "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl": { "1. Artifact Identity": { - "Filename": "tables-generated.sql", - "Path": "sqlite/mediawiki_sqlite_tables/tables-generated.sql", - "Language": "Sqlite", + "Filename": "INSTDB2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1805.25, - "Y": -74.03, - "Z": -7206.27 + "X": 868.04, + "Y": 20.31, + "Z": -1946.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -817211,10 +818202,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 948, - "Coding LOC": 683, - "Documentation LOC": 4, - "Structural Magnitude": 247.46, + "Total LOC": 106, + "Coding LOC": 73, + "Documentation LOC": 17, + "Structural Magnitude": 5.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -817224,9 +818215,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.49%", + "Error & Exception Exposure": "70.49%", + "Tech Debt Exposure": "64.16%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -817234,2001 +818225,1085 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.37%", + "Documentation Exposure": "21.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, + "Function Name": "GRANT", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 90, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 16, - "End Line": 27 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 51 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 103, - "End Line": 112 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 220, - "End Line": 236 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 251, - "End Line": 262 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 286, - "End Line": 301 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 381, - "End Line": 390 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 442, - "End Line": 452 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 485, - "End Line": 498 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 511, - "End Line": 522 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 580, - "End Line": 589 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 629, - "End Line": 645 - }, + "End Line": 105 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 38, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 10, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 10, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 2, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "&DB2HLQ..SDSNLOAD", + "CBSA.DB2.JCL.INSTALL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl": { + "1. Artifact Identity": { + "Filename": "MAPGEN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 55.05, + "Y": 60.88, + "Z": -2833.53 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 50, + "Coding LOC": 43, + "Documentation LOC": 6, + "Structural Magnitude": 7.46, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.116 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.14%", + "Error & Exception Exposure": "86.5%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.44%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "35.41%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, + "Function Name": "ASMDSECT", + "Structural Impact": 1.9, "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 685, - "End Line": 694 + "Start Line": 40, + "End Line": 49 }, { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "LINKMAP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 731, - "End Line": 740 + "Start Line": 33, + "End Line": 38 }, { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, + "Function Name": "ASMMAP", + "Structural Impact": 1.6, "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 743, - "End Line": 755 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 809, - "End Line": 827 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 836, - "End Line": 851 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 69 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 80, - "End Line": 88 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 122, - "End Line": 128 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 316, - "End Line": 322 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 338, - "End Line": 346 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 536, - "End Line": 542 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 610, - "End Line": 616 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 673, - "End Line": 680 + "Start Line": 20, + "End Line": 32 }, { - "Function Name": "CREATE_Statement", + "Function Name": "COPY", "Structural Impact": 1.4, "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 768, - "End Line": 774 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 96 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 171, - "End Line": 176 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 196, - "End Line": 201 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 213 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 349, - "End Line": 354 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 361, - "End Line": 366 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 371, - "End Line": 376 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 406, - "End Line": 411 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 414, - "End Line": 419 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 432, - "End Line": 437 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 475, - "End Line": 480 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 549, - "End Line": 554 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 565, - "End Line": 570 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 707, - "End Line": 712 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 719, - "End Line": 724 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 781, - "End Line": 786 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 860, - "End Line": 865 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 875, - "End Line": 880 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 897, - "End Line": 902 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 907, - "End Line": 912 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 9 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 117 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 145 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 157 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 162, - "End Line": 166 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 179, - "End Line": 182 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 187, - "End Line": 191 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 275, - "End Line": 279 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 332, - "End Line": 335 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 398, - "End Line": 401 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 424, - "End Line": 427 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 530, - "End Line": 533 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 574, - "End Line": 577 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 594, - "End Line": 598 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 603, - "End Line": 607 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 665, - "End Line": 668 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 760, - "End Line": 763 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 790, - "End Line": 793 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 796, - "End Line": 799 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 802, - "End Line": 806 - }, + "Start Line": 13, + "End Line": 19 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 25, + "Function Parameters": 3, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 28, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 41, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 41, + "Design Short Vars": 1, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 4, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 2, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "&CBSAHLQ..BMS(&MEMBER)", + "&CBSAHLQ..DSECT(&MEMBER)", + "&CBSAHLQ..LOADLIB(&MEMBER)", + "&CICSHLQ..SDFHMAC", + "SYS1.MACLIB" + ] + }, + "jcl/cics-banking-sample-application-cbsa/RACF001.jcl": { + "1. Artifact Identity": { + "Filename": "RACF001.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RACF001.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -955.94, + "Y": 107.25, + "Z": -1683.66 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 20, + "Coding LOC": 15, + "Documentation LOC": 4, + "Structural Magnitude": 1.9, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.333 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "11.12%", + "Error & Exception Exposure": "91.01%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "65.27%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "TSO", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 868, - "End Line": 872 - }, + "Start Line": 8, + "End Line": 19 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 4, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 6, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 6, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 1, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl": { + "1. Artifact Identity": { + "Filename": "REPLCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1358.19, + "Y": 39.09, + "Z": -2077.51 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 2.04, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.294 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.41%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "61.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "JOBSTEP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 887, - "End Line": 890 - }, + "Start Line": 8, + "End Line": 21 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 14, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 14, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "CBSA.JCL.INSTALL", + "FEU.Z25A.PROCLIB" + ] + }, + "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl": { + "1. Artifact Identity": { + "Filename": "REPLSIP.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -755.48, + "Y": 126.68, + "Z": -1637.07 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 2.04, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.294 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.41%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "61.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "JOBSTEP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 923, - "End Line": 927 - }, + "Start Line": 8, + "End Line": 21 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 7, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 14, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 14, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "CBSA.JCL.INSTALL", + "DFH560.SYSIN" + ] + }, + "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl": { + "1. Artifact Identity": { + "Filename": "RESTCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -823.36, + "Y": 95.33, + "Z": -2963.92 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.625 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.75%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.33%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "53.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.16%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "STEP0001", "Structural Impact": 1.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 932, - "End Line": 936 - }, + "Start Line": 8, + "End Line": 12 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 3, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 3, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 1, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl": { + "1. Artifact Identity": { + "Filename": "RESTZOSC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1641.21, + "Y": -0.78, + "Z": -2558.8 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.625 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.75%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.33%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "53.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.16%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "STEP0001", "Structural Impact": 1.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 941, - "End Line": 945 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 13 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 31 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 53 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 55 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 57 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 59 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 71 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 73 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 75 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 77 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 98, - "End Line": 98 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 100 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 119 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 130, - "End Line": 130 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 132, - "End Line": 132 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 134, - "End Line": 134 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 138 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 147, - "End Line": 147 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 149 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 151, - "End Line": 151 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 159, - "End Line": 159 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 168 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 184, - "End Line": 184 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 193, - "End Line": 193 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 203, - "End Line": 203 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 205, - "End Line": 205 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 215, - "End Line": 215 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 217, - "End Line": 217 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 238 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 240, - "End Line": 242 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 244, - "End Line": 244 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 246, - "End Line": 246 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 248, - "End Line": 248 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 264, - "End Line": 264 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 266, - "End Line": 266 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 268 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 270 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 272, - "End Line": 272 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 281, - "End Line": 283 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 303, - "End Line": 303 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 305, - "End Line": 305 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 307, - "End Line": 307 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 309, - "End Line": 309 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 311, - "End Line": 313 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 324, - "End Line": 324 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 326, - "End Line": 328 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 330, - "End Line": 330 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 356, - "End Line": 356 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 358, - "End Line": 358 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 368, - "End Line": 368 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 378, - "End Line": 378 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 392, - "End Line": 392 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 394, - "End Line": 394 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 396, - "End Line": 396 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 403, - "End Line": 403 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 421, - "End Line": 421 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 429, - "End Line": 429 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 439 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 454, - "End Line": 454 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 456, - "End Line": 456 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 458, - "End Line": 460 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 462, - "End Line": 462 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 464, - "End Line": 466 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 468, - "End Line": 468 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 470, - "End Line": 472 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 482, - "End Line": 482 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 500, - "End Line": 500 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 502, - "End Line": 502 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 504, - "End Line": 504 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 506, - "End Line": 506 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 508, - "End Line": 508 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 524, - "End Line": 524 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 526, - "End Line": 526 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 528, - "End Line": 528 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 544, - "End Line": 544 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 546, - "End Line": 546 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 556, - "End Line": 556 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 558, - "End Line": 558 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 560 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 562, - "End Line": 562 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 572, - "End Line": 572 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 591, - "End Line": 591 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 600, - "End Line": 600 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 618, - "End Line": 618 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 620, - "End Line": 622 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 624, - "End Line": 626 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 647, - "End Line": 647 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 649, - "End Line": 651 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 653, - "End Line": 653 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 655, - "End Line": 657 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 659, - "End Line": 659 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 661, - "End Line": 661 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 663 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 670, - "End Line": 670 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 682, - "End Line": 682 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 696, - "End Line": 696 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 698, - "End Line": 698 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 700, - "End Line": 700 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 702, - "End Line": 704 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 714, - "End Line": 714 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 716, - "End Line": 716 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 726, - "End Line": 726 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 728, - "End Line": 728 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 757, - "End Line": 757 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 765, - "End Line": 765 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 776, - "End Line": 778 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 788, - "End Line": 788 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 829, - "End Line": 829 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 831, - "End Line": 831 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 833, - "End Line": 833 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 853, - "End Line": 853 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 855, - "End Line": 855 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 857, - "End Line": 857 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 882 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 884, - "End Line": 884 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 892, - "End Line": 892 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 894, - "End Line": 894 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 904, - "End Line": 904 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 914, - "End Line": 914 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 916, - "End Line": 916 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 918, - "End Line": 920 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 929, - "End Line": 929 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 938, - "End Line": 938 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 947, - "End Line": 947 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 2, "Function Parameters": 0, - "Function/Method Declarations": 134, - "Class/Entity Declarations": 64, - "Defensive Programming Constructs": 83, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -819256,7 +819331,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -819269,7 +819344,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 398, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -819277,7 +819352,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 1, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -819286,15 +819361,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 198, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -819302,7 +819377,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -819324,93 +819399,79 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "python/wtfpython": { - "Directory Group Magnitude": 313.92, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "83.3%", - "Static: Literature & Documentation": "16.7%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "21.73%", - "Error & Exception Exposure": "29.68%", - "Tech Debt Exposure": "37.59%", - "Testing Exposure": "14.42%", - "API Exposure": "3.61%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "33.33%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "62.22%", - "Instability Exposure": "41.67%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "7.42%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "python/wtfpython/README.md": { + }, + "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl": { "1. Artifact Identity": { - "Filename": "README.md", - "Path": "python/wtfpython/README.md", - "Language": "Markdown", + "Filename": "SHUTCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4576.34, - "Y": 99.18, - "Z": 10610.36 + "X": -607.35, + "Y": 72.27, + "Z": -1232.23 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4180, - "Coding LOC": 0, - "Documentation LOC": 3118, - "Structural Magnitude": 83.6, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.625 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.75%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.33%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "53.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.16%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 12 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 2, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -819438,7 +819499,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -819468,23 +819529,23 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 504, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 174, - "Hyperlinked Literature References": 171, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -819507,73 +819568,84 @@ }, "9. Extracted Dependencies": [] }, - "python/wtfpython/2_tricky_strings.py": { + "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl": { "1. Artifact Identity": { - "Filename": "2_tricky_strings.py", - "Path": "python/wtfpython/2_tricky_strings.py", - "Language": "Python", + "Filename": "SHUTZOSC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4313.79, - "Y": 191.44, - "Z": 10129.75 + "X": 172.91, + "Y": 79.17, + "Z": -3677.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 12, - "Documentation LOC": 3, - "Structural Magnitude": 15.24, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.167 + "Raw Cognitive Density": 0.625 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "94.75%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.84%", + "Testing Exposure": "1.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "9.54%", + "Documentation Exposure": "41.16%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 12 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 2, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 6, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 6, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -819586,7 +819658,7 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 8, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -819595,7 +819667,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -819625,15 +819697,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 6, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 6, + "Design Upper Case": 3, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -819641,7 +819713,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -819664,81 +819736,81 @@ }, "9. Extracted Dependencies": [] }, - "python/wtfpython/insert_ids.py": { + "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl": { "1. Artifact Identity": { - "Filename": "insert_ids.py", - "Path": "python/wtfpython/insert_ids.py", - "Language": "Python", + "Filename": "UPDACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4069.66, - "Y": 187.76, - "Z": 10761.84 + "X": 1173.27, + "Y": 59.04, + "Z": -2852.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 15, - "Documentation LOC": 0, - "Structural Magnitude": 8.4, - "Control Flow Ratio": "44.4%", + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.15 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "83.2%", - "Error & Exception Exposure": "88.67%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "4.25%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "generate_random_id_comment", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 11 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 6, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -819776,7 +819848,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -819793,11 +819865,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 5, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -819825,82 +819897,83 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "uuid" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "python/wtfpython/mixed_tabs_and_spaces.py": { + "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl": { "1. Artifact Identity": { - "Filename": "mixed_tabs_and_spaces.py", - "Path": "python/wtfpython/mixed_tabs_and_spaces.py", - "Language": "Python", + "Filename": "UPDCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (75.0% Spaces / 25.0% Tabs)", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4807.34, - "Y": 107.58, - "Z": 10237.09 + "X": 68.17, + "Y": 38.89, + "Z": -1191.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 4.22, - "Control Flow Ratio": "33.3%", + "Total LOC": 9, + "Coding LOC": 3, + "Documentation LOC": 5, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.04%", + "Testing Exposure": "0.51%", "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "4.77%", + "Documentation Exposure": "19.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "square", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1, - "End Line": 5 + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -819921,7 +819994,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -819934,7 +820007,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -819945,8 +820018,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1, - "Structural Space Indentations": 3, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -819963,11 +820036,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -819995,174 +820068,107 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "python/wtfpython/notebook_generator.py": { + "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl": { "1. Artifact Identity": { - "Filename": "notebook_generator.py", - "Path": "python/wtfpython/notebook_generator.py", - "Language": "Python", + "Filename": "XFRFUN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4390.23, - "Y": 179.55, - "Z": 10396.93 + "X": -264.18, + "Y": 59.67, + "Z": -3111.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 398, - "Coding LOC": 245, - "Documentation LOC": 89, - "Structural Magnitude": 199.8, - "Control Flow Ratio": "65.9%", + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.898 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "32.19%", - "Error & Exception Exposure": "89.44%", - "Tech Debt Exposure": "25.51%", - "Testing Exposure": "80.0%", - "API Exposure": "6.52%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.51%", + "API Exposure": "5.78%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "19.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "parse_example_parts", - "Structural Impact": 57.1, - "Lines of Code (LOC)": 103, - "Control Flow Branches": 25, - "Input Parameters": 3, - "Control Flow Ratio": "92.6%", - "Start Line": 96, - "End Line": 198 - }, - { - "Function Name": "convert_to_cells", - "Structural Impact": 16.2, - "Lines of Code (LOC)": 81, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 228, - "End Line": 308 - }, - { - "Function Name": "convert_to_notebook", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 311, - "End Line": 342 - }, - { - "Function Name": "inspect_and_sanitize_code_lines", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 208, - "End Line": 225 - }, - { - "Function Name": "remove_from_beginning", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 201, - "End Line": 205 - }, - { - "Function Name": "is_interactive_statement", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 89, - "End Line": 93 - }, - { - "Function Name": "generate_code_block", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 72 - }, - { - "Function Name": "generate_markdown_block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 86 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 56, - "Sequential Logic Declarations": 29, - "Function Parameters": 9, - "Function/Method Declarations": 8, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 17, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 8, - "State Mutations / Variable Reassignments": 81, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 25, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, - "Planned Work (TODOs)": 3, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -820172,19 +820178,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 226, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -820201,13 +820207,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 69, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 67, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 2, "Design Short Vars": 0, - "Design Long Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -820233,92 +820239,90 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "json", - "os", - "pprint", - "sys" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "python/wtfpython/noxfile.py": { + "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl": { "1. Artifact Identity": { - "Filename": "noxfile.py", - "Path": "python/wtfpython/noxfile.py", - "Language": "Python", + "Filename": "ZOSCSEC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3977.43, - "Y": 253.19, - "Z": 10025.73 + "X": 891.33, + "Y": 97.13, + "Z": -3572.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 14, "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 2.66, - "Control Flow Ratio": "14.3%", + "Documentation LOC": 5, + "Structural Magnitude": 1.86, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.375 + "Raw Cognitive Density": 0.625 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "94.75%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.28%", - "API Exposure": "5.12%", + "Testing Exposure": "1.35%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.36%", + "Documentation Exposure": "41.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "tests", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "BPXIT", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 12, + "Start Line": 8, "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 6, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 2, "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -820327,12 +820331,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -820344,7 +820348,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -820357,7 +820361,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -820373,13 +820377,13 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 2, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 3, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -820390,9 +820394,9 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -820406,16 +820410,12 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "nox", - "nox.sessions", - "typing" - ] + "9. Extracted Dependencies": [] } } }, @@ -821452,9 +821452,9 @@ "Identity Proof": "Prefix Anchor (LICENSE)" }, "2. Topological Coordinates": { - "X": -2378.59, + "X": -2378.42, "Y": 5.27, - "Z": -4574.01 + "Z": -4573.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -821609,9 +821609,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2096.2, + "X": -2096.03, "Y": -103.8, - "Z": -5224.86 + "Z": -5224.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821766,9 +821766,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1650.31, + "X": -1650.14, "Y": -185.31, - "Z": -5483.88 + "Z": -5483.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821954,9 +821954,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1463.75, + "X": -1463.59, "Y": -136.06, - "Z": -4608.06 + "Z": -4607.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822111,9 +822111,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2253.77, + "X": -2253.6, "Y": -82.57, - "Z": -5322.22 + "Z": -5321.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822268,9 +822268,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1427.86, + "X": -1427.69, "Y": -176.1, - "Z": -4769.62 + "Z": -4769.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822425,9 +822425,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1123.32, + "X": -1123.15, "Y": -223.16, - "Z": -4780.73 + "Z": -4780.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822582,9 +822582,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1752.96, + "X": -1752.79, "Y": -106.39, - "Z": -4584.2 + "Z": -4583.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822739,9 +822739,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1676.48, + "X": -1676.31, "Y": -181.14, - "Z": -5230.62 + "Z": -5230.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822977,9 +822977,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -832.71, + "X": -832.55, "Y": -255.83, - "Z": -4991.1 + "Z": -4990.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823145,9 +823145,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2137.59, + "X": -2137.43, "Y": -101.33, - "Z": -5859.78 + "Z": -5859.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823313,9 +823313,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1133.78, + "X": -1133.61, "Y": -181.61, - "Z": -4708.4 + "Z": -4707.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823491,9 +823491,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2430.42, + "X": -2430.26, "Y": 11.03, - "Z": -4942.06 + "Z": -4941.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823659,9 +823659,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1445.26, + "X": -1445.09, "Y": -253.66, - "Z": -5689.59 + "Z": -5689.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823816,9 +823816,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1730.47, + "X": -1730.3, "Y": -83.6, - "Z": -4491.09 + "Z": -4490.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823984,9 +823984,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -978.07, + "X": -977.9, "Y": -265.11, - "Z": -5106.18 + "Z": -5105.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824141,9 +824141,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1919.54, + "X": -1919.37, "Y": -154.83, - "Z": -5607.64 + "Z": -5607.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824319,9 +824319,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2223.3, + "X": -2223.13, "Y": -58.38, - "Z": -4894.76 + "Z": -4894.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824497,9 +824497,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2055.24, + "X": -2055.07, "Y": -59.47, - "Z": -4666.57 + "Z": -4666.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824654,9 +824654,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1295.19, + "X": -1295.02, "Y": -222.22, - "Z": -5475.12 + "Z": -5474.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824811,9 +824811,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1719.96, + "X": -1719.79, "Y": -203.03, - "Z": -5852.76 + "Z": -5852.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824989,9 +824989,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1916.28, + "X": -1916.12, "Y": -55.73, - "Z": -5083.47 + "Z": -5082.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825167,9 +825167,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1091.67, + "X": -1091.5, "Y": -331.52, - "Z": -5520.0 + "Z": -5519.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825335,25 +825335,25 @@ } }, "jcl/cics-genapp": { - "Directory Group Magnitude": 270.96, + "Directory Group Magnitude": 261.84, "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "96.7%", "Static: Literature & Documentation": "3.3%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "2.94%", - "Error & Exception Exposure": "53.83%", - "Tech Debt Exposure": "46.78%", - "Testing Exposure": "2.28%", + "Cognitive Load Exposure": "3.51%", + "Error & Exception Exposure": "53.66%", + "Tech Debt Exposure": "51.36%", + "Testing Exposure": "2.24%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.45%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "95.33%", + "Specification Exposure": "93.33%", "Instability Exposure": "48.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.36%", + "Documentation Exposure": "11.13%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -825370,9 +825370,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3484.9, + "X": -3485.0, "Y": 114.44, - "Z": 5492.35 + "Z": 5491.81 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -825527,9 +825527,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4070.83, + "X": -4070.92, "Y": 185.79, - "Z": 5532.65 + "Z": 5531.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825539,9 +825539,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 74, - "Coding LOC": 74, - "Documentation LOC": 0, - "Structural Magnitude": 11.08, + "Coding LOC": 68, + "Documentation LOC": 6, + "Structural Magnitude": 10.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -825551,9 +825551,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "94.14%", - "Tech Debt Exposure": "99.0%", - "Testing Exposure": "2.45%", + "Error & Exception Exposure": "87.91%", + "Tech Debt Exposure": "99.46%", + "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -825568,32 +825568,22 @@ { "Function Name": "DEFINE1", "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 12, - "End Line": 29 + "End Line": 28 }, { "Function Name": "DEFINE2", "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 37, - "End Line": 54 - }, - { - "Function Name": "CUSTDATA", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 64 + "End Line": 53 }, { "Function Name": "POLYDATA", @@ -825624,6 +825614,16 @@ "Control Flow Ratio": "0.0%", "Start Line": 30, "End Line": 36 + }, + { + "Function Name": "CUSTDATA", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 63 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -825633,9 +825633,9 @@ "Function Parameters": 0, "Function/Method Declarations": 6, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, + "High-Risk Execution Commands": 4, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -825663,7 +825663,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -825745,9 +825745,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3927.05, - "Y": 190.55, - "Z": 4957.75 + "X": -3797.65, + "Y": 192.43, + "Z": 5420.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825757,21 +825757,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 66, - "Coding LOC": 66, - "Documentation LOC": 0, - "Structural Magnitude": 9.62, + "Coding LOC": 44, + "Documentation LOC": 22, + "Structural Magnitude": 8.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.114 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "90.0%", - "Tech Debt Exposure": "91.87%", - "Testing Exposure": "2.43%", + "Cognitive Load Exposure": "5.09%", + "Error & Exception Exposure": "90.7%", + "Tech Debt Exposure": "99.92%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -825785,13 +825785,13 @@ "5. Function Analysis": [ { "Function Name": "ASMMAP", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 19, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 20, - "End Line": 38 + "End Line": 35 }, { "Function Name": "ASMDSECT", @@ -825805,23 +825805,23 @@ }, { "Function Name": "LINKMAP", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 39, - "End Line": 51 + "End Line": 46 }, { "Function Name": "COPY", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 8, - "End Line": 19 + "End Line": 15 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -825831,9 +825831,9 @@ "Function Parameters": 3, "Function/Method Declarations": 4, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 3, "I/O and Network Boundaries": 34, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -825861,7 +825861,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -825899,7 +825899,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -825946,9 +825946,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4736.6, - "Y": 169.47, - "Z": 5504.09 + "X": -4735.97, + "Y": 169.46, + "Z": 5503.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -825958,9 +825958,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 158, - "Coding LOC": 152, - "Documentation LOC": 0, - "Structural Magnitude": 7.04, + "Coding LOC": 146, + "Documentation LOC": 6, + "Structural Magnitude": 6.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -825970,8 +825970,8 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "61.56%", - "Tech Debt Exposure": "26.51%", + "Error & Exception Exposure": "61.96%", + "Tech Debt Exposure": "27.71%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -826032,7 +826032,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826114,9 +826114,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3813.36, - "Y": 118.43, - "Z": 5428.05 + "X": -4613.2, + "Y": 117.53, + "Z": 4738.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826126,9 +826126,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 244, - "Coding LOC": 234, - "Documentation LOC": 0, - "Structural Magnitude": 8.68, + "Coding LOC": 228, + "Documentation LOC": 6, + "Structural Magnitude": 8.56, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -826138,8 +826138,8 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "57.91%", - "Tech Debt Exposure": "17.68%", + "Error & Exception Exposure": "58.09%", + "Tech Debt Exposure": "18.05%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -826200,7 +826200,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826282,9 +826282,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4487.12, - "Y": 161.46, - "Z": 5689.23 + "X": -3935.55, + "Y": 155.94, + "Z": 4918.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826294,9 +826294,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 284, - "Coding LOC": 274, - "Documentation LOC": 0, - "Structural Magnitude": 9.48, + "Coding LOC": 268, + "Documentation LOC": 6, + "Structural Magnitude": 9.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -826306,8 +826306,8 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "56.84%", - "Tech Debt Exposure": "15.72%", + "Error & Exception Exposure": "56.99%", + "Tech Debt Exposure": "15.97%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -826368,7 +826368,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826450,9 +826450,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4399.03, - "Y": 117.92, - "Z": 5949.41 + "X": -4885.14, + "Y": 112.41, + "Z": 4522.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826462,21 +826462,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 29, - "Documentation LOC": 0, - "Structural Magnitude": 2.78, + "Coding LOC": 23, + "Documentation LOC": 6, + "Structural Magnitude": 2.66, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.172 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.32%", - "Error & Exception Exposure": "83.93%", - "Tech Debt Exposure": "99.48%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "7.43%", + "Error & Exception Exposure": "86.8%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -826536,7 +826536,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826618,9 +826618,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3797.23, - "Y": 120.47, - "Z": 4546.12 + "X": -3797.49, + "Y": 120.48, + "Z": 4546.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826630,21 +826630,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 34, - "Coding LOC": 31, - "Documentation LOC": 0, - "Structural Magnitude": 3.02, + "Coding LOC": 25, + "Documentation LOC": 6, + "Structural Magnitude": 2.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.161 + "Raw Cognitive Density": 0.2 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.07%", - "Error & Exception Exposure": "83.04%", - "Tech Debt Exposure": "99.15%", - "Testing Exposure": "2.37%", + "Cognitive Load Exposure": "6.98%", + "Error & Exception Exposure": "85.81%", + "Tech Debt Exposure": "99.85%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -826704,7 +826704,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -826786,9 +826786,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4638.28, - "Y": 158.43, - "Z": 5415.99 + "X": -4637.53, + "Y": 158.42, + "Z": 5415.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -826798,9 +826798,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 114, - "Coding LOC": 114, - "Documentation LOC": 0, - "Structural Magnitude": 43.78, + "Coding LOC": 96, + "Documentation LOC": 18, + "Structural Magnitude": 42.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -826810,9 +826810,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.8%", - "Tech Debt Exposure": "37.14%", - "Testing Exposure": "2.58%", + "Error & Exception Exposure": "63.97%", + "Tech Debt Exposure": "46.1%", + "Testing Exposure": "2.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -826826,33 +826826,33 @@ "5. Function Analysis": [ { "Function Name": "COBL", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 44, + "Structural Impact": 3.4, + "Lines of Code (LOC)": 40, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 12, - "End Line": 55 + "End Line": 51 }, { "Function Name": "LKED", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 67, - "End Line": 82 + "End Line": 80 }, { "Function Name": "COPYLINK", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 56, - "End Line": 66 + "End Line": 62 }, { "Function Name": "LGACDB01", @@ -827172,9 +827172,9 @@ "Function Parameters": 2, "Function/Method Declarations": 34, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 49, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -827202,7 +827202,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -827284,9 +827284,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4434.08, + "X": -4433.71, "Y": 180.36, - "Z": 4171.78 + "Z": 4172.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -827296,9 +827296,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 203, - "Coding LOC": 173, - "Documentation LOC": 0, - "Structural Magnitude": 5.96, + "Coding LOC": 166, + "Documentation LOC": 7, + "Structural Magnitude": 5.82, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -827308,12 +827308,12 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "56.38%", + "Error & Exception Exposure": "56.61%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "13.37%", + "State Flux Exposure": "13.48%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -827370,7 +827370,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -827452,9 +827452,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4181.02, - "Y": 180.44, - "Z": 5680.84 + "X": -4935.27, + "Y": 180.87, + "Z": 5288.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -827464,9 +827464,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 148, - "Coding LOC": 138, - "Documentation LOC": 0, - "Structural Magnitude": 7.76, + "Coding LOC": 135, + "Documentation LOC": 3, + "Structural Magnitude": 7.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -827476,7 +827476,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.54%", + "Error & Exception Exposure": "62.78%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", @@ -827538,7 +827538,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -827620,9 +827620,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4360.7, + "X": -4360.41, "Y": 194.49, - "Z": 4971.35 + "Z": 4971.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -827632,9 +827632,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 1241, - "Coding LOC": 1175, - "Documentation LOC": 0, - "Structural Magnitude": 55.9, + "Coding LOC": 1131, + "Documentation LOC": 44, + "Structural Magnitude": 53.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -827644,9 +827644,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "58.39%", - "Tech Debt Exposure": "9.77%", - "Testing Exposure": "2.32%", + "Error & Exception Exposure": "51.29%", + "Tech Debt Exposure": "9.86%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -827671,92 +827671,92 @@ { "Function Name": "CREATE", "Structural Impact": 4.0, - "Lines of Code (LOC)": 80, + "Lines of Code (LOC)": 73, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 11, - "End Line": 90 + "End Line": 83 }, { "Function Name": "CRTABS", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 51, + "Structural Impact": 3.4, + "Lines of Code (LOC)": 47, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 91, - "End Line": 141 + "End Line": 137 }, { "Function Name": "CRTABS", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 48, + "Structural Impact": 3.1, + "Lines of Code (LOC)": 43, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 294, - "End Line": 341 + "End Line": 336 }, { "Function Name": "CRTABS", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 42, + "Structural Impact": 2.9, + "Lines of Code (LOC)": 38, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 142, - "End Line": 183 + "End Line": 179 }, { "Function Name": "CRTABS", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 37, + "Structural Impact": 2.7, + "Lines of Code (LOC)": 33, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 184, - "End Line": 220 + "End Line": 216 }, { "Function Name": "CRTABS", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 38, + "Structural Impact": 2.7, + "Lines of Code (LOC)": 33, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 256, - "End Line": 293 + "End Line": 288 }, { "Function Name": "CRTABS", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 35, + "Structural Impact": 2.6, + "Lines of Code (LOC)": 32, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 221, - "End Line": 255 + "Start Line": 342, + "End Line": 373 }, { "Function Name": "CRTABS", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 33, + "Structural Impact": 2.5, + "Lines of Code (LOC)": 30, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 342, - "End Line": 374 + "Start Line": 221, + "End Line": 250 }, { "Function Name": "CRGRACC", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 29, + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 375, - "End Line": 403 + "End Line": 401 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -827766,9 +827766,9 @@ "Function Parameters": 0, "Function/Method Declarations": 10, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 8, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 10, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 54, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -827796,7 +827796,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -827878,9 +827878,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5104.63, + "X": -5103.57, "Y": 141.85, - "Z": 5072.28 + "Z": 5071.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -827890,21 +827890,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 44, - "Coding LOC": 44, - "Documentation LOC": 0, - "Structural Magnitude": 3.58, + "Coding LOC": 37, + "Documentation LOC": 7, + "Structural Magnitude": 3.44, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.114 + "Raw Cognitive Density": 0.135 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.09%", - "Error & Exception Exposure": "78.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "5.51%", + "Error & Exception Exposure": "80.55%", + "Tech Debt Exposure": "97.29%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -827964,7 +827964,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828002,7 +828002,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -828046,9 +828046,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4928.87, - "Y": 169.65, - "Z": 4677.35 + "X": -3665.6, + "Y": 166.64, + "Z": 4866.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828058,20 +828058,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 52, - "Coding LOC": 51, - "Documentation LOC": 0, - "Structural Magnitude": 7.62, + "Coding LOC": 41, + "Documentation LOC": 10, + "Structural Magnitude": 7.32, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.122 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.61%", - "Tech Debt Exposure": "99.71%", + "Cognitive Load Exposure": "5.25%", + "Error & Exception Exposure": "85.81%", + "Tech Debt Exposure": "99.96%", "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -828097,22 +828097,22 @@ { "Function Name": "DEFDREP", "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 19, - "End Line": 36 + "End Line": 35 }, { "Function Name": "DELWREP", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 18 + "End Line": 15 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -828122,9 +828122,9 @@ "Function Parameters": 1, "Function/Method Declarations": 3, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828152,7 +828152,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828234,9 +828234,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3821.53, + "X": -3821.99, "Y": 188.29, - "Z": 5518.54 + "Z": 5517.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828246,21 +828246,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 41, - "Coding LOC": 40, - "Documentation LOC": 0, - "Structural Magnitude": 4.5, + "Coding LOC": 31, + "Documentation LOC": 9, + "Structural Magnitude": 4.22, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.125 + "Raw Cognitive Density": 0.161 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.31%", - "Error & Exception Exposure": "87.54%", - "Tech Debt Exposure": "99.64%", - "Testing Exposure": "2.4%", + "Cognitive Load Exposure": "6.07%", + "Error & Exception Exposure": "90.84%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828284,13 +828284,13 @@ }, { "Function Name": "DELWREP", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 18 + "End Line": 15 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -828330,7 +828330,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828412,9 +828412,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3536.36, + "X": -3536.73, "Y": 136.04, - "Z": 5273.87 + "Z": 5273.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828424,29 +828424,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 15, - "Coding LOC": 15, - "Documentation LOC": 0, - "Structural Magnitude": 2.2, + "Coding LOC": 12, + "Documentation LOC": 3, + "Structural Magnitude": 2.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.12%", - "Error & Exception Exposure": "91.01%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.63%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "9.54%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -828498,7 +828498,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828580,9 +828580,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4721.3, + "X": -4720.85, "Y": 173.98, - "Z": 4044.9 + "Z": 4045.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828592,21 +828592,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 18, - "Coding LOC": 18, - "Documentation LOC": 0, - "Structural Magnitude": 1.96, + "Coding LOC": 15, + "Documentation LOC": 3, + "Structural Magnitude": 1.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.278 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.2%", - "Error & Exception Exposure": "89.39%", + "Cognitive Load Exposure": "11.12%", + "Error & Exception Exposure": "91.01%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828666,7 +828666,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -828748,9 +828748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4336.44, + "X": -4336.2, "Y": 160.29, - "Z": 4559.8 + "Z": 4559.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -828760,21 +828760,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 39, - "Coding LOC": 39, - "Documentation LOC": 0, - "Structural Magnitude": 26.48, + "Coding LOC": 35, + "Documentation LOC": 4, + "Structural Magnitude": 26.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.128 + "Raw Cognitive Density": 0.143 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.37%", - "Error & Exception Exposure": "79.78%", + "Cognitive Load Exposure": "5.67%", + "Error & Exception Exposure": "81.35%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.81%", + "Testing Exposure": "2.88%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828788,13 +828788,13 @@ "5. Function Analysis": [ { "Function Name": "ITPSTL", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 16 + "End Line": 15 }, { "Function Name": "ONCICS", @@ -829054,7 +829054,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829136,9 +829136,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3718.26, - "Y": 143.65, - "Z": 4950.73 + "X": -4981.17, + "Y": 146.68, + "Z": 4761.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829148,9 +829148,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 81, - "Coding LOC": 81, - "Documentation LOC": 0, - "Structural Magnitude": 7.62, + "Coding LOC": 72, + "Documentation LOC": 9, + "Structural Magnitude": 7.44, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829160,7 +829160,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "69.04%", + "Error & Exception Exposure": "70.69%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", @@ -829222,7 +829222,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829304,9 +829304,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4721.58, - "Y": 166.4, - "Z": 5899.25 + "X": -5060.2, + "Y": 165.65, + "Z": 5530.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829316,29 +829316,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 11, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 2.02, + "Coding LOC": 8, + "Documentation LOC": 3, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.455 + "Raw Cognitive Density": 0.625 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "93.17%", + "Error & Exception Exposure": "94.75%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.82%", + "Testing Exposure": "1.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "8.74%", + "Documentation Exposure": "6.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829390,7 +829390,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829472,9 +829472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4864.51, - "Y": 191.88, - "Z": 4596.56 + "X": -4377.31, + "Y": 197.39, + "Z": 6023.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829484,29 +829484,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 13, - "Coding LOC": 13, - "Documentation LOC": 0, - "Structural Magnitude": 2.76, + "Coding LOC": 10, + "Documentation LOC": 3, + "Structural Magnitude": 2.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.385 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "92.09%", + "Error & Exception Exposure": "93.7%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.16%", + "Testing Exposure": "1.7%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "10.33%", + "Documentation Exposure": "7.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829558,7 +829558,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829640,9 +829640,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4620.28, - "Y": 166.5, - "Z": 4613.86 + "X": -4500.67, + "Y": 171.04, + "Z": 5611.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829652,9 +829652,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 114, - "Coding LOC": 114, - "Documentation LOC": 0, - "Structural Magnitude": 9.48, + "Coding LOC": 105, + "Documentation LOC": 9, + "Structural Magnitude": 9.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829664,8 +829664,8 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "64.67%", - "Tech Debt Exposure": "37.14%", + "Error & Exception Exposure": "65.66%", + "Tech Debt Exposure": "41.17%", "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -829726,7 +829726,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829808,9 +829808,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5044.13, - "Y": 121.47, - "Z": 5718.31 + "X": -4158.09, + "Y": 112.16, + "Z": 4391.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829820,21 +829820,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -829894,7 +829894,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -829976,9 +829976,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4909.94, - "Y": 135.32, - "Z": 5116.45 + "X": -4083.18, + "Y": 128.79, + "Z": 4315.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829988,9 +829988,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 99, - "Coding LOC": 99, - "Documentation LOC": 0, - "Structural Magnitude": 7.98, + "Coding LOC": 80, + "Documentation LOC": 19, + "Structural Magnitude": 7.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -830002,7 +830002,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830017,32 +830017,32 @@ { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 14, - "End Line": 35 + "End Line": 32 }, { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 36, - "End Line": 57 + "End Line": 54 }, { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 58, - "End Line": 79 + "End Line": 76 }, { "Function Name": "LS2WS", @@ -830092,7 +830092,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830174,9 +830174,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4192.39, - "Y": 120.44, - "Z": 4344.58 + "X": -3944.93, + "Y": 127.58, + "Z": 5949.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830186,21 +830186,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830260,7 +830260,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830342,9 +830342,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4828.4, + "X": -4827.27, "Y": 157.76, - "Z": 4844.7 + "Z": 4844.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830354,9 +830354,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 122, - "Coding LOC": 122, - "Documentation LOC": 0, - "Structural Magnitude": 9.94, + "Coding LOC": 99, + "Documentation LOC": 23, + "Structural Magnitude": 9.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -830367,8 +830367,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "72.78%", - "Testing Exposure": "2.34%", + "Tech Debt Exposure": "85.73%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830383,42 +830383,42 @@ { "Function Name": "LS2WSM", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 15, - "End Line": 36 + "End Line": 33 }, { "Function Name": "LS2WSH", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 37, - "End Line": 58 + "End Line": 55 }, { "Function Name": "LS2WSE", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 59, - "End Line": 80 + "End Line": 77 }, { "Function Name": "LS2WSB", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 81, - "End Line": 102 + "End Line": 99 }, { "Function Name": "LS2WSB", @@ -830468,7 +830468,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830550,9 +830550,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3946.02, - "Y": 149.23, - "Z": 5770.29 + "X": -5234.49, + "Y": 148.16, + "Z": 4735.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830562,21 +830562,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830636,7 +830636,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830718,9 +830718,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4099.28, - "Y": 144.55, - "Z": 4314.25 + "X": -4170.79, + "Y": 150.66, + "Z": 5506.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830730,9 +830730,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 99, - "Coding LOC": 99, - "Documentation LOC": 0, - "Structural Magnitude": 7.98, + "Coding LOC": 80, + "Documentation LOC": 19, + "Structural Magnitude": 7.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -830744,7 +830744,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830759,32 +830759,32 @@ { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 14, - "End Line": 35 + "End Line": 32 }, { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 36, - "End Line": 57 + "End Line": 54 }, { "Function Name": "LS2WS", "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 58, - "End Line": 79 + "End Line": 76 }, { "Function Name": "LS2WS", @@ -830834,7 +830834,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -830916,9 +830916,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5196.16, - "Y": 127.29, - "Z": 4843.37 + "X": -3518.66, + "Y": 121.51, + "Z": 4733.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -830928,21 +830928,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "98.93%", - "Testing Exposure": "2.33%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831002,7 +831002,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -831084,9 +831084,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3518.99, - "Y": 191.49, - "Z": 4657.21 + "X": -4700.8, + "Y": 201.26, + "Z": 5889.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831096,21 +831096,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 2.14, + "Coding LOC": 23, + "Documentation LOC": 9, + "Structural Magnitude": 1.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.217 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", + "Cognitive Load Exposure": "7.43%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "98.93%", - "Testing Exposure": "2.33%", + "Tech Debt Exposure": "99.93%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831170,7 +831170,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -841729,9 +841729,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5989.2, + "X": 5988.55, "Y": -237.07, - "Z": -7861.72 + "Z": -7860.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841886,9 +841886,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6718.08, + "X": 6717.43, "Y": -220.86, - "Z": -7447.64 + "Z": -7446.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842043,9 +842043,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5656.51, + "X": 5655.86, "Y": -230.93, - "Z": -7304.82 + "Z": -7304.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842200,9 +842200,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5598.05, + "X": 5597.39, "Y": -231.03, - "Z": -7702.27 + "Z": -7701.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842368,9 +842368,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6068.89, + "X": 6068.24, "Y": -193.38, - "Z": -7169.24 + "Z": -7168.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842525,9 +842525,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6916.1, + "X": 6915.45, "Y": -200.35, - "Z": -7588.08 + "Z": -7587.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842693,9 +842693,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6234.01, + "X": 6233.35, "Y": -189.0, - "Z": -7907.54 + "Z": -7906.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842850,9 +842850,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5983.91, + "X": 5983.26, "Y": -240.46, - "Z": -7405.64 + "Z": -7404.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843007,9 +843007,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6232.31, + "X": 6231.66, "Y": -208.54, - "Z": -7523.12 + "Z": -7522.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843164,9 +843164,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5776.87, + "X": 5776.22, "Y": -209.72, - "Z": -7603.27 + "Z": -7602.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843321,9 +843321,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6471.53, + "X": 6470.88, "Y": -203.73, - "Z": -7068.3 + "Z": -7067.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843478,9 +843478,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6624.06, + "X": 6623.41, "Y": -223.68, - "Z": -7948.64 + "Z": -7947.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843635,9 +843635,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6457.26, + "X": 6456.61, "Y": -203.78, - "Z": -8173.63 + "Z": -8172.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843813,9 +843813,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5833.15, + "X": 5832.5, "Y": -185.31, - "Z": -6886.15 + "Z": -6885.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843981,9 +843981,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6394.22, + "X": 6393.56, "Y": -205.22, - "Z": -6770.85 + "Z": -6770.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850709,32 +850709,1325 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "spock.lang.*", + "spock.lang.Snapshotter" + ] + }, + "groovy/spock_core_groovy/spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy": { + "1. Artifact Identity": { + "Filename": "spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy", + "Path": "groovy/spock_core_groovy/spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy", + "Language": "Groovy", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" + }, + "2. Topological Coordinates": { + "X": 4112.72, + "Y": 249.89, + "Z": 7768.96 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 38, + "Coding LOC": 29, + "Documentation LOC": 3, + "Structural Magnitude": 9.48, + "Control Flow Ratio": "13.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.621 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "29.62%", + "Error & Exception Exposure": "76.48%", + "Tech Debt Exposure": "99.48%", + "Testing Exposure": "2.44%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "88.47%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "44.95%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "visit", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 23, + "End Line": 36 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 13, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 3, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 3, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 9, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 2, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 15, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 1, + "Design Snake Case": 3, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 9, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "groovy.transform.CompileStatic", + "java.lang.management.ManagementFactory", + "javax.management.MBeanServerConnection", + "org.codehaus.groovy.ast.ASTNode", + "org.codehaus.groovy.control.CompilePhase", + "org.codehaus.groovy.control.SourceUnit", + "org.codehaus.groovy.transform.ASTTransformation", + "org.codehaus.groovy.transform.GroovyASTTransformation", + "org.codehaus.groovy.util.ReleaseInfo" + ] + } + } + }, + "kotlin/okhttp": { + "Directory Group Magnitude": 210.04, + "File Count": 6, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "83.3%", + "Static: Literature & Documentation": "16.7%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "10.2%", + "Error & Exception Exposure": "23.82%", + "Tech Debt Exposure": "48.29%", + "Testing Exposure": "14.39%", + "API Exposure": "1.83%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "33.23%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "58.89%", + "Instability Exposure": "41.67%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "12.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "kotlin/okhttp/LICENSE.txt": { + "1. Artifact Identity": { + "Filename": "LICENSE.txt", + "Path": "kotlin/okhttp/LICENSE.txt", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" + }, + "2. Topological Coordinates": { + "X": -9279.23, + "Y": 47.61, + "Z": -4878.33 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 203, + "Coding LOC": 0, + "Documentation LOC": 169, + "Structural Magnitude": 4.06, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "kotlin/okhttp/Call.kt": { + "1. Artifact Identity": { + "Filename": "Call.kt", + "Path": "kotlin/okhttp/Call.kt", + "Language": "Kotlin", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .kt)" + }, + "2. Topological Coordinates": { + "X": -9867.52, + "Y": 78.52, + "Z": -4243.29 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 187, + "Coding LOC": 29, + "Documentation LOC": 142, + "Structural Magnitude": 20.68, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 2, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.241 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.78%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.7%", + "API Exposure": "2.65%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "tag", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 134 + }, + { + "Function Name": "tag", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 147, + "End Line": 150 + }, + { + "Function Name": "enqueue", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 69 + }, + { + "Function Name": "addEventListener", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 102 + }, + { + "Function Name": "tag", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 110, + "End Line": 110 + }, + { + "Function Name": "tag", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 118 + }, + { + "Function Name": "newCall", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 184, + "End Line": 184 + }, + { + "Function Name": "clone", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 181, + "End Line": 185 + }, + { + "Function Name": "request", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 28 + }, + { + "Function Name": "execute", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 56 + }, + { + "Function Name": "cancel", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 72, + "End Line": 72 + }, + { + "Function Name": "isExecuted", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 78, + "End Line": 78 + }, + { + "Function Name": "isCanceled", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 80, + "End Line": 80 + }, + { + "Function Name": "timeout", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 89 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 22, + "Function Parameters": 14, + "Function/Method Declarations": 14, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 17, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 8, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 23, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 9, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "kotlin.reflect.KClass", + "okio.IOException", + "okio.Timeout" + ] + }, + "kotlin/okhttp/Dispatcher.kt": { + "1. Artifact Identity": { + "Filename": "Dispatcher.kt", + "Path": "kotlin/okhttp/Dispatcher.kt", + "Language": "Kotlin", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .kt)" + }, + "2. Topological Coordinates": { + "X": -9646.59, + "Y": 89.06, + "Z": -4693.85 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 299, + "Coding LOC": 182, + "Documentation LOC": 76, + "Structural Magnitude": 150.74, + "Control Flow Ratio": "54.3%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.111 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "40.45%", + "Error & Exception Exposure": "71.34%", + "Tech Debt Exposure": "89.76%", + "Testing Exposure": "80.0%", + "API Exposure": "3.23%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.85%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "16.9%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "promoteAndExecute", + "Structural Impact": 59.0, + "Lines of Code (LOC)": 99, + "Control Flow Branches": 26, + "Input Parameters": 3, + "Control Flow Ratio": "86.7%", + "Start Line": 163, + "End Line": 261 + }, + { + "Function Name": "findExistingCallWithHost", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "63.6%", + "Start Line": 127, + "End Line": 135 + }, + { + "Function Name": "cancelAll", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 141, + "End Line": 152 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 121 + }, + { + "Function Name": "enqueue", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 123, + "End Line": 125 + }, + { + "Function Name": "finished", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 270 + }, + { + "Function Name": "finished", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 273, + "End Line": 275 + }, + { + "Function Name": "executed", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 264, + "End Line": 265 + }, + { + "Function Name": "runningCallsCount", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 288, + "End Line": 296 + }, + { + "Function Name": "queuedCalls", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 278, + "End Line": 279 + }, + { + "Function Name": "runningCalls", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 282, + "End Line": 283 + }, + { + "Function Name": "queuedCallsCount", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 285, + "End Line": 286 + }, + { + "Function Name": "executorService", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 297, + "End Line": 298 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 38, + "Sequential Logic Declarations": 32, + "Function Parameters": 13, + "Function/Method Declarations": 13, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 10, + "State Mutations / Variable Reassignments": 48, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 17, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 16, + "Generic Type Abstractions": 7, + "Collection Iterators / Comprehensions": 2, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 11, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 2, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 6, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 16, + "Immutable Data Declarations": 16, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 16, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 168, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 29, + "Design Camel Case": 19, + "Design Snake Case": 7, + "Design Pascal Case": 3, + "Design Upper Case": 0, + "Design Short Vars": 1, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 8, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 2, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 11, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "java.util.ArrayDeque", + "java.util.concurrent.ExecutorService", + "java.util.concurrent.SynchronousQueue", + "java.util.concurrent.ThreadPoolExecutor", + "java.util.concurrent.TimeUnit", + "okhttp3.internal.assertLockNotHeld", + "okhttp3.internal.connection.RealCall", + "okhttp3.internal.connection.RealCall.AsyncCall", + "okhttp3.internal.okHttpName", + "okhttp3.internal.threadFactory", + "okhttp3.internal.unmodifiable" + ] + }, + "kotlin/okhttp/OkHttp.android.kt": { + "1. Artifact Identity": { + "Filename": "OkHttp.android.kt", + "Path": "kotlin/okhttp/OkHttp.android.kt", + "Language": "Kotlin", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .kt)" + }, + "2. Topological Coordinates": { + "X": -10137.45, + "Y": 139.32, + "Z": -4784.17 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 40, + "Coding LOC": 13, + "Documentation LOC": 23, + "Structural Magnitude": 8.36, + "Control Flow Ratio": "14.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.538 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "71.58%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.11%", + "API Exposure": "2.96%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.56%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "86.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "31.18%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "initialize", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 33, + "End Line": 38 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 3, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 1, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 2, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 7, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "android.content.Context", + "okhttp3.internal.CONST_VERSION", + "okhttp3.internal.platform.PlatformRegistry" + ] + }, + "kotlin/okhttp/OkHttp.jvm.kt": { + "1. Artifact Identity": { + "Filename": "OkHttp.jvm.kt", + "Path": "kotlin/okhttp/OkHttp.jvm.kt", + "Language": "Kotlin", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "kotlin", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .kt)" + }, + "2. Topological Coordinates": { + "X": -9608.21, + "Y": 130.04, + "Z": -4832.8 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 24, + "Coding LOC": 6, + "Documentation LOC": 15, + "Structural Magnitude": 14.12, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.5 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.92%", + "API Exposure": "2.15%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "40.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "14.71%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 1, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 1, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "spock.lang.*", - "spock.lang.Snapshotter" + "okhttp3.internal.CONST_VERSION" ] }, - "groovy/spock_core_groovy/spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy": { + "kotlin/okhttp/OkHttp.kt": { "1. Artifact Identity": { - "Filename": "spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy", - "Path": "groovy/spock_core_groovy/spock-specs_src_main_groovy_org_spockframework_specs_jacoco_JacocoAstDumpTrigger.groovy", - "Language": "Groovy", + "Filename": "OkHttp.kt", + "Path": "kotlin/okhttp/OkHttp.kt", + "Language": "Kotlin", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "kotlin", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .kt)" }, "2. Topological Coordinates": { - "X": 4112.72, - "Y": 249.89, - "Z": 7768.96 + "X": -9441.88, + "Y": 34.03, + "Z": -4166.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850743,70 +852036,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 38, - "Coding LOC": 29, - "Documentation LOC": 3, - "Structural Magnitude": 9.48, - "Control Flow Ratio": "13.3%", + "Total LOC": 36, + "Coding LOC": 4, + "Documentation LOC": 30, + "Structural Magnitude": 12.08, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.621 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "29.62%", - "Error & Exception Exposure": "76.48%", - "Tech Debt Exposure": "99.48%", - "Testing Exposure": "2.44%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "88.47%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.95%", + "Documentation Exposure": "3.18%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "visit", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 23, - "End Line": 36 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 13, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 3, + "Global State Dependencies": 1, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 9, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -850825,13 +852107,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 1, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 2, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -850848,15 +852130,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, - "Design Camel Case": 1, - "Design Snake Case": 3, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -850880,44 +852162,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 9, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "groovy.transform.CompileStatic", - "java.lang.management.ManagementFactory", - "javax.management.MBeanServerConnection", - "org.codehaus.groovy.ast.ASTNode", - "org.codehaus.groovy.control.CompilePhase", - "org.codehaus.groovy.control.SourceUnit", - "org.codehaus.groovy.transform.ASTTransformation", - "org.codehaus.groovy.transform.GroovyASTTransformation", - "org.codehaus.groovy.util.ReleaseInfo" - ] + "9. Extracted Dependencies": [] } } }, "jcl/cobol-programming-course": { - "Directory Group Magnitude": 211.82, + "Directory Group Magnitude": 204.5, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "9.91%", - "Error & Exception Exposure": "69.66%", - "Tech Debt Exposure": "80.67%", - "Testing Exposure": "2.29%", + "Cognitive Load Exposure": "6.63%", + "Error & Exception Exposure": "71.93%", + "Tech Debt Exposure": "81.27%", + "Testing Exposure": "2.13%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "92.25%", + "Specification Exposure": "83.1%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.84%", + "Documentation Exposure": "50.35%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -850934,9 +852206,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3458.55, - "Y": -255.45, - "Z": -6220.29 + "X": 3457.91, + "Y": -255.4, + "Z": -6219.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -850946,21 +852218,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 27, - "Coding LOC": 26, - "Documentation LOC": 0, - "Structural Magnitude": 6.62, + "Coding LOC": 19, + "Documentation LOC": 7, + "Structural Magnitude": 6.38, "Control Flow Ratio": "37.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.308 + "Raw Cognitive Density": 0.421 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.19%", - "Error & Exception Exposure": "85.33%", + "Cognitive Load Exposure": "14.81%", + "Error & Exception Exposure": "88.86%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.49%", + "Testing Exposure": "2.56%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -850968,7 +852240,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "54.34%", + "Documentation Exposure": "55.2%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -850984,13 +852256,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851114,9 +852386,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3086.31, - "Y": -337.11, - "Z": -5892.57 + "X": 3086.08, + "Y": -336.99, + "Z": -5892.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851126,29 +852398,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851164,13 +852436,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851295,9 +852567,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2960.45, - "Y": -126.05, - "Z": -6760.26 + "X": 2960.33, + "Y": -126.12, + "Z": -6759.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851307,29 +852579,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851345,13 +852617,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851476,9 +852748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3715.61, - "Y": -161.9, - "Z": -6218.37 + "X": 3714.79, + "Y": -161.91, + "Z": -6217.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851488,29 +852760,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851526,13 +852798,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851657,9 +852929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2586.23, - "Y": -308.28, - "Z": -6120.14 + "X": 2586.33, + "Y": -308.2, + "Z": -6119.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851669,29 +852941,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851707,13 +852979,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -851838,9 +853110,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3462.66, - "Y": -77.62, - "Z": -7007.83 + "X": 3462.11, + "Y": -77.74, + "Z": -7006.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851850,29 +853122,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -851888,13 +853160,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852019,9 +853291,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3407.48, - "Y": -308.8, - "Z": -5923.8 + "X": 3406.97, + "Y": -308.71, + "Z": -5923.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852031,29 +853303,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852069,13 +853341,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852200,9 +853472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2632.1, - "Y": -208.15, - "Z": -6861.89 + "X": 2632.18, + "Y": -208.16, + "Z": -6860.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852212,29 +853484,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852250,13 +853522,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852381,9 +853653,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3823.98, - "Y": -81.03, - "Z": -6558.29 + "X": 3823.15, + "Y": -81.1, + "Z": -6557.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852393,29 +853665,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852431,13 +853703,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852562,9 +853834,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2754.52, - "Y": -383.84, - "Z": -5743.24 + "X": 2754.45, + "Y": -383.72, + "Z": -5742.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852574,29 +853846,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852612,13 +853884,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852743,9 +854015,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3032.94, - "Y": -3.27, - "Z": -7019.1 + "X": 3032.66, + "Y": -3.37, + "Z": -7017.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852755,29 +854027,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852793,13 +854065,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -852924,9 +854196,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3772.12, - "Y": -219.8, - "Z": -6029.15 + "X": 3771.39, + "Y": -219.77, + "Z": -6028.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852936,29 +854208,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -852974,13 +854246,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853105,9 +854377,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2433.54, - "Y": -308.5, - "Z": -6342.0 + "X": 2433.69, + "Y": -308.45, + "Z": -6341.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853117,29 +854389,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853155,13 +854427,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853286,9 +854558,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3390.09, - "Y": 13.45, - "Z": -7121.32 + "X": 3389.66, + "Y": 13.35, + "Z": -7120.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853298,29 +854570,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 6.02, + "Coding LOC": 12, + "Documentation LOC": 4, + "Structural Magnitude": 5.84, "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.83%", - "Error & Exception Exposure": "90.47%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.63%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.6%", + "Testing Exposure": "2.16%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.52%", + "Documentation Exposure": "56.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853336,13 +854608,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 3, - "End Line": 8 + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853466,9 +854738,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3645.56, - "Y": -310.96, - "Z": -5798.52 + "X": 3645.0, + "Y": -310.9, + "Z": -5798.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853478,29 +854750,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 6.02, + "Coding LOC": 12, + "Documentation LOC": 4, + "Structural Magnitude": 5.84, "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.83%", - "Error & Exception Exposure": "90.47%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.63%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.6%", + "Testing Exposure": "2.16%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.52%", + "Documentation Exposure": "56.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853516,13 +854788,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 3, - "End Line": 8 + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853646,9 +854918,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2987.25, - "Y": -300.32, - "Z": -6352.01 + "X": 2987.24, + "Y": -300.21, + "Z": -6351.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853658,21 +854930,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 30, - "Documentation LOC": 0, - "Structural Magnitude": 10.9, + "Coding LOC": 21, + "Documentation LOC": 9, + "Structural Magnitude": 10.52, "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.367 + "Raw Cognitive Density": 0.524 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.43%", - "Error & Exception Exposure": "83.48%", + "Cognitive Load Exposure": "20.17%", + "Error & Exception Exposure": "87.82%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.57%", + "Testing Exposure": "2.69%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853680,7 +854952,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.0%", + "Documentation Exposure": "50.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853696,23 +854968,23 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 12, - "End Line": 18 + "End Line": 17 }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -853837,9 +855109,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3734.57, - "Y": -43.46, - "Z": -6873.79 + "X": 3733.87, + "Y": -43.57, + "Z": -6872.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853849,29 +855121,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -853887,13 +855159,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -854018,9 +855290,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3178.38, - "Y": -395.85, - "Z": -5753.04 + "X": 3178.04, + "Y": -395.74, + "Z": -5752.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854030,29 +855302,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854068,13 +855340,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -854199,9 +855471,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2448.36, - "Y": -393.01, - "Z": -5738.79 + "X": 2448.14, + "Y": -392.97, + "Z": -5738.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854211,29 +855483,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 12, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 1.92, + "Coding LOC": 7, + "Documentation LOC": 4, + "Structural Magnitude": 1.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.455 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.76%", + "Testing Exposure": "1.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "37.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854367,9 +855639,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2384.62, - "Y": -132.96, - "Z": -7072.58 + "X": 2384.44, + "Y": -132.97, + "Z": -7071.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854379,29 +855651,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 21, - "Coding LOC": 20, - "Documentation LOC": 0, - "Structural Magnitude": 2.0, + "Coding LOC": 14, + "Documentation LOC": 6, + "Structural Magnitude": 1.88, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.25 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.34%", - "Error & Exception Exposure": "88.34%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.27%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.25%", + "Documentation Exposure": "60.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854537,9 +855809,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3174.04, - "Y": 18.89, - "Z": -7522.27 + "X": 3173.69, + "Y": 18.85, + "Z": -7521.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854549,29 +855821,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 12, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 1.92, + "Coding LOC": 7, + "Documentation LOC": 4, + "Structural Magnitude": 1.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.455 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.76%", + "Testing Exposure": "1.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "37.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854705,9 +855977,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2282.68, - "Y": -312.24, - "Z": -6325.47 + "X": 3709.34, + "Y": 57.21, + "Z": -7338.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854717,21 +855989,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Coding LOC": 17, + "Documentation LOC": 6, + "Structural Magnitude": 2.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854739,7 +856011,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "59.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -854875,9 +856147,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3888.78, - "Y": -347.4, - "Z": -5560.35 + "X": 3888.3, + "Y": -347.38, + "Z": -5559.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854887,29 +856159,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 12, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 1.92, + "Coding LOC": 7, + "Documentation LOC": 4, + "Structural Magnitude": 1.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.455 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.76%", + "Testing Exposure": "1.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "37.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855043,9 +856315,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3707.22, - "Y": 36.54, - "Z": -7180.48 + "X": 3370.11, + "Y": -393.28, + "Z": -5449.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855055,21 +856327,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 24, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 2.26, + "Coding LOC": 17, + "Documentation LOC": 6, + "Structural Magnitude": 2.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.217 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.43%", - "Error & Exception Exposure": "86.8%", + "Cognitive Load Exposure": "9.73%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855077,7 +856349,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.07%", + "Documentation Exposure": "59.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855213,9 +856485,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3582.81, - "Y": -88.77, - "Z": -6699.38 + "X": 3582.05, + "Y": -88.87, + "Z": -6698.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855225,21 +856497,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 23, - "Coding LOC": 22, - "Documentation LOC": 0, - "Structural Magnitude": 6.24, + "Coding LOC": 15, + "Documentation LOC": 7, + "Structural Magnitude": 6.0, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.364 + "Raw Cognitive Density": 0.533 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.3%", - "Error & Exception Exposure": "87.31%", - "Tech Debt Exposure": "99.96%", - "Testing Exposure": "2.52%", + "Cognitive Load Exposure": "20.72%", + "Error & Exception Exposure": "91.01%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.62%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855247,7 +856519,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "59.41%", + "Documentation Exposure": "61.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855263,13 +856535,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -855394,9 +856666,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3336.24, - "Y": -380.56, - "Z": -5356.83 + "X": 2245.73, + "Y": -320.15, + "Z": -6072.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855406,20 +856678,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 38, - "Coding LOC": 37, - "Documentation LOC": 0, - "Structural Magnitude": 2.24, + "Coding LOC": 33, + "Documentation LOC": 4, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.135 + "Raw Cognitive Density": 0.152 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.51%", + "Cognitive Load Exposure": "5.85%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "97.29%", + "Tech Debt Exposure": "98.69%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -855428,7 +856700,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.89%", + "Documentation Exposure": "43.47%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855562,9 +856834,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3183.38, + "X": 3183.03, "Y": -207.64, - "Z": -6293.76 + "Z": -6293.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855574,21 +856846,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 61, - "Coding LOC": 60, - "Documentation LOC": 0, - "Structural Magnitude": 13.0, + "Coding LOC": 48, + "Documentation LOC": 12, + "Structural Magnitude": 12.76, "Control Flow Ratio": "13.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.183 + "Raw Cognitive Density": 0.229 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.57%", - "Error & Exception Exposure": "87.13%", - "Tech Debt Exposure": "77.73%", - "Testing Exposure": "2.47%", + "Cognitive Load Exposure": "7.75%", + "Error & Exception Exposure": "83.41%", + "Tech Debt Exposure": "98.62%", + "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855596,7 +856868,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.08%", + "Documentation Exposure": "29.34%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855638,9 +856910,9 @@ "Function Parameters": 2, "Function/Method Declarations": 3, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 33, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855706,7 +856978,7 @@ "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -855761,9 +857033,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4120.83, - "Y": -44.84, - "Z": -6536.95 + "X": 4120.28, + "Y": -44.86, + "Z": -6536.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855773,29 +857045,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 18, - "Coding LOC": 17, - "Documentation LOC": 0, - "Structural Magnitude": 1.94, + "Coding LOC": 13, + "Documentation LOC": 4, + "Structural Magnitude": 1.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.294 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.73%", - "Error & Exception Exposure": "89.93%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.09%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.11%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.88%", + "Documentation Exposure": "59.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -855931,9 +857203,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2320.78, - "Y": -192.83, - "Z": -6627.91 + "X": 2320.73, + "Y": -192.82, + "Z": -6627.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855943,21 +857215,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 37, - "Coding LOC": 36, - "Documentation LOC": 0, - "Structural Magnitude": 4.32, + "Coding LOC": 32, + "Documentation LOC": 4, + "Structural Magnitude": 4.24, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.139 + "Raw Cognitive Density": 0.156 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.59%", - "Error & Exception Exposure": "88.99%", - "Tech Debt Exposure": "97.7%", - "Testing Exposure": "2.41%", + "Cognitive Load Exposure": "5.96%", + "Error & Exception Exposure": "90.47%", + "Tech Debt Exposure": "98.93%", + "Testing Exposure": "2.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855965,7 +857237,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.66%", + "Documentation Exposure": "44.29%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -856115,9 +857387,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2134.41, - "Y": -300.17, - "Z": -6603.77 + "X": 4020.52, + "Y": -1.72, + "Z": -7116.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856127,29 +857399,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 11, - "Coding LOC": 10, - "Documentation LOC": 0, - "Structural Magnitude": 1.4, + "Coding LOC": 5, + "Documentation LOC": 5, + "Structural Magnitude": 1.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "93.7%", + "Error & Exception Exposure": "96.23%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.64%", + "Testing Exposure": "0.87%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.76%", + "Documentation Exposure": "27.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -856285,9 +857557,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2821.73, - "Y": -425.46, - "Z": -5628.96 + "X": 2821.44, + "Y": -425.42, + "Z": -5628.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856476,9 +857748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3983.79, + "X": 3983.23, "Y": -259.36, - "Z": -5802.22 + "Z": -5801.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856488,21 +857760,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 17, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 2.42, + "Coding LOC": 15, + "Documentation LOC": 1, + "Structural Magnitude": 2.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.312 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.36%", - "Error & Exception Exposure": "90.47%", + "Cognitive Load Exposure": "11.12%", + "Error & Exception Exposure": "91.01%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.44%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856510,19 +857782,19 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.52%", + "Documentation Exposure": "69.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "DSNUPROC", "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 3, - "End Line": 16 + "End Line": 15 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -856647,9 +857919,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2668.96, - "Y": -130.56, - "Z": -6848.68 + "X": 2668.93, + "Y": -130.61, + "Z": -6847.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856659,29 +857931,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -856697,13 +857969,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -856828,9 +858100,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3023.08, - "Y": -483.89, - "Z": -5340.15 + "X": 3022.77, + "Y": -483.84, + "Z": -5339.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856840,29 +858112,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 1.22, + "Coding LOC": 2, + "Documentation LOC": 4, + "Structural Magnitude": 1.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 2.5 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "11.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -856996,9 +858268,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2828.32, - "Y": -59.35, - "Z": -7306.1 + "X": 2828.11, + "Y": -59.42, + "Z": -7305.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857008,21 +858280,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 30, - "Coding LOC": 29, - "Documentation LOC": 0, - "Structural Magnitude": 2.78, + "Coding LOC": 25, + "Documentation LOC": 4, + "Structural Magnitude": 2.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.172 + "Raw Cognitive Density": 0.2 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.32%", - "Error & Exception Exposure": "83.93%", + "Cognitive Load Exposure": "6.98%", + "Error & Exception Exposure": "85.81%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857030,7 +858302,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "51.02%", + "Documentation Exposure": "51.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -857169,9 +858441,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2761.93, - "Y": -178.29, - "Z": -6372.75 + "X": 2761.85, + "Y": -178.28, + "Z": -6372.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857181,21 +858453,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 39, - "Coding LOC": 38, - "Documentation LOC": 0, - "Structural Magnitude": 6.36, + "Coding LOC": 34, + "Documentation LOC": 4, + "Structural Magnitude": 6.28, "Control Flow Ratio": "6.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.184 + "Raw Cognitive Density": 0.206 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.6%", - "Error & Exception Exposure": "88.26%", - "Tech Debt Exposure": "96.84%", - "Testing Exposure": "2.44%", + "Cognitive Load Exposure": "7.13%", + "Error & Exception Exposure": "89.72%", + "Tech Debt Exposure": "98.4%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857203,7 +858475,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.15%", + "Documentation Exposure": "42.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -857355,9 +858627,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3177.06, - "Y": -106.09, - "Z": -6613.2 + "X": 3176.68, + "Y": -106.18, + "Z": -6612.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857367,21 +858639,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 51, - "Coding LOC": 50, - "Documentation LOC": 0, - "Structural Magnitude": 10.3, + "Coding LOC": 42, + "Documentation LOC": 8, + "Structural Magnitude": 10.04, "Control Flow Ratio": "10.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.18 + "Raw Cognitive Density": 0.214 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.5%", - "Error & Exception Exposure": "84.18%", + "Cognitive Load Exposure": "7.35%", + "Error & Exception Exposure": "86.84%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.46%", + "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857389,29 +858661,29 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.09%", + "Documentation Exposure": "34.47%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "LKED", "Structural Impact": 3.5, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 0, "Control Flow Ratio": "25.0%", "Start Line": 33, - "End Line": 43 + "End Line": 42 }, { "Function Name": "COBOL", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 27, + "Structural Impact": 3.3, + "Lines of Code (LOC)": 26, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "4.3%", "Start Line": 6, - "End Line": 32 + "End Line": 31 }, { "Function Name": "GO", @@ -857551,9 +858823,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4015.39, - "Y": -74.55, - "Z": -6749.07 + "X": 4014.75, + "Y": -74.61, + "Z": -6748.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857563,20 +858835,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 26, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 4.3, + "Coding LOC": 21, + "Documentation LOC": 4, + "Structural Magnitude": 4.22, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 + "Raw Cognitive Density": 0.238 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.98%", + "Cognitive Load Exposure": "8.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.85%", + "Tech Debt Exposure": "99.97%", "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -857585,7 +858857,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.53%", + "Documentation Exposure": "56.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -857617,7 +858889,7 @@ "Function Parameters": 2, "Function/Method Declarations": 2, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, @@ -857731,9 +859003,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2564.65, - "Y": -10.48, - "Z": -7456.03 + "X": 2564.41, + "Y": -10.51, + "Z": -7455.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857743,29 +859015,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 1.22, + "Coding LOC": 2, + "Documentation LOC": 4, + "Structural Magnitude": 1.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 2.5 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "11.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -857899,9 +859171,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4259.47, + "X": 4258.91, "Y": -142.13, - "Z": -6008.68 + "Z": -6008.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857911,29 +859183,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 1.22, + "Coding LOC": 2, + "Documentation LOC": 4, + "Structural Magnitude": 1.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 2.5 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "11.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858067,9 +859339,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3984.54, - "Y": 23.86, - "Z": -7018.25 + "X": 2097.76, + "Y": -274.62, + "Z": -6503.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858079,29 +859351,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 11, - "Coding LOC": 10, - "Documentation LOC": 0, - "Structural Magnitude": 1.4, + "Coding LOC": 6, + "Documentation LOC": 4, + "Structural Magnitude": 1.32, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.59%", + "Testing Exposure": "0.98%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.76%", + "Documentation Exposure": "32.95%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858235,9 +859507,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4025.44, - "Y": -161.04, - "Z": -6230.57 + "X": 4024.6, + "Y": -161.07, + "Z": -6229.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858247,29 +859519,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858285,13 +859557,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -858416,9 +859688,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2459.71, - "Y": -379.51, - "Z": -5954.53 + "X": 2459.76, + "Y": -379.41, + "Z": -5954.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858428,29 +859700,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 21, - "Documentation LOC": 0, - "Structural Magnitude": 6.22, + "Coding LOC": 14, + "Documentation LOC": 7, + "Structural Magnitude": 5.98, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.381 + "Raw Cognitive Density": 0.571 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.02%", - "Error & Exception Exposure": "87.82%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.53%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.8%", + "Documentation Exposure": "58.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858466,13 +859738,13 @@ }, { "Function Name": "COBRUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 6, - "End Line": 11 + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -858586,1278 +859858,6 @@ } } }, - "kotlin/okhttp": { - "Directory Group Magnitude": 210.04, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "83.3%", - "Static: Literature & Documentation": "16.7%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "10.2%", - "Error & Exception Exposure": "23.82%", - "Tech Debt Exposure": "48.29%", - "Testing Exposure": "14.39%", - "API Exposure": "1.83%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "33.23%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "58.89%", - "Instability Exposure": "41.67%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.98%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "kotlin/okhttp/LICENSE.txt": { - "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "kotlin/okhttp/LICENSE.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" - }, - "2. Topological Coordinates": { - "X": -9279.23, - "Y": 47.61, - "Z": -4878.33 - }, - "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 203, - "Coding LOC": 0, - "Documentation LOC": 169, - "Structural Magnitude": 4.06, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "kotlin/okhttp/Call.kt": { - "1. Artifact Identity": { - "Filename": "Call.kt", - "Path": "kotlin/okhttp/Call.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -9867.52, - "Y": 78.52, - "Z": -4243.29 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 187, - "Coding LOC": 29, - "Documentation LOC": 142, - "Structural Magnitude": 20.68, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 2, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.241 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.78%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.7%", - "API Exposure": "2.65%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "tag", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 134 - }, - { - "Function Name": "tag", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 147, - "End Line": 150 - }, - { - "Function Name": "enqueue", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 69 - }, - { - "Function Name": "addEventListener", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 102 - }, - { - "Function Name": "tag", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 110, - "End Line": 110 - }, - { - "Function Name": "tag", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 118 - }, - { - "Function Name": "newCall", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 184, - "End Line": 184 - }, - { - "Function Name": "clone", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 181, - "End Line": 185 - }, - { - "Function Name": "request", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 28 - }, - { - "Function Name": "execute", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 56 - }, - { - "Function Name": "cancel", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 72, - "End Line": 72 - }, - { - "Function Name": "isExecuted", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 78, - "End Line": 78 - }, - { - "Function Name": "isCanceled", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 80, - "End Line": 80 - }, - { - "Function Name": "timeout", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 89 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 22, - "Function Parameters": 14, - "Function/Method Declarations": 14, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 17, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 8, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 23, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 9, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "kotlin.reflect.KClass", - "okio.IOException", - "okio.Timeout" - ] - }, - "kotlin/okhttp/Dispatcher.kt": { - "1. Artifact Identity": { - "Filename": "Dispatcher.kt", - "Path": "kotlin/okhttp/Dispatcher.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -9646.59, - "Y": 89.06, - "Z": -4693.85 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 299, - "Coding LOC": 182, - "Documentation LOC": 76, - "Structural Magnitude": 150.74, - "Control Flow Ratio": "54.3%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.111 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "40.45%", - "Error & Exception Exposure": "71.34%", - "Tech Debt Exposure": "89.76%", - "Testing Exposure": "80.0%", - "API Exposure": "3.23%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.85%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.9%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "promoteAndExecute", - "Structural Impact": 59.0, - "Lines of Code (LOC)": 99, - "Control Flow Branches": 26, - "Input Parameters": 3, - "Control Flow Ratio": "86.7%", - "Start Line": 163, - "End Line": 261 - }, - { - "Function Name": "findExistingCallWithHost", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "63.6%", - "Start Line": 127, - "End Line": 135 - }, - { - "Function Name": "cancelAll", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 141, - "End Line": 152 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 121 - }, - { - "Function Name": "enqueue", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 123, - "End Line": 125 - }, - { - "Function Name": "finished", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 270 - }, - { - "Function Name": "finished", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 273, - "End Line": 275 - }, - { - "Function Name": "executed", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 264, - "End Line": 265 - }, - { - "Function Name": "runningCallsCount", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 288, - "End Line": 296 - }, - { - "Function Name": "queuedCalls", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 278, - "End Line": 279 - }, - { - "Function Name": "runningCalls", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 282, - "End Line": 283 - }, - { - "Function Name": "queuedCallsCount", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 285, - "End Line": 286 - }, - { - "Function Name": "executorService", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 297, - "End Line": 298 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 32, - "Function Parameters": 13, - "Function/Method Declarations": 13, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 1, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, - "State Mutations / Variable Reassignments": 48, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 17, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 16, - "Generic Type Abstractions": 7, - "Collection Iterators / Comprehensions": 2, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 11, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 2, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 6, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 16, - "Immutable Data Declarations": 16, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 16, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 168, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 29, - "Design Camel Case": 19, - "Design Snake Case": 7, - "Design Pascal Case": 3, - "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 8, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 11, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "java.util.ArrayDeque", - "java.util.concurrent.ExecutorService", - "java.util.concurrent.SynchronousQueue", - "java.util.concurrent.ThreadPoolExecutor", - "java.util.concurrent.TimeUnit", - "okhttp3.internal.assertLockNotHeld", - "okhttp3.internal.connection.RealCall", - "okhttp3.internal.connection.RealCall.AsyncCall", - "okhttp3.internal.okHttpName", - "okhttp3.internal.threadFactory", - "okhttp3.internal.unmodifiable" - ] - }, - "kotlin/okhttp/OkHttp.android.kt": { - "1. Artifact Identity": { - "Filename": "OkHttp.android.kt", - "Path": "kotlin/okhttp/OkHttp.android.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -10137.45, - "Y": 139.32, - "Z": -4784.17 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 40, - "Coding LOC": 13, - "Documentation LOC": 23, - "Structural Magnitude": 8.36, - "Control Flow Ratio": "14.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.538 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "71.58%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.11%", - "API Exposure": "2.96%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.56%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.18%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "initialize", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 33, - "End Line": 38 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 6, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 3, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 2, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "android.content.Context", - "okhttp3.internal.CONST_VERSION", - "okhttp3.internal.platform.PlatformRegistry" - ] - }, - "kotlin/okhttp/OkHttp.jvm.kt": { - "1. Artifact Identity": { - "Filename": "OkHttp.jvm.kt", - "Path": "kotlin/okhttp/OkHttp.jvm.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -9608.21, - "Y": 130.04, - "Z": -4832.8 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 6, - "Documentation LOC": 15, - "Structural Magnitude": 14.12, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.92%", - "API Exposure": "2.15%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.71%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "okhttp3.internal.CONST_VERSION" - ] - }, - "kotlin/okhttp/OkHttp.kt": { - "1. Artifact Identity": { - "Filename": "OkHttp.kt", - "Path": "kotlin/okhttp/OkHttp.kt", - "Language": "Kotlin", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "kotlin", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .kt)" - }, - "2. Topological Coordinates": { - "X": -9441.88, - "Y": 34.03, - "Z": -4166.36 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 36, - "Coding LOC": 4, - "Documentation LOC": 30, - "Structural Magnitude": 12.08, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.61%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "26.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "3.18%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, "typescript/fp-ts": { "Directory Group Magnitude": 181.4, "File Count": 5, @@ -869176,56 +869176,57 @@ } } }, - "jcl/zopeneditor-sample": { - "Directory Group Magnitude": 110.72, - "File Count": 10, + "groovy/godot_android_gradle": { + "Directory Group Magnitude": 110.12, + "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" + "Unclassified": "80.0%", + "Static: Literature & Documentation": "20.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "2.79%", - "Error & Exception Exposure": "80.75%", - "Tech Debt Exposure": "68.22%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "9.97%", + "Error & Exception Exposure": "47.61%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.85%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "41.96%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "40.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.83%", + "Documentation Exposure": "37.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "jcl/zopeneditor-sample/ALLOCATE.jcl": { + "groovy/godot_android_gradle/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "ALLOCATE.jcl", - "Path": "jcl/zopeneditor-sample/ALLOCATE.jcl", - "Language": "Jcl", + "Filename": "LICENSE.txt", + "Path": "groovy/godot_android_gradle/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Folder Dominant Lang": "groovy", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -8231.26, - "Y": 16.74, - "Z": -2265.33 + "X": -6218.37, + "Y": 109.85, + "Z": -8045.89 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 90, - "Coding LOC": 89, - "Documentation LOC": 0, - "Structural Magnitude": 9.28, + "Total LOC": 21, + "Coding LOC": 0, + "Documentation LOC": 17, + "Structural Magnitude": 1.0, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -869234,55 +869235,34 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.06%", - "Tech Debt Exposure": "50.7%", - "Testing Exposure": "2.36%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "23.13%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.3%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "ALLOCAT", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 89 - }, - { - "Function Name": "DELETE", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 49 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 22, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 24, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -869337,15 +869317,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 59, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 59, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -869362,44 +869342,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.COBOL", - "&HLQ..SAMPLE.COPY", - "&HLQ..SAMPLE.COPYLIB", - "&HLQ..SAMPLE.CUSTFILE", - "&HLQ..SAMPLE.LOAD", - "&HLQ..SAMPLE.OBJ", - "&HLQ..SAMPLE.TRANFILE" - ] + "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/ASMALLOC.jcl": { + "groovy/godot_android_gradle/java_app_settings.gradle": { "1. Artifact Identity": { - "Filename": "ASMALLOC.jcl", - "Path": "jcl/zopeneditor-sample/ASMALLOC.jcl", - "Language": "Jcl", + "Filename": "java_app_settings.gradle", + "Path": "groovy/godot_android_gradle/java_app_settings.gradle", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -8759.56, - "Y": -79.37, - "Z": -1314.02 + "X": -5691.97, + "Y": 139.12, + "Z": -8425.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869408,67 +869380,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 74, - "Coding LOC": 73, - "Documentation LOC": 0, - "Structural Magnitude": 8.16, + "Total LOC": 19, + "Coding LOC": 15, + "Documentation LOC": 1, + "Structural Magnitude": 15.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "79.49%", - "Tech Debt Exposure": "64.16%", - "Testing Exposure": "2.36%", + "Cognitive Load Exposure": "15.89%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "26.81%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.4%", + "Documentation Exposure": "69.01%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "ALLOCAT", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 73 - }, - { - "Function Name": "DELETE", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 43 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 18, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 3, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 20, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -869488,7 +869439,7 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 1, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, @@ -869506,7 +869457,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 12, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -869523,15 +869474,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 46, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 46, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -869548,42 +869499,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.ASM", - "&HLQ..SAMPLE.ASM.FILEIN", - "&HLQ..SAMPLE.ASMCOPY", - "&HLQ..SAMPLE.ASMLOAD", - "&HLQ..SAMPLE.ASMOBJ" - ] + "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/COMPROC.jcl": { + "groovy/godot_android_gradle/java_scripts_publish-module.gradle": { "1. Artifact Identity": { - "Filename": "COMPROC.jcl", - "Path": "jcl/zopeneditor-sample/COMPROC.jcl", - "Language": "Jcl", + "Filename": "java_scripts_publish-module.gradle", + "Path": "groovy/godot_android_gradle/java_scripts_publish-module.gradle", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -8103.26, - "Y": 0.27, - "Z": -1730.27 + "X": -5709.72, + "Y": 91.46, + "Z": -7751.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869592,10 +869537,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 52, - "Coding LOC": 52, - "Documentation LOC": 0, - "Structural Magnitude": 3.64, + "Total LOC": 178, + "Coding LOC": 150, + "Documentation LOC": 15, + "Structural Magnitude": 72.2, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -869605,9 +869550,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.49%", - "Tech Debt Exposure": "86.14%", - "Testing Exposure": "2.35%", + "Error & Exception Exposure": "87.06%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -869615,34 +869560,54 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.18%", + "Documentation Exposure": "16.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CMPLSAM2", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 23, + "Function Name": "templateDebug", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 52, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 52 + "Start Line": 10, + "End Line": 61 + }, + { + "Function Name": "templateRelease", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 113 + }, + { + "Function Name": "toolsRelease", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 165 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 23, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 4, + "Function/Method Declarations": 3, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 10, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 62, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -869662,14 +869627,14 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 2, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -869680,7 +869645,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 142, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -869697,12 +869662,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 22, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 62, + "Design Camel Case": 3, + "Design Snake Case": 59, "Design Pascal Case": 0, - "Design Upper Case": 22, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 12, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 1, @@ -869722,41 +869687,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "&CMPLLIB", - "&HLQ..SAMPLE.COBOL(SAM2)", - "&HLQ..SAMPLE.COPY", - "&HLQ..SAMPLE.OBJ(SAM2)" - ] + "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/COMPSET.jcl": { + "groovy/godot_android_gradle/java_scripts_publish-root.gradle": { "1. Artifact Identity": { - "Filename": "COMPSET.jcl", - "Path": "jcl/zopeneditor-sample/COMPSET.jcl", - "Language": "Jcl", + "Filename": "java_scripts_publish-root.gradle", + "Path": "groovy/godot_android_gradle/java_scripts_publish-root.gradle", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -8895.97, - "Y": -11.23, - "Z": -1459.64 + "X": -5523.81, + "Y": 67.31, + "Z": -7419.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869765,44 +869725,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 18.5, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 39, + "Coding LOC": 32, + "Documentation LOC": 4, + "Structural Magnitude": 5.14, + "Control Flow Ratio": "100.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.44 + "Raw Cognitive Density": 0.406 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.71%", - "Error & Exception Exposure": "78.58%", + "Cognitive Load Exposure": "20.18%", + "Error & Exception Exposure": "75.49%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "93.7%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.53%", + "Documentation Exposure": "44.29%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "FileInputStream", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 14 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 0, + "Function Parameters": 3, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, @@ -869810,11 +869781,11 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 4, + "Global State Dependencies": 7, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, @@ -869842,7 +869813,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 19, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -869859,15 +869830,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 5, + "Design Camel Case": 2, + "Design Snake Case": 3, "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -869892,28 +869863,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/INCLUDE.jcl": { + "groovy/godot_android_gradle/java_settings.gradle": { "1. Artifact Identity": { - "Filename": "INCLUDE.jcl", - "Path": "jcl/zopeneditor-sample/INCLUDE.jcl", - "Language": "Jcl", + "Filename": "java_settings.gradle", + "Path": "groovy/godot_android_gradle/java_settings.gradle", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -9174.97, - "Y": -6.4, - "Z": -1625.6 + "X": -5940.32, + "Y": 100.04, + "Z": -7579.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869922,57 +869893,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 3.6, + "Total LOC": 30, + "Coding LOC": 24, + "Documentation LOC": 1, + "Structural Magnitude": 16.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.36 + "Raw Cognitive Density": 0.292 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.16%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "99.85%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "13.78%", + "Error & Exception Exposure": "75.49%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "75.03%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.53%", + "Documentation Exposure": "55.67%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "STEP1", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 25 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 4, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -869985,14 +869945,14 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 1, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, @@ -870010,7 +869970,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -870027,15 +869987,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -870059,19 +870019,41 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "COMPSET" - ] - }, - "jcl/zopeneditor-sample/PLIALLOC.jcl": { + "9. Extracted Dependencies": [] + } + } + }, + "jcl/zopeneditor-sample": { + "Directory Group Magnitude": 97.88, + "File Count": 10, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "4.55%", + "Error & Exception Exposure": "84.44%", + "Tech Debt Exposure": "80.85%", + "Testing Exposure": "2.11%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "55.48%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "88.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "21.53%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "jcl/zopeneditor-sample/ALLOCATE.jcl": { "1. Artifact Identity": { - "Filename": "PLIALLOC.jcl", - "Path": "jcl/zopeneditor-sample/PLIALLOC.jcl", + "Filename": "ALLOCATE.jcl", + "Path": "jcl/zopeneditor-sample/ALLOCATE.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -870081,9 +870063,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -9083.03, - "Y": -5.28, - "Z": -2080.69 + "X": -8231.66, + "Y": 16.66, + "Z": -2263.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870092,10 +870074,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 91, - "Coding LOC": 90, - "Documentation LOC": 0, - "Structural Magnitude": 9.4, + "Total LOC": 90, + "Coding LOC": 68, + "Documentation LOC": 21, + "Structural Magnitude": 8.56, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -870105,39 +870087,39 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.87%", - "Tech Debt Exposure": "50.0%", - "Testing Exposure": "2.36%", + "Error & Exception Exposure": "71.93%", + "Tech Debt Exposure": "69.19%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "22.95%", + "State Flux Exposure": "28.42%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.14%", + "Documentation Exposure": "20.81%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "ALLOCAT", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 41, + "Structural Impact": 3.0, + "Lines of Code (LOC)": 40, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 50, - "End Line": 90 + "End Line": 89 }, { "Function Name": "DELETE", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 29, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 25, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 21, - "End Line": 49 + "End Line": 45 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -870147,9 +870129,9 @@ "Function Parameters": 0, "Function/Method Declarations": 2, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -870177,7 +870159,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -870207,11 +870189,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 60, + "Core Var Decl": 59, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 60, + "Design Upper Case": 59, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -870245,19 +870227,19 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.PLI", - "&HLQ..SAMPLE.PLI.CUSTFILE", - "&HLQ..SAMPLE.PLI.INCLLIB", - "&HLQ..SAMPLE.PLI.TRANFILE", - "&HLQ..SAMPLE.PLILOAD", - "&HLQ..SAMPLE.PLINC", - "&HLQ..SAMPLE.PLIOBJ" + "&HLQ..SAMPLE.COBOL", + "&HLQ..SAMPLE.COPY", + "&HLQ..SAMPLE.COPYLIB", + "&HLQ..SAMPLE.CUSTFILE", + "&HLQ..SAMPLE.LOAD", + "&HLQ..SAMPLE.OBJ", + "&HLQ..SAMPLE.TRANFILE" ] }, - "jcl/zopeneditor-sample/REXALLOC.jcl": { + "jcl/zopeneditor-sample/ASMALLOC.jcl": { "1. Artifact Identity": { - "Filename": "REXALLOC.jcl", - "Path": "jcl/zopeneditor-sample/REXALLOC.jcl", + "Filename": "ASMALLOC.jcl", + "Path": "jcl/zopeneditor-sample/ASMALLOC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -870267,9 +870249,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -8948.61, - "Y": 93.08, - "Z": -2494.91 + "X": -8757.7, + "Y": -79.16, + "Z": -1315.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870278,10 +870260,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 66, - "Coding LOC": 65, - "Documentation LOC": 0, - "Structural Magnitude": 7.5, + "Total LOC": 74, + "Coding LOC": 53, + "Documentation LOC": 20, + "Structural Magnitude": 7.56, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -870291,29 +870273,29 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "81.49%", - "Tech Debt Exposure": "72.34%", + "Error & Exception Exposure": "75.66%", + "Tech Debt Exposure": "85.14%", "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "29.54%", + "State Flux Exposure": "35.65%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.5%", + "Documentation Exposure": "23.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "ALLOCAT", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 25, + "Structural Impact": 2.5, + "Lines of Code (LOC)": 29, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 65 + "Start Line": 44, + "End Line": 72 }, { "Function Name": "DELETE", @@ -870329,14 +870311,14 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 16, + "Sequential Logic Declarations": 18, "Function Parameters": 0, "Function/Method Declarations": 2, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 18, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, @@ -870363,7 +870345,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -870393,11 +870375,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 39, + "Core Var Decl": 46, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 39, + "Design Upper Case": 46, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -870425,34 +870407,35 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 5, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.REXX", - "&HLQ..SAMPLE.REXX.FILEIN1", - "&HLQ..SAMPLE.REXX.FILEIN2", - "&HLQ..SAMPLE.REXX.FILEOUT" + "&HLQ..SAMPLE.ASM", + "&HLQ..SAMPLE.ASM.FILEIN", + "&HLQ..SAMPLE.ASMCOPY", + "&HLQ..SAMPLE.ASMLOAD", + "&HLQ..SAMPLE.ASMOBJ" ] }, - "jcl/zopeneditor-sample/RUN.jcl": { + "jcl/zopeneditor-sample/COMPROC.jcl": { "1. Artifact Identity": { - "Filename": "RUN.jcl", - "Path": "jcl/zopeneditor-sample/RUN.jcl", + "Filename": "COMPROC.jcl", + "Path": "jcl/zopeneditor-sample/COMPROC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -8627.22, - "Y": 33.01, - "Z": -1828.65 + "X": -9174.47, + "Y": 31.78, + "Z": -1697.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870461,107 +870444,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 168, - "Coding LOC": 167, - "Documentation LOC": 0, - "Structural Magnitude": 21.54, + "Total LOC": 52, + "Coding LOC": 24, + "Documentation LOC": 28, + "Structural Magnitude": 3.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.208 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "82.0%", - "Tech Debt Exposure": "65.56%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "7.19%", + "Error & Exception Exposure": "86.31%", + "Tech Debt Exposure": "99.9%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "28.86%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.77%", + "Documentation Exposure": "27.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ - { - "Function Name": "CMPLSAM1", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 72, - "End Line": 102 - }, { "Function Name": "CMPLSAM2", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 30, + "Structural Impact": 2.6, + "Lines of Code (LOC)": 23, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 71 - }, - { - "Function Name": "SAM1", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 147, - "End Line": 167 - }, - { - "Function Name": "LINKSAM2", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 103, - "End Line": 119 - }, - { - "Function Name": "LINKSAM1", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 134 - }, - { - "Function Name": "DELETE", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 146 + "Start Line": 30, + "End Line": 52 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 74, - "Function Parameters": 2, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 23, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, - "I/O and Network Boundaries": 60, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 5, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -870599,7 +870532,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 5, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -870616,15 +870549,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 85, + "Core Var Decl": 22, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 85, + "Design Upper Case": 22, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -870641,51 +870574,41 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "&CMPLLIB", - "&HLQ..SAMPLE.COBOL(SAM1)", "&HLQ..SAMPLE.COBOL(SAM2)", "&HLQ..SAMPLE.COPY", - "&HLQ..SAMPLE.COPYLIB", - "&HLQ..SAMPLE.CUSTFILE", - "&HLQ..SAMPLE.CUSTOUT", - "&HLQ..SAMPLE.CUSTRPT", - "&HLQ..SAMPLE.LOAD", - "&HLQ..SAMPLE.OBJ", - "&HLQ..SAMPLE.OBJ(SAM1)", - "&HLQ..SAMPLE.OBJ(SAM2)", - "&HLQ..SAMPLE.TRANFILE", - "&LINKLIB" + "&HLQ..SAMPLE.OBJ(SAM2)" ] }, - "jcl/zopeneditor-sample/RUNASAM1.jcl": { + "jcl/zopeneditor-sample/COMPSET.jcl": { "1. Artifact Identity": { - "Filename": "RUNASAM1.jcl", - "Path": "jcl/zopeneditor-sample/RUNASAM1.jcl", + "Filename": "COMPSET.jcl", + "Path": "jcl/zopeneditor-sample/COMPSET.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -8446.1, - "Y": -66.07, - "Z": -1687.45 + "X": -8892.06, + "Y": -11.03, + "Z": -1461.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870694,87 +870617,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 76, - "Coding LOC": 75, - "Documentation LOC": 0, - "Structural Magnitude": 14.4, + "Total LOC": 25, + "Coding LOC": 3, + "Documentation LOC": 22, + "Structural Magnitude": 14.56, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 2.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "90.67%", - "Tech Debt Exposure": "95.96%", - "Testing Exposure": "2.4%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.71%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "75.03%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.94%", + "Documentation Exposure": "12.23%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "ASM1", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 50 - }, - { - "Function Name": "LKED", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 63 - }, - { - "Function Name": "EXECUTE", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 64, - "End Line": 75 - }, - { - "Function Name": "DELETE", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 35 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 33, - "Function Parameters": 1, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, - "I/O and Network Boundaries": 38, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 6, + "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -870812,7 +870694,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -870829,15 +870711,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 40, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 40, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -870854,48 +870736,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 11, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [ - "&HLQ..SAMPLE.ASM(ASAM1)", - "&HLQ..SAMPLE.ASM.FILEIN", - "&HLQ..SAMPLE.ASM.FILEOUT", - "&HLQ..SAMPLE.ASMCOPY", - "&HLQ..SAMPLE.ASMLOAD", - "&HLQ..SAMPLE.ASMOBJ", - "&HLQ..SAMPLE.ASMOBJ(ASAM1)", - "&LINKLIB", - "&MACLIB", - "&MODGEN", - "&SCEEMAC" - ] + "9. Extracted Dependencies": [] }, - "jcl/zopeneditor-sample/RUNPSAM1.jcl": { + "jcl/zopeneditor-sample/INCLUDE.jcl": { "1. Artifact Identity": { - "Filename": "RUNPSAM1.jcl", - "Path": "jcl/zopeneditor-sample/RUNPSAM1.jcl", + "Filename": "INCLUDE.jcl", + "Path": "jcl/zopeneditor-sample/INCLUDE.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -8643.98, - "Y": 69.8, - "Z": -2138.63 + "X": -8100.73, + "Y": -37.72, + "Z": -1659.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870904,97 +870774,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 86, - "Coding LOC": 85, - "Documentation LOC": 0, - "Structural Magnitude": 14.7, + "Total LOC": 25, + "Coding LOC": 9, + "Documentation LOC": 16, + "Structural Magnitude": 3.28, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.778 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.01%", - "Tech Debt Exposure": "97.53%", - "Testing Exposure": "2.41%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "83.39%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "44.58%", + "State Flux Exposure": "99.89%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.97%", + "Documentation Exposure": "35.28%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CMPPSAM1", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 58 - }, - { - "Function Name": "CMPPSAM2", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 45 - }, - { - "Function Name": "LNKPSAM1", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 73 - }, - { - "Function Name": "RUNPSAM1", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 74, - "End Line": 85 - }, - { - "Function Name": "DELETE", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "STEP1", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 34 + "Start Line": 23, + "End Line": 25 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 36, - "Function Parameters": 2, - "Function/Method Declarations": 5, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 5, - "I/O and Network Boundaries": 51, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 4, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871007,7 +870837,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -871019,7 +870849,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871032,7 +870862,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871049,15 +870879,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 43, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 43, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871074,87 +870904,50 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 5, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CMPLLIB", - "&HLQ..SAMPLE.PLI(PSAM1)", - "&HLQ..SAMPLE.PLI(PSAM2)", - "&HLQ..SAMPLE.PLI.CUSTFILE", - "&HLQ..SAMPLE.PLI.CUSTRPT", - "&HLQ..SAMPLE.PLI.INCLLIB", - "&HLQ..SAMPLE.PLI.TRANFILE", - "&HLQ..SAMPLE.PLILOAD", - "&HLQ..SAMPLE.PLINC", - "&HLQ..SAMPLE.PLIOBJ", - "&HLQ..SAMPLE.PLIOBJ(PSAM1)", - "&HLQ..SAMPLE.PLIOBJ(PSAM2)", - "&LINKLIB" + "COMPSET" ] - } - } - }, - "groovy/godot_android_gradle": { - "Directory Group Magnitude": 110.12, - "File Count": 5, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "80.0%", - "Static: Literature & Documentation": "20.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "9.97%", - "Error & Exception Exposure": "47.61%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.85%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", - "Instability Exposure": "40.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.19%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "groovy/godot_android_gradle/LICENSE.txt": { + }, + "jcl/zopeneditor-sample/PLIALLOC.jcl": { "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "groovy/godot_android_gradle/LICENSE.txt", - "Language": "Plaintext", + "Filename": "PLIALLOC.jcl", + "Path": "jcl/zopeneditor-sample/PLIALLOC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -6218.37, - "Y": 109.85, - "Z": -8045.89 + "X": -9079.82, + "Y": -5.39, + "Z": -2080.08 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 0, - "Documentation LOC": 17, - "Structural Magnitude": 1.0, + "Total LOC": 91, + "Coding LOC": 71, + "Documentation LOC": 19, + "Structural Magnitude": 8.82, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -871163,34 +870956,55 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "71.3%", + "Tech Debt Exposure": "66.13%", + "Testing Exposure": "2.35%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "27.42%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "21.17%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "ALLOCAT", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 50, + "End Line": 90 + }, + { + "Function Name": "DELETE", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 46 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 22, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871215,7 +871029,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871245,15 +871059,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 60, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 60, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871270,36 +871084,44 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 7, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..SAMPLE.PLI", + "&HLQ..SAMPLE.PLI.CUSTFILE", + "&HLQ..SAMPLE.PLI.INCLLIB", + "&HLQ..SAMPLE.PLI.TRANFILE", + "&HLQ..SAMPLE.PLILOAD", + "&HLQ..SAMPLE.PLINC", + "&HLQ..SAMPLE.PLIOBJ" + ] }, - "groovy/godot_android_gradle/java_app_settings.gradle": { + "jcl/zopeneditor-sample/REXALLOC.jcl": { "1. Artifact Identity": { - "Filename": "java_app_settings.gradle", - "Path": "groovy/godot_android_gradle/java_app_settings.gradle", - "Language": "Groovy", + "Filename": "REXALLOC.jcl", + "Path": "jcl/zopeneditor-sample/REXALLOC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .gradle)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5691.97, - "Y": 139.12, - "Z": -8425.14 + "X": -8946.32, + "Y": 92.82, + "Z": -2492.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871308,46 +871130,67 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 15, - "Documentation LOC": 1, - "Structural Magnitude": 15.3, + "Total LOC": 66, + "Coding LOC": 44, + "Documentation LOC": 21, + "Structural Magnitude": 6.88, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 0.205 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.89%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "7.1%", + "Error & Exception Exposure": "78.48%", + "Tech Debt Exposure": "93.17%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "43.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "69.01%", + "Documentation Exposure": "25.21%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "ALLOCAT", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 65 + }, + { + "Function Name": "DELETE", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 36 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 16, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 18, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871367,12 +871210,12 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 1, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871385,7 +871228,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 12, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871402,15 +871245,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 39, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 39, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871427,36 +871270,41 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..SAMPLE.REXX", + "&HLQ..SAMPLE.REXX.FILEIN1", + "&HLQ..SAMPLE.REXX.FILEIN2", + "&HLQ..SAMPLE.REXX.FILEOUT" + ] }, - "groovy/godot_android_gradle/java_scripts_publish-module.gradle": { + "jcl/zopeneditor-sample/RUN.jcl": { "1. Artifact Identity": { - "Filename": "java_scripts_publish-module.gradle", - "Path": "groovy/godot_android_gradle/java_scripts_publish-module.gradle", - "Language": "Groovy", + "Filename": "RUN.jcl", + "Path": "jcl/zopeneditor-sample/RUN.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .gradle)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5709.72, - "Y": 91.46, - "Z": -7751.32 + "X": -8625.88, + "Y": 33.01, + "Z": -1828.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871465,10 +871313,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 178, - "Coding LOC": 150, - "Documentation LOC": 15, - "Structural Magnitude": 72.2, + "Total LOC": 168, + "Coding LOC": 96, + "Documentation LOC": 71, + "Structural Magnitude": 18.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -871478,64 +871326,94 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "87.06%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "92.01%", + "Tech Debt Exposure": "95.11%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "49.58%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.99%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "templateDebug", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 52, + "Function Name": "CMPLSAM1", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 24, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 61 + "Start Line": 72, + "End Line": 95 }, { - "Function Name": "templateRelease", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 52, + "Function Name": "CMPLSAM2", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 22, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 113 + "Start Line": 42, + "End Line": 63 }, { - "Function Name": "toolsRelease", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 52, + "Function Name": "SAM1", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 21, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 165 + "Start Line": 147, + "End Line": 167 + }, + { + "Function Name": "LINKSAM1", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 131 + }, + { + "Function Name": "LINKSAM2", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 103, + "End Line": 112 + }, + { + "Function Name": "DELETE", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 135, + "End Line": 143 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 4, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 74, + "Function Parameters": 2, + "Function/Method Declarations": 6, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, + "High-Risk Execution Commands": 6, + "I/O and Network Boundaries": 60, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 62, + "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871555,14 +871433,14 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 2, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -871573,7 +871451,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 142, + "Structural Space Indentations": 5, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871590,15 +871468,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 62, - "Design Camel Case": 3, - "Design Snake Case": 59, + "Core Var Decl": 85, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 12, + "Design Upper Case": 85, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871615,36 +871493,51 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 6, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 14, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&CMPLLIB", + "&HLQ..SAMPLE.COBOL(SAM1)", + "&HLQ..SAMPLE.COBOL(SAM2)", + "&HLQ..SAMPLE.COPY", + "&HLQ..SAMPLE.COPYLIB", + "&HLQ..SAMPLE.CUSTFILE", + "&HLQ..SAMPLE.CUSTOUT", + "&HLQ..SAMPLE.CUSTRPT", + "&HLQ..SAMPLE.LOAD", + "&HLQ..SAMPLE.OBJ", + "&HLQ..SAMPLE.OBJ(SAM1)", + "&HLQ..SAMPLE.OBJ(SAM2)", + "&HLQ..SAMPLE.TRANFILE", + "&LINKLIB" + ] }, - "groovy/godot_android_gradle/java_scripts_publish-root.gradle": { + "jcl/zopeneditor-sample/RUNASAM1.jcl": { "1. Artifact Identity": { - "Filename": "java_scripts_publish-root.gradle", - "Path": "groovy/godot_android_gradle/java_scripts_publish-root.gradle", - "Language": "Groovy", + "Filename": "RUNASAM1.jcl", + "Path": "jcl/zopeneditor-sample/RUNASAM1.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .gradle)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5523.81, - "Y": 67.31, - "Z": -7419.62 + "X": -8662.1, + "Y": 23.32, + "Z": -2369.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871653,67 +871546,97 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 32, - "Documentation LOC": 4, - "Structural Magnitude": 5.14, - "Control Flow Ratio": "100.0%", + "Total LOC": 76, + "Coding LOC": 46, + "Documentation LOC": 29, + "Structural Magnitude": 13.42, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.406 + "Raw Cognitive Density": 0.37 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "20.18%", - "Error & Exception Exposure": "75.49%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "12.54%", + "Error & Exception Exposure": "95.94%", + "Tech Debt Exposure": "99.88%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "95.76%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.29%", + "Documentation Exposure": "20.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "FileInputStream", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "ASM1", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 14 + "Start Line": 36, + "End Line": 47 + }, + { + "Function Name": "EXECUTE", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 64, + "End Line": 74 + }, + { + "Function Name": "LKED", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 60 + }, + { + "Function Name": "DELETE", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 32 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 33, + "Function Parameters": 1, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "High-Risk Execution Commands": 4, + "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 4, - "Global State Dependencies": 7, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, @@ -871728,7 +871651,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871741,7 +871664,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 19, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871758,15 +871681,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, - "Design Camel Case": 2, - "Design Snake Case": 3, + "Core Var Decl": 40, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 40, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871783,36 +871706,48 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 4, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 11, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&HLQ..SAMPLE.ASM(ASAM1)", + "&HLQ..SAMPLE.ASM.FILEIN", + "&HLQ..SAMPLE.ASM.FILEOUT", + "&HLQ..SAMPLE.ASMCOPY", + "&HLQ..SAMPLE.ASMLOAD", + "&HLQ..SAMPLE.ASMOBJ", + "&HLQ..SAMPLE.ASMOBJ(ASAM1)", + "&LINKLIB", + "&MACLIB", + "&MODGEN", + "&SCEEMAC" + ] }, - "groovy/godot_android_gradle/java_settings.gradle": { + "jcl/zopeneditor-sample/RUNPSAM1.jcl": { "1. Artifact Identity": { - "Filename": "java_settings.gradle", - "Path": "groovy/godot_android_gradle/java_settings.gradle", - "Language": "Groovy", + "Filename": "RUNPSAM1.jcl", + "Path": "jcl/zopeneditor-sample/RUNPSAM1.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .gradle)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -5940.32, - "Y": 100.04, - "Z": -7579.96 + "X": -8426.8, + "Y": -19.6, + "Z": -1456.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871821,46 +871756,97 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 30, - "Coding LOC": 24, - "Documentation LOC": 1, - "Structural Magnitude": 16.48, + "Total LOC": 86, + "Coding LOC": 50, + "Documentation LOC": 35, + "Structural Magnitude": 13.2, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.292 + "Raw Cognitive Density": 0.26 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.78%", - "Error & Exception Exposure": "75.49%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "8.64%", + "Error & Exception Exposure": "96.67%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "75.03%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.67%", + "Documentation Exposure": "17.34%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CMPPSAM1", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 54 + }, + { + "Function Name": "CMPPSAM2", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 41 + }, + { + "Function Name": "LNKPSAM1", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 69 + }, + { + "Function Name": "RUNPSAM1", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 74, + "End Line": 85 + }, + { + "Function Name": "DELETE", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 30 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 4, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Sequential Logic Declarations": 36, + "Function Parameters": 2, + "Function/Method Declarations": 5, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, + "High-Risk Execution Commands": 5, + "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 4, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -871880,12 +871866,12 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 1, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -871898,7 +871884,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -871915,15 +871901,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 43, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 43, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -871940,19 +871926,33 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 5, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&CMPLLIB", + "&HLQ..SAMPLE.PLI(PSAM1)", + "&HLQ..SAMPLE.PLI(PSAM2)", + "&HLQ..SAMPLE.PLI.CUSTFILE", + "&HLQ..SAMPLE.PLI.CUSTRPT", + "&HLQ..SAMPLE.PLI.INCLLIB", + "&HLQ..SAMPLE.PLI.TRANFILE", + "&HLQ..SAMPLE.PLILOAD", + "&HLQ..SAMPLE.PLINC", + "&HLQ..SAMPLE.PLIOBJ", + "&HLQ..SAMPLE.PLIOBJ(PSAM1)", + "&HLQ..SAMPLE.PLIOBJ(PSAM2)", + "&LINKLIB" + ] } } }, @@ -871991,9 +871991,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4689.96, + "X": 4689.51, "Y": -56.97, - "Z": -8158.77 + "Z": -8157.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872148,9 +872148,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4273.98, + "X": 4273.53, "Y": -134.4, - "Z": -7601.04 + "Z": -7600.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872320,9 +872320,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4655.31, + "X": 4654.86, "Y": -19.84, - "Z": -8958.57 + "Z": -8957.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872492,9 +872492,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4506.36, + "X": 4505.91, "Y": -63.53, - "Z": -8045.95 + "Z": -8045.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872649,9 +872649,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4749.84, + "X": 4749.39, "Y": -42.39, - "Z": -8603.59 + "Z": -8602.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872806,9 +872806,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4979.36, + "X": 4978.91, "Y": -165.67, - "Z": -8013.21 + "Z": -8012.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872963,9 +872963,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4111.57, + "X": 4111.12, "Y": -9.17, - "Z": -8430.0 + "Z": -8429.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873131,9 +873131,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4299.26, + "X": 4298.81, "Y": -85.32, - "Z": -8263.5 + "Z": -8262.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873288,9 +873288,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5336.54, + "X": 5336.09, "Y": -155.33, - "Z": -8171.34 + "Z": -8170.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873456,9 +873456,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4503.29, + "X": 4502.84, "Y": -43.71, - "Z": -8777.77 + "Z": -8776.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873624,9 +873624,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5219.56, + "X": 5219.11, "Y": -126.41, - "Z": -8123.46 + "Z": -8122.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873792,9 +873792,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4567.98, + "X": 4567.53, "Y": -72.45, - "Z": -7703.25 + "Z": -7702.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873986,9 +873986,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4172.61, + "X": 4172.16, "Y": -93.82, - "Z": -8114.34 + "Z": -8113.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874157,9 +874157,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4962.73, + "X": 4962.28, "Y": -84.11, - "Z": -8662.19 + "Z": -8661.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874328,9 +874328,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5078.15, + "X": 5077.7, "Y": -65.26, - "Z": -8503.21 + "Z": -8502.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874499,9 +874499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4934.65, + "X": 4934.2, "Y": -166.2, - "Z": -7627.86 + "Z": -7627.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874699,9 +874699,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6610.66, + "X": 6610.06, "Y": 112.82, - "Z": -9067.99 + "Z": -9067.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874856,9 +874856,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6828.66, + "X": 6828.06, "Y": 160.61, - "Z": -8411.48 + "Z": -8410.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875013,9 +875013,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6129.76, + "X": 6129.16, "Y": 252.1, - "Z": -8731.58 + "Z": -8730.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875170,9 +875170,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6531.17, + "X": 6530.57, "Y": 135.41, - "Z": -8734.47 + "Z": -8733.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875478,9 +875478,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6913.07, + "X": 6912.47, "Y": 94.78, - "Z": -8960.84 + "Z": -8960.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875666,9 +875666,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6289.06, + "X": 6288.46, "Y": 231.79, - "Z": -8575.34 + "Z": -8574.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877072,9 +877072,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2658.51, + "X": -2658.39, "Y": 229.77, - "Z": -7977.23 + "Z": -7976.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877229,9 +877229,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2388.8, + "X": -2388.68, "Y": 150.65, - "Z": -8537.33 + "Z": -8536.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877386,9 +877386,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2920.98, + "X": -2920.86, "Y": 150.33, - "Z": -8365.35 + "Z": -8364.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877543,9 +877543,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2177.64, + "X": -2177.51, "Y": 218.44, - "Z": -7770.85 + "Z": -7770.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877700,9 +877700,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2489.28, + "X": -2489.16, "Y": 184.72, - "Z": -8188.84 + "Z": -8188.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879085,9 +879085,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3498.52, + "X": -3498.34, "Y": -20.36, - "Z": -7729.72 + "Z": -7729.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879273,9 +879273,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3283.92, + "X": -3283.74, "Y": 5.06, - "Z": -7692.44 + "Z": -7692.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879488,7 +879488,7 @@ "2. Topological Coordinates": { "X": 177.74, "Y": -187.35, - "Z": -8875.16 + "Z": -8875.03 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -879645,7 +879645,7 @@ "2. Topological Coordinates": { "X": -364.42, "Y": -41.9, - "Z": -8195.86 + "Z": -8195.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879802,7 +879802,7 @@ "2. Topological Coordinates": { "X": -421.14, "Y": -163.63, - "Z": -9130.65 + "Z": -9130.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879970,7 +879970,7 @@ "2. Topological Coordinates": { "X": -203.32, "Y": -73.53, - "Z": -8494.3 + "Z": -8494.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880125,9 +880125,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -302.62, + "X": -302.61, "Y": -26.18, - "Z": -8180.01 + "Z": -8179.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880295,7 +880295,7 @@ "2. Topological Coordinates": { "X": -165.39, "Y": -160.27, - "Z": -8884.84 + "Z": -8884.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880450,9 +880450,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": 43.36, + "X": 43.37, "Y": -67.39, - "Z": -8208.96 + "Z": -8208.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880609,7 +880609,7 @@ "2. Topological Coordinates": { "X": -615.79, "Y": -50.31, - "Z": -8621.97 + "Z": -8621.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880763,7 +880763,7 @@ "Cognitive Load Exposure": "12.92%", "Error & Exception Exposure": "32.78%", "Tech Debt Exposure": "13.96%", - "Testing Exposure": "2.46%", + "Testing Exposure": "2.45%", "API Exposure": "4.4%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -882088,9 +882088,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5853.71, + "X": 5853.3, "Y": -300.32, - "Z": -9989.72 + "Z": -9989.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882256,9 +882256,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5588.74, + "X": 5588.33, "Y": -225.58, - "Z": -9295.9 + "Z": -9295.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882424,9 +882424,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5775.92, + "X": 5775.51, "Y": -210.37, - "Z": -9493.06 + "Z": -9492.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -883599,9 +883599,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": -6094.39, + "X": -6093.81, "Y": -132.9, - "Z": 8165.63 + "Z": 8164.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -883756,9 +883756,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": -5847.42, + "X": -5846.85, "Y": -120.12, - "Z": 7576.81 + "Z": 7576.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -883913,9 +883913,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": -5842.24, + "X": -5841.66, "Y": -124.13, - "Z": 8127.79 + "Z": 8126.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884094,9 +884094,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5793.15, + "X": -5792.46, "Y": -111.32, - "Z": 6069.46 + "Z": 6068.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884262,9 +884262,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5954.23, + "X": -5953.54, "Y": -166.87, - "Z": 6134.17 + "Z": 6133.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884430,9 +884430,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5772.88, + "X": -5772.19, "Y": -124.49, - "Z": 5654.7 + "Z": 5654.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884598,9 +884598,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5567.78, + "X": -5567.1, "Y": -118.84, - "Z": 6110.63 + "Z": 6109.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884766,9 +884766,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6205.3, + "X": -6204.61, "Y": -172.32, - "Z": 5942.15 + "Z": 5941.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884934,9 +884934,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5412.57, + "X": -5411.88, "Y": -47.61, - "Z": 5658.58 + "Z": 5657.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885102,9 +885102,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5948.63, + "X": -5947.95, "Y": -175.59, - "Z": 6280.3 + "Z": 6279.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885270,9 +885270,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6009.54, + "X": -6008.85, "Y": -116.09, - "Z": 5424.59 + "Z": 5423.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885438,9 +885438,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5314.31, + "X": -5313.62, "Y": -65.76, - "Z": 6292.6 + "Z": 6291.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885606,9 +885606,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6321.97, + "X": -6321.28, "Y": -234.68, - "Z": 6281.69 + "Z": 6280.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885774,9 +885774,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5531.81, + "X": -5531.13, "Y": -100.74, - "Z": 5272.89 + "Z": 5272.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -885942,9 +885942,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5603.69, + "X": -5603.0, "Y": -127.02, - "Z": 6530.49 + "Z": 6529.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886110,9 +886110,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6356.01, + "X": -6355.32, "Y": -242.67, - "Z": 5725.31 + "Z": 5724.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886278,9 +886278,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5135.47, + "X": -5134.78, "Y": -75.93, - "Z": 5761.92 + "Z": 5761.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886446,9 +886446,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -6147.47, + "X": -6146.79, "Y": -252.01, - "Z": 6371.43 + "Z": 6370.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -886614,9 +886614,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -5902.73, + "X": -5902.04, "Y": -81.01, - "Z": 5071.97 + "Z": 5071.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888070,9 +888070,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7466.83, + "X": 7466.25, "Y": -115.43, - "Z": -8878.12 + "Z": -8877.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888227,9 +888227,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7479.48, + "X": 7478.9, "Y": -71.41, - "Z": -8731.88 + "Z": -8731.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888384,9 +888384,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7242.9, + "X": 7242.32, "Y": -21.96, - "Z": -8555.96 + "Z": -8555.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888903,9 +888903,9 @@ "Identity Proof": "Single Indicator (Ext: .nix)" }, "2. Topological Coordinates": { - "X": -2125.26, + "X": -2125.23, "Y": 96.0, - "Z": -9095.16 + "Z": -9095.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889060,9 +889060,9 @@ "Identity Proof": "Single Indicator (Ext: .nix)" }, "2. Topological Coordinates": { - "X": -2342.39, + "X": -2342.36, "Y": 86.12, - "Z": -8858.25 + "Z": -8858.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889241,9 +889241,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6653.11, + "X": -7209.73, "Y": -5.53, - "Z": -7251.97 + "Z": 7252.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889398,9 +889398,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6930.94, + "X": -7487.56, "Y": 17.77, - "Z": -7125.62 + "Z": 7379.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889555,9 +889555,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6610.13, + "X": -7166.75, "Y": -57.16, - "Z": -7684.39 + "Z": 6820.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889736,9 +889736,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 7122.14, + "X": -6649.63, "Y": -147.44, - "Z": -5765.29 + "Z": -7316.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889893,9 +889893,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6849.07, + "X": -6922.71, "Y": -198.73, - "Z": -5834.83 + "Z": -7386.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890050,9 +890050,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 7090.3, + "X": -6681.47, "Y": -172.08, - "Z": -6200.62 + "Z": -7752.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890907,9 +890907,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": -773.41, + "X": -773.4, "Y": 92.28, - "Z": -9094.74 + "Z": -9094.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -891064,9 +891064,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": -554.24, + "X": -554.23, "Y": 141.88, - "Z": -9443.23 + "Z": -9443.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -891922,9 +891922,9 @@ "Identity Proof": "Single Indicator (Ext: .csv)" }, "2. Topological Coordinates": { - "X": 1008.53, + "X": 1008.48, "Y": 187.56, - "Z": -9466.48 + "Z": -9465.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -892079,9 +892079,9 @@ "Identity Proof": "Single Indicator (Ext: .tsv)" }, "2. Topological Coordinates": { - "X": 768.38, + "X": 768.32, "Y": 221.85, - "Z": -9346.87 + "Z": -9346.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894894,9 +894894,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6433.08, + "X": 6432.56, "Y": 147.19, - "Z": -9407.46 + "Z": -9406.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -895976,9 +895976,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -9641.86, + "X": -9638.65, "Y": -134.52, - "Z": -1691.25 + "Z": -1690.7 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -896133,9 +896133,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -9831.44, + "X": -9828.23, "Y": -115.04, - "Z": -1320.96 + "Z": -1320.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896290,9 +896290,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -9531.36, + "X": -9528.16, "Y": -116.02, - "Z": -2115.94 + "Z": -2115.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896449,9 +896449,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -9379.02, + "X": -9375.81, "Y": -163.93, - "Z": -1262.7 + "Z": -1262.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896636,9 +896636,9 @@ "Identity Proof": "Single Indicator (Ext: .mlir)" }, "2. Topological Coordinates": { - "X": -6561.01, + "X": -6560.51, "Y": -136.67, - "Z": 8021.81 + "Z": 8021.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896783,24 +896783,24 @@ } }, "jcl/cash-account-cobol": { - "Directory Group Magnitude": 16.82, + "Directory Group Magnitude": 15.76, "File Count": 3, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "4.94%", - "Error & Exception Exposure": "83.59%", - "Tech Debt Exposure": "61.73%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "3.42%", + "Error & Exception Exposure": "78.21%", + "Tech Debt Exposure": "64.41%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "97.78%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.29%", + "Documentation Exposure": "40.99%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -896817,9 +896817,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -7431.87, - "Y": 196.62, - "Z": 7312.07 + "X": 6897.69, + "Y": 196.55, + "Z": -5642.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896829,21 +896829,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 47, - "Coding LOC": 44, - "Documentation LOC": 0, - "Structural Magnitude": 3.98, + "Coding LOC": 41, + "Documentation LOC": 3, + "Structural Magnitude": 3.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.114 + "Raw Cognitive Density": 0.122 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.09%", - "Error & Exception Exposure": "78.0%", + "Cognitive Load Exposure": "5.25%", + "Error & Exception Exposure": "79.05%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -896851,7 +896851,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.23%", + "Documentation Exposure": "38.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -896903,7 +896903,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -896988,9 +896988,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -7205.53, + "X": 7123.35, "Y": 180.8, - "Z": 7078.2 + "Z": -5875.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897000,9 +897000,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 104, - "Coding LOC": 100, - "Documentation LOC": 0, - "Structural Magnitude": 10.9, + "Coding LOC": 83, + "Documentation LOC": 17, + "Structural Magnitude": 9.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -897012,9 +897012,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "82.85%", - "Tech Debt Exposure": "85.2%", - "Testing Exposure": "2.39%", + "Error & Exception Exposure": "64.03%", + "Tech Debt Exposure": "93.22%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -897022,39 +897022,29 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.75%", + "Documentation Exposure": "20.49%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "CRTABS", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 32, + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 36, - "End Line": 67 + "End Line": 62 }, { "Function Name": "CREATE", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 28, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 24, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 8, - "End Line": 35 - }, - { - "Function Name": "CRGRACC", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 68, - "End Line": 86 + "End Line": 31 }, { "Function Name": "CRINDX", @@ -897065,6 +897055,16 @@ "Control Flow Ratio": "0.0%", "Start Line": 87, "End Line": 103 + }, + { + "Function Name": "CRGRACC", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 68, + "End Line": 82 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -897074,9 +897074,9 @@ "Function Parameters": 0, "Function/Method Declarations": 4, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 22, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -897104,7 +897104,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -897188,9 +897188,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -7199.67, - "Y": 196.48, - "Z": 6654.08 + "X": 7129.15, + "Y": 196.53, + "Z": -6299.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897200,29 +897200,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 17, - "Coding LOC": 17, - "Documentation LOC": 0, - "Structural Magnitude": 1.94, + "Coding LOC": 14, + "Documentation LOC": 3, + "Structural Magnitude": 1.88, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.294 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.73%", - "Error & Exception Exposure": "89.93%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "91.55%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.27%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.88%", + "Documentation Exposure": "63.72%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -897274,7 +897274,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -897561,9 +897561,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8013.85, + "X": 8013.2, "Y": -23.25, - "Z": -8118.71 + "Z": -8118.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897923,9 +897923,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -7873.92, + "X": -7873.45, "Y": 219.52, - "Z": 6836.39 + "Z": 6835.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -902393,9 +902393,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2663.74, + "X": 2663.5, "Y": 288.93, - "Z": -9994.05 + "Z": -9993.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902561,9 +902561,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2890.4, + "X": 2890.16, "Y": 208.99, - "Z": -10256.77 + "Z": -10255.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -904352,190 +904352,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -3001.23, + "X": -3001.09, "Y": 56.28, - "Z": -8573.86 - }, - "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 202, - "Coding LOC": 0, - "Documentation LOC": 169, - "Structural Magnitude": 4.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "xml/springboot": { - "Directory Group Magnitude": 4.04, - "File Count": 1, - "Ecosystem Fingerprint (Archetypes)": { - "Static: Literature & Documentation": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "0.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "xml/springboot/LICENSE.txt": { - "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "xml/springboot/LICENSE.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" - }, - "2. Topological Coordinates": { - "X": 8996.92, - "Y": -31.8, - "Z": -2795.07 + "Z": -8573.48 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -904679,101 +904498,90 @@ } } }, - "jcl/cics-java-jcics-samples": { - "Directory Group Magnitude": 3.14, + "xml/springboot": { + "Directory Group Magnitude": 4.04, "File Count": 1, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" + "Static: Literature & Documentation": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "5.96%", - "Error & Exception Exposure": "82.6%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", + "Testing Exposure": "0.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "0.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "48.08%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "jcl/cics-java-jcics-samples/etc_VSAM_DEFVSAM.jcl": { + "xml/springboot/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "etc_VSAM_DEFVSAM.jcl", - "Path": "jcl/cics-java-jcics-samples/etc_VSAM_DEFVSAM.jcl", - "Language": "Jcl", + "Filename": "LICENSE.txt", + "Path": "xml/springboot/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 2459.79, - "Y": -254.89, - "Z": 9660.67 + "X": 8996.92, + "Y": -31.8, + "Z": -2795.07 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 32, - "Documentation LOC": 0, - "Structural Magnitude": 3.14, + "Total LOC": 202, + "Coding LOC": 0, + "Documentation LOC": 169, + "Structural Magnitude": 4.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.156 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.96%", - "Error & Exception Exposure": "82.6%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "48.08%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "DEFINE", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 4, - "End Line": 38 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -904813,7 +904621,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 24, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -904830,11 +904638,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 5, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -904855,7 +904663,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -904906,9 +904714,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -9527.03, + "X": 2509.31, "Y": -179.88, - "Z": 2084.89 + "Z": 9667.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -905073,6 +904881,198 @@ } } }, + "jcl/cics-java-jcics-samples": { + "Directory Group Magnitude": 3.12, + "File Count": 1, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "6.07%", + "Error & Exception Exposure": "83.04%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "48.05%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "jcl/cics-java-jcics-samples/etc_VSAM_DEFVSAM.jcl": { + "1. Artifact Identity": { + "Filename": "etc_VSAM_DEFVSAM.jcl", + "Path": "jcl/cics-java-jcics-samples/etc_VSAM_DEFVSAM.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -9576.5, + "Y": -254.89, + "Z": 2077.6 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 39, + "Coding LOC": 31, + "Documentation LOC": 1, + "Structural Magnitude": 3.12, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.161 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "6.07%", + "Error & Exception Exposure": "83.04%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "48.05%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "DEFINE", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 4, + "End Line": 38 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 24, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 5, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 5, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, "css/threejs_app_ui": { "Directory Group Magnitude": 2.64, "File Count": 3, @@ -906151,9 +906151,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -1605.39, + "X": -1605.37, "Y": 51.68, - "Z": -9507.18 + "Z": -9507.08 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -906877,7 +906877,7 @@ "2. Topological Coordinates": { "X": -21.85, "Y": -201.21, - "Z": -9698.73 + "Z": -9698.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910173,9 +910173,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -1173.22, + "X": -1173.2, "Y": -222.59, - "Z": -9046.63 + "Z": -9046.53 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910330,9 +910330,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -896.66, + "X": -896.64, "Y": -176.94, - "Z": -8684.04 + "Z": -8683.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910498,9 +910498,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1334.93, + "X": -1334.92, "Y": -189.39, - "Z": -8786.02 + "Z": -8785.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910662,9 +910662,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1556.39, + "X": -1556.38, "Y": -224.2, - "Z": -9123.23 + "Z": -9123.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910830,9 +910830,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1134.34, + "X": -1134.33, "Y": -268.52, - "Z": -9187.54 + "Z": -9187.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911199,9 +911199,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -9997.68, + "X": -9994.84, "Y": -95.34, - "Z": -1189.58 + "Z": -1189.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -911380,9 +911380,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 1619.86, + "X": 1619.82, "Y": -182.75, - "Z": -9484.33 + "Z": -9484.09 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -912104,9 +912104,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3524.95, + "X": 3524.65, "Y": -80.09, - "Z": -10039.22 + "Z": -10038.34 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -912828,9 +912828,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5414.16, + "X": 5413.75, "Y": 139.72, - "Z": -9768.65 + "Z": -9767.89 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913190,9 +913190,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5481.08, + "X": -5480.5, "Y": -168.2, - "Z": 8328.35 + "Z": 8327.48 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913552,9 +913552,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7148.97, + "X": 7148.36, "Y": -122.51, - "Z": -8941.86 + "Z": -8941.09 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913914,9 +913914,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7155.07, + "X": -7154.51, "Y": 130.81, - "Z": 7696.63 + "Z": 7696.03 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914638,9 +914638,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -8387.42, + "X": -8386.91, "Y": -88.11, - "Z": 6442.67 + "Z": 6442.28 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916267,9 +916267,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -2452.78, + "X": -2452.67, "Y": -39.53, - "Z": -8722.59 + "Z": -8722.18 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916991,9 +916991,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -1007.11, + "X": -1007.09, "Y": -133.53, - "Z": -9538.76 + "Z": -9538.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917717,7 +917717,7 @@ "2. Topological Coordinates": { "X": 614.43, "Y": -52.05, - "Z": -9641.13 + "Z": -9641.03 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918258,9 +918258,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -10139.02, + "X": -10135.87, "Y": -98.34, - "Z": -1860.91 + "Z": -1860.31 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918439,9 +918439,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2263.8, + "X": 2263.75, "Y": -152.29, - "Z": -9564.23 + "Z": -9563.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919163,9 +919163,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4387.96, + "X": 4387.63, "Y": 27.26, - "Z": -10357.06 + "Z": -10356.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919887,9 +919887,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6286.67, + "X": 6286.25, "Y": -166.67, - "Z": -9827.31 + "Z": -9826.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920249,9 +920249,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6348.39, + "X": -6347.8, "Y": 238.37, - "Z": 8441.76 + "Z": 8440.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920611,9 +920611,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7995.81, + "X": 7995.22, "Y": -156.25, - "Z": -8802.84 + "Z": -8802.19 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921154,9 +921154,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 7638.69, + "X": 7637.83, "Y": 141.51, - "Z": -5896.13 + "Z": -5895.45 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -926038,9 +926038,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4744.11, + "X": 4743.76, "Y": 252.02, - "Z": -9991.27 + "Z": -9990.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -926195,9 +926195,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4486.86, + "X": 4486.51, "Y": 281.75, - "Z": -9893.93 + "Z": -9893.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -926740,9 +926740,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -7740.34, + "X": -7739.17, "Y": -114.88, - "Z": 7431.06 + "Z": 7429.96 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation",