diff --git a/docs/api_rule_contract.md b/docs/api_rule_contract.md index 51a1aceba..5fb09cb94 100644 --- a/docs/api_rule_contract.md +++ b/docs/api_rule_contract.md @@ -45,6 +45,7 @@ not a defect: | `makefile` | `.PHONY`, `export`, the conventional public targets | | `sqlite` | `CREATE [TEMP] VIEW` / `CREATE VIRTUAL TABLE` | | `matlab` | a column-0 `function` declaration (a function file's callable surface) | +| `jcl` | `//name PROC` — a cataloged or in-stream procedure, what `EXEC name` in other members invokes ([#2748](https://github.com/squid-protocol/gitgalaxy/issues/2748)) | `matlab` is the one place where the fallback is knowingly approximate: a `.m` function file publishes only its *leading* function, and local functions after it are file-private, but nothing @@ -91,7 +92,7 @@ untouched. | `html` | 514 | 5 | | `java` | 220 | 12 | | `javascript` | 267 | 12 | -| `jcl` | rule is `None` | n/a | +| `jcl` | `None` → 13 | n/a → 1 (#2748) | | `kotlin` | 17 → 5 | 12 | | `livecode` | 607 | 13 | | `lua` | 288 → 272 | 13 | @@ -161,7 +162,7 @@ answer to "why did a real fix produce no diff" for those two — the strict test (`test_java_api_contract_2730`, `test_csharp_api_contract_2730`) hold the guard in place. **Already inside the contract (23, untouched):** `apex`, `cpp`, `css`, `dockerfile`, -`embedded_python`, `fortran`, `haskell`, `html`, `javascript`, `jcl` (`None`), `livecode`, `m4`, +`embedded_python`, `fortran`, `haskell`, `html`, `javascript`, `jcl` (`None` at the time; #2748 later gave it the PROC statement, fallback family), `livecode`, `m4`, `makefile`, `markdown` (`None`), `python`, `rust`, `scala`, `scheme`, `solidity`, `sqlite`, `tcl`, `yacc`, `zig`. diff --git a/docs/language_status/jcl.md b/docs/language_status/jcl.md index e0cb173be..613a6fa1c 100644 --- a/docs/language_status/jcl.md +++ b/docs/language_status/jcl.md @@ -7,9 +7,9 @@ | **Status** | production | | **Target Version** | IBM z/OS JCL | | **Lexical Family** | line_exclusive (with a dedicated `//*` whole-line stripper — see §10) | -| **Rules Wired** | 16 / 27 | +| **Rules Wired** | 21 / 30 | | **Extraction tests** | 42 | -| **Strict tests** | 65 | +| **Strict tests** | 100 | ## 2. Identification surface @@ -28,18 +28,21 @@ - `class_start`: Matches JCL JOB cards. **Safety & Risk** -- `high_risk_execution`: Matches execution of specific programs via `PGM=`. +- `high_risk_execution`: Matches `PGM=` naming a program whose purpose is to execute **caller-supplied commands** — TSO/E batch (`IKJEFT01`/`IKJEFT1A`/`IKJEFT1B`), the z/OS UNIX launchers (`BPXBATCH`/`BPXBATSL`/`BPXBATA2`/`BPXBATA8`/`AOPBATCH`), the REXX interpreter (`IRXJCL`) and batch `SDSF`. Narrowed by [#2751](https://github.com/squid-protocol/gitgalaxy/issues/2751) from a bare `PGM=`, which counted every step (188 of the corpus's 376 `EXEC` statements: `IEFBR14` 26, compilers and the linker 26, copy/catalog utilities 28) — running a program is what a step *is*, and no other language's rule counts "runs a command". Now 61 hits in 48 files, all `IKJEFT01` on this corpus. - `safety`: Matches `COND=` return-code tests (JCL's step error-handling); the bare bypass forms are excluded by lookahead. Added by [#2610](https://github.com/squid-protocol/gitgalaxy/issues/2610). - `safety_bypasses`: Matches `COND=EVEN` / `COND=ONLY` (run the step despite a prior abend — JCL's native ignore-the-error idiom). The combined form `COND=((4,LT),EVEN)` deliberately counts **both** safety and bypass: it carries a real RC test and a run-after-abend bypass at once. Added by #2610. **Resource Management** - `io`: Matches dataset definitions and I/O routing such as `DSN`, `DSNAME`, `SYSOUT`, `SYSPRINT`, `DISP=`. -- `sync_locks`: Matches `DISP=OLD` / `DISP=MOD` — the dispositions that request an **exclusive system ENQ** on a dataset, z/OS's native serialization idiom (`DISP=SHR` requests shared access and `DISP=NEW` allocates, so neither counts). Added by [#2733](https://github.com/squid-protocol/gitgalaxy/issues/2733). Every hit is also an `io` hit, since `io` counts the bare `DISP=` keyword; that overlap is accepted deliberately because the shape is narrow (48 hits in 15 of the corpus's 186 `.jcl`/`.prc`/`.bms` files, ~9% of its 525 `DISP=` occurrences; 429 of the remaining 477 are `DISP=SHR` and the other 48 allocate — `DISP=(NEW,…)`, or an omitted first positional that defaults to it) and the two meanings genuinely differ, the same way `COND=((4,LT),EVEN)` counts both `safety` and `safety_bypasses`. Contrast §4's `cleanup`, where the overlap would have covered essentially every disposition. +- `cleanup`: Matches `DELETE` as a dataset's **normal-termination** disposition — `DISP=(MOD,DELETE,DELETE)`, `DISP=(OLD,DELETE)`, `DISP=(,DELETE)` — JCL's teardown idiom (`IEFBR14` + `DISP=(MOD,DELETE,DELETE)` is how a batch job deletes a dataset). Added by [#2749](https://github.com/squid-protocol/gitgalaxy/issues/2749), reversing #2610's rejection on the terms #2733 set for `sync_locks`: a narrow subset (36 of the corpus's 533 `DISP=` occurrences, 13 of 186 files) with an accepted, test-pinned overlap — every hit is also an `io` hit, and the OLD/MOD forms are `sync_locks` hits too. The abnormal-termination positional of an allocation (`DISP=(NEW,CATLG,DELETE)`, 12 more) is excluded: a conditional disposition on a *create* is not teardown. +- `sync_locks`: Matches `DISP=OLD` / `DISP=MOD` — the dispositions that request an **exclusive system ENQ** on a dataset, z/OS's native serialization idiom (`DISP=SHR` requests shared access and `DISP=NEW` allocates, so neither counts). Added by [#2733](https://github.com/squid-protocol/gitgalaxy/issues/2733). Every hit is also an `io` hit, since `io` counts the bare `DISP=` keyword; that overlap is accepted deliberately because the shape is narrow (48 hits in 15 of the corpus's 186 `.jcl`/`.prc`/`.bms` files, ~9% of its 525 `DISP=` occurrences; 429 of the remaining 477 are `DISP=SHR` and the other 48 allocate — `DISP=(NEW,…)`, or an omitted first positional that defaults to it) and the two meanings genuinely differ, the same way `COND=((4,LT),EVEN)` counts both `safety` and `safety_bypasses`. #2749 later took the same route for `cleanup`'s DELETE subset. **State Mutation** - `state_mutation`: Matches JCL symbolic variable assignments via `SET`. +- `globals`: Matches the job-scoped declarations — `//JOBLIB DD` (the program search library for every step; its step-scoped twin `STEPLIB` does not count), a `// SET` symbol (readable by every later statement; its scoped twin is a `PROC` parameter) and `// EXPORT SYMLIST=`. Added by [#2750](https://github.com/squid-protocol/gitgalaxy/issues/2750). `SET` is also `state_mutation`, the same dual dockerfile's `ENV` carries; `JOBLIB` is also an `io` hit and a dependency edge, which is right — a JOBLIB is a dependency of every step. 73 hits in 45 corpus files (JOBLIB 32, SET 39, EXPORT 2). **Architecture & Domain Sensors** +- `api`: Matches `//name PROC` — a cataloged or in-stream procedure, the callable surface that `EXEC name` / `EXEC PROC=name` in other members invoke (the [api contract](../api_rule_contract.md)'s fallback family; the call site is a reference and does not count). Added by [#2748](https://github.com/squid-protocol/gitgalaxy/issues/2748). 13 declarations in 13 corpus files, invoked by 185 of its 376 `EXEC` statements. - `import`: Matches JCL includes (`INCLUDE`). - `_dependency_capture`: Captures the `MEMBER=` name for the dependency graph, as well as dataset names in `DD` statements and `JCLLIB` orders. - `ownership`: Matches ownership/maintainer comments like `//* Author:` (counted on the comment stream since #2610 — previously it only worked by accident on the code stream, see §10). @@ -50,17 +53,7 @@ ## 4. What GitGalaxy explicitly does not track -- `api`: None (JCL has no api rule; in practice `api` still appears on scanned JCL via the - orphan-conversion mechanism — see the keyword-rosetta ledger's `api-contextual-baseline-fix`). -- `cleanup`: None — **a deliberate decision, not an oversight** (#2610): the honest JCL cleanup - idiom is `DISP=(...,DELETE)`, but `DISP=` already feeds the `io` rule, so a cleanup rule would - double-count every disposition. Recorded in the keyword-rosetta deviation ledger - (`jcl-2610-rebaseline-residual-morphology`) as intended morphology. #2733 revisited the same - overlap for `sync_locks` and decided the other way — see §3 for why the two dispositions split. -- `globals`: None — JCL has no scoped-vs-global variable distinction (`SET` symbolics are already - `state_mutation`; a `JOBLIB`/`STEPLIB` rule was considered and rejected because those DD - statements would inflate `io` and `dependency_links`). -- `concurrency`: None. +- `concurrency`: None — steps within a job execute strictly sequentially; parallelism lives in JES scheduling, outside the language's own syntax. - `ui_framework`: None. - `closures`: None. - `decorators`: None. @@ -69,6 +62,7 @@ - `scientific`: None. - `reflection_metaprogramming`: None. - `debug_prints`: None. +- `doc`: None — no structured header-comment idiom is attested in the corpus (0 of its 1,610 `//*` lines carry a `Description:`/`Purpose:`-style key; the structured lines are copyright/SPDX banners). `test`: None — no native testing concept (`TYPRUN=SCAN`/`IEBCOMPR` do not appear in real decks either). Both re-checked 2026-09-05. ## 5. Known limitations (accepted, not fixed) @@ -80,10 +74,12 @@ None currently. ([#2415](https://github.com/squid-protocol/gitgalaxy/issues/2415 ## 6. Test depth - **Extraction-gauntlet tests**: 42 cases in `tests/extraction/languages/test_jcl.py` -- **Strict-signature tests**: 80 cases in `tests/extraction/languages/test_jcl_strict.py` +- **Strict-signature tests**: 100 cases in `tests/extraction/languages/test_jcl_strict.py` (51 → 65 with #2610's COND-partition semantics, JES3-guard and ReDoS detonation cases; 65 → 74 with #2732's `dead_code`/`spec_exposure` rules; 74 → 80 with #2733's `sync_locks` - disposition partition, io-overlap pin and ReDoS case) + disposition partition, io-overlap pin and ReDoS case; 80 → 100 with #2748–#2751's `api`, + `cleanup`, `globals` and narrowed `high_risk_execution` — per-rule partitions, overlap pins, + one end-to-end deck through prism + splice, and ReDoS detonations) ## 7. Relevant closed work @@ -256,6 +252,19 @@ decomposed into exactly five causes, each with a different fix path — recorded and the ×3 flux weighting ([#2546](https://github.com/squid-protocol/gitgalaxy/issues/2546)) inflating the cross-language median. No JCL action; re-baselines when those land. +**2026-09-05 revisit (#2748–#2751).** The second-look pass over every non-green rosetta cell +re-read bucket 4's zeros against the live rules and the crucible corpus and found that three of +them were rule gaps after all, plus one over-count: `api` (`//name PROC` — 185 of the corpus's +376 EXEC steps invoke a procedure), `cleanup` (`DISP=(…,DELETE)` — #2610's io-overlap rejection +no longer held once #2733 accepted the same overlap for `sync_locks`), `globals` (JOBLIB vs +STEPLIB, SET vs PROC parameters, EXPORT SYMLIST — the scoped-vs-global distinction bucket 4 said +did not exist) and `high_risk_execution` (a bare `PGM=` counted every step, so the corpus had +been dodging the rule with `EXEC ` steps rather than measuring it). §3/§4 carry the rules +and the reasoning; `doc` and `test` were re-checked and stay `None` with corpus evidence. The +corpus pairing (a PROC wrapper, a `DISP=(OLD,DELETE)` DD that also pays #2742's owed +`DISP=OLD` plant, no new plant for `globals` since `b.jcl`'s two `SET` lines already read 2, +and `PGM=IKJEFT01`/`BPXBATCH` in place of `IEFBR14`) is keyword-rosetta#59. + **Remaining out-of-band** (all accounted, none actionable at the JCL level): the bucket-4 morphology zeros (final disposition is the epic's scoring-side "absent morphology = incomparable" work), the bucket-5 metrics (blocked on #2545/#2546), and the §3 risk-score consequences diff --git a/gitgalaxy/standards/language_standards/languages/jcl.py b/gitgalaxy/standards/language_standards/languages/jcl.py index e7cc3be80..98e039225 100644 --- a/gitgalaxy/standards/language_standards/languages/jcl.py +++ b/gitgalaxy/standards/language_standards/languages/jcl.py @@ -78,8 +78,34 @@ "func_start": re.compile(r"^[ \t]*//([A-Za-z0-9_#$@]*)[ \t]+EXEC\b", re.M | re.I), # Classes/Entities (JOB cards). Same `\s+` -> `[ \t]+` cross-line fix as above. "class_start": re.compile(r"^[ \t]*//([A-Za-z0-9_#$@]+)[ \t]+JOB\b", re.M | re.I), - # Danger (Execution of arbitrary programs) - "high_risk_execution": re.compile(r"\bPGM=[A-Za-z0-9_#$@]+\b", re.I), + # Danger (execution of arbitrary programs). #2751: the rule used to be a + # bare `PGM=`, which counted every step -- running a program + # is what a JCL step IS, so the metric read "how many steps name a + # program" rather than "how many steps execute something arbitrary". + # On the language-crucible corpus that was 188 hits over 376 EXEC + # statements: IKJEFT01 60, IEFBR14 26 (a program that does NOTHING -- + # run only for its DD allocation/deletion side effects), IDCAMS 16, + # compilers and the linker 26, copy utilities 12, application programs + # 38. A compile-link-go job scored three high-risk executions for + # compiling. No other language's high_risk_execution counts "runs a + # command" (shell/dockerfile/python count eval/exec/os.system, not every + # command line), so the same planted intent read differently in JCL. + # Narrowed to the programs whose purpose is to execute CALLER-SUPPLIED + # commands: TSO/E batch (IKJEFT01 and its IKJEFT1A/IKJEFT1B variants, + # which run whatever SYSTSIN carries -- TSO commands, CLISTs, REXX, DB2 + # DSN RUN PROGRAM), the z/OS UNIX shell and program launchers + # (BPXBATCH/BPXBATSL/BPXBATA2/BPXBATA8, AOPBATCH), the REXX + # interpreter (IRXJCL) and batch SDSF (its ISFIN stream issues MVS + # operator commands). Compilers, copy/catalog utilities and IEFBR14 are + # steps, not arbitrary execution; IDCAMS/IEHPROGM/ADRDSSU are + # destructive-capable utilities but execute a fixed command language, + # so they are left out on the same reasoning that keeps `rm` (not + # `rm -rf /`) out of shell's rule. Unanchored like the other operand + # rules: PGM= can sit on a `//` continuation line (the #2482 shape). + "high_risk_execution": re.compile( + r"\bPGM=(?:IKJEFT01|IKJEFT1[AB]|BPXBATCH|BPXBATSL|BPXBATA[28]|AOPBATCH|IRXJCL|SDSF)\b", + re.I, + ), # I/O (Data Set Names and Sysouts) "io": re.compile(r"\b(DSN|DSNAME|SYSOUT|SYSPRINT|DISP=)\b", re.I), # #2610: JCL's error handling is the COND= operand -- a return-code @@ -93,7 +119,21 @@ # 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, + # #2748: a cataloged or in-stream procedure is JCL's callable surface -- + # `//name PROC` declares what `EXEC name` / `EXEC PROC=name` in other + # members invoke, which is the api contract's definition (a declaration + # that makes a named unit visible outside the file it is declared in; + # docs/api_rule_contract.md, fallback family). On the language-crucible + # corpus 185 of the 376 EXEC statements invoke a procedure and 13 + # members declare one (10 of them in the member's first seven lines -- + # the member IS the procedure). Corollary 1 keeps the call site out: + # `EXEC name` is a reference. Name optional like the other statement + # rules (a cataloged PROC statement may be unnamed); `PEND` only closes + # an in-stream proc and is not a second declaration. A PROC that carries + # parameter defaults (`//BATCH PROC MEMBER=`) also matches args' `PROC` + # alternative -- a declaration with its parameter list, the same + # api+args pair every `def f(x)` produces. + "api": re.compile(r"^[ \t]*//([A-Za-z0-9_#$@]*)[ \t]+PROC\b", re.M | re.I), # #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: @@ -146,9 +186,61 @@ # than the line carrying the ddname, the same real-corpus shape the # args rule's #2482 note documents. "sync_locks": re.compile(r"\bDISP=\(?(?:OLD|MOD)\b", re.I), + # #2749: DELETE as a dataset's normal-termination disposition is JCL's + # teardown idiom -- `//S EXEC PGM=IEFBR14` + `DD DSN=X,DISP=(MOD,DELETE, + # DELETE)` is THE way a batch job deletes a dataset (a no-op program run + # purely for the allocation side effect), and `DISP=(OLD,DELETE)` on a + # `&&TEMP` dataset frees it once the step is done. That is what cleanup + # measures through each language's own idiom elsewhere (shell's `rm -f` + # / `trap ... EXIT`, dockerfile's `apt-get clean`, yaml's `docker + # compose down`, #2647). + # #2610 declined this for the `io` overlap; #2733 (PR #2742) reversed + # that posture for the same operand's OLD/MOD subset, and the same + # measurement applies here: on the language-crucible corpus 36 of 533 + # `DISP=` occurrences (13 of 186 files) carry DELETE in the + # normal-termination position. Narrowed to that position deliberately: + # the abnormal-termination positional (`DISP=(NEW,CATLG,DELETE)`, 12 + # more) is a conditional disposition on an ALLOCATION -- the step's + # intent is to create the dataset and keep it, and only discard it if + # the step abends -- so it is excluded, the way `DISP=SHR`/`NEW` stay + # out of sync_locks. `[^,()\n]*` for the status positional accepts the + # omitted form `DISP=(,DELETE)` (a scratch dataset created and dropped + # in one step) and cannot cross a newline or a paren, so the scan is + # bounded to one operand (ReDoS-safe: the class excludes `,`, so the + # comma partitions at exactly one position). + # The overlap is accepted, not avoided, on #2742's terms: every hit is + # also an `io` hit (the DD's `DSN=`; `DISP=(` itself does not match + # io's `\bDISP=\b` -- no word boundary between `=` and `(`), and the + # `(OLD,DELETE)` / `(MOD,DELETE,DELETE)` forms are also sync_locks hits, + # because they hold an exclusive ENQ on the dataset they then drop. + # Pinned by test_jcl_cleanup_overlaps_io_and_sync_locks_by_design. + "cleanup": re.compile(r"\bDISP=\([^,()\n]*,[ \t]*DELETE\b", re.I), "ui_framework": None, "closures": None, - "globals": None, + # #2750: JCL does have a scoped-vs-global distinction, in three places: + # `//JOBLIB DD` is the program search library for EVERY step of the job + # (its step-scoped twin, `//STEPLIB DD`, applies to one step and is not + # counted -- crucible: JOBLIB in 32 files, STEPLIB 70 lines in 59); a + # `// SET SYM=value` symbol is readable by every later statement in the + # job (its scoped twin is a `PROC` parameter -- SET 39 lines in 12 + # files); `// EXPORT SYMLIST=` makes symbols visible inside in-stream + # data (2). That is the global-vs-local pair globals measures elsewhere + # (a python module-level name vs a def-local, dockerfile's image-wide + # `ENV` vs a RUN-local export, yaml's `${{ env.X }}`). + # SET is also `state_mutation`, and that is dockerfile's `ENV` shape + # exactly -- dual globals + state_mutation, ledgered in the rosetta + # corpus as batch4-dual-keyword-overlaps: a declaration that creates a + # job-wide symbol is both the creation of global state and a mutation + # of it. JOBLIB's DD line is also an `io` hit (its DSN) and a + # `_dependency_capture` edge, which is right -- a JOBLIB is a dependency + # of every step. Same anchoring as state_mutation (a real statement + # line, never inline SYSIN payload); the JOBLIB alternative is named + # exactly so a `//JOBLIBX` or `//SYSPROC` ddname cannot match. + "globals": re.compile( + r"^[ \t]*//JOBLIB[ \t]+DD\b" + r"|^[ \t]*//[A-Za-z0-9_#$@]*[ \t]+(?:SET[ \t]+[A-Za-z0-9_#$@]+=|EXPORT[ \t]+SYMLIST\b)", + re.M | re.I, + ), "decorators": None, "generics": None, "comprehensions": None, diff --git a/tests/extraction/languages/test_jcl_strict.py b/tests/extraction/languages/test_jcl_strict.py index cb8d94440..d3dc22674 100644 --- a/tests/extraction/languages/test_jcl_strict.py +++ b/tests/extraction/languages/test_jcl_strict.py @@ -33,7 +33,7 @@ ("structural_boundaries", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR", "//STEP1 EXEC PGM=IEFBR14"), ("func_start", "//STEP1 EXEC PGM=IEFBR14", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), ("class_start", "//MYJOB JOB (ACCT),'PROGRAMMER'", "//STEP1 EXEC PGM=IEFBR14"), - ("high_risk_execution", "//STEP1 EXEC PGM=IEFBR14", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), + ("high_risk_execution", "//STEP1 EXEC PGM=IKJEFT01,DYNAMNBR=20", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), ("io", "//SYSPRINT DD SYSOUT=*", "//STEP1 EXEC PGM=IEFBR14"), ("state_mutation", "// SET SYMVAR=VALUE", "//STEP1 EXEC PGM=IEFBR14"), ("import", "// INCLUDE MEMBER=STDPROC1", "//STEP1 EXEC PGM=IEFBR14"), @@ -109,11 +109,39 @@ # #2733: sync_locks = the exclusive-ENQ dispositions. DISP=SHR (shared # access, the default request) and DISP=NEW (allocation) are excluded. ("sync_locks", "//SYSLIN DD DISP=OLD,DSN=HLQ.SAMPLE.OBJ(SAM1)", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), - ("sync_locks", "//DD1 DD DSN=HLQ.CUSTRPT,DISP=(MOD,DELETE,DELETE),", "//SYSUT2 DD DISP=(NEW,CATLG),DSN=HLQ.OUT"), + ( + "sync_locks", + "//DD1 DD DSN=HLQ.CUSTRPT,DISP=(MOD,DELETE,DELETE),", + "//SYSUT2 DD DISP=(NEW,CATLG),DSN=HLQ.OUT", + ), ("sync_locks", "//SYSLIN DD DSNAME=&&LOADSET,DISP=(OLD,DELETE)", "//S1 EXEC PGM=IEBGENER,PARM='OLDMODE'"), # #2732: spec_exposure = the generic traceability tag, `//*`-anchored ("spec_exposure", "//* [SPEC-4412] see the change request", "//* nothing traceable here"), ("spec_exposure", "//* raised under [audit] last quarter", "//* the behaviour is [specified] upstream"), + # #2748: api = the PROC statement (the callable surface `EXEC name` invokes) + ("api", "//IGYWCLG PROC LNGPRFX='IGY630',LIBPRFX='CEE',SRC=COBOL", "//CBL0001 EXEC IGYWCLG"), + ("api", "//DB2JCL PROC", "//STEP1 EXEC PROC=DB2JCL"), + ("api", "// PROC", "//SYSPROC DD DSN=SYS1.SYSPROC,DISP=SHR"), + # #2749: cleanup = DELETE as the normal-termination disposition + ( + "cleanup", + "//DD1 DD DSN=HLQ.CUSTRPT,DISP=(MOD,DELETE,DELETE),", + "//SYSUT2 DD DISP=(NEW,CATLG,DELETE),DSN=HLQ.OUT", + ), + ("cleanup", "//SYSLIN DD DISP=(OLD,DELETE),DSN=&&LOADSET", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), + ( + "cleanup", + "//TEMP DD DISP=(,DELETE),UNIT=SYSDA,SPACE=(TRK,1)", + "//SYSIN DD *\n DELETE HLQ.OLD.CLUSTER CLUSTER", + ), + # #2750: globals = the job-scoped declarations (JOBLIB, SET, EXPORT SYMLIST) + ("globals", "//JOBLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR", "//STEPLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR"), + ("globals", "// SET HLQ='IBMUSER' *TSO USER ID", "//IGYWCLG PROC LNGPRFX='IGY630'"), + ("globals", "// EXPORT SYMLIST=*", "//JOBLIBX DD DSN=MY.LOAD,DISP=SHR"), + # #2751: high_risk_execution = the command executors only, not every PGM= + ("high_risk_execution", "//GRANT EXEC PGM=IKJEFT01,DYNAMNBR=20", "//STEP1 EXEC PGM=IEFBR14"), + ("high_risk_execution", "//SH EXEC PGM=BPXBATCH,PARM='SH ls /tmp'", "//COBOL EXEC PGM=IGYCRCTL,REGION=0M"), + ("high_risk_execution", "//REXX EXEC PGM=IRXJCL,PARM='MYEXEC'", "//DEL EXEC PGM=IDCAMS"), ] @@ -503,6 +531,286 @@ def test_jcl_new_comment_rules_redos_immunity(): assert JCL_RULES["spec_exposure"].search("//* [SPEC-4412] traceable") +def test_jcl_api_proc_declaration_not_the_call_site(): + """ + #2748: `//name PROC` is JCL's callable surface -- what `EXEC name` and + `EXEC PROC=name` in other members invoke -- so it is the api rule under + the #2730 contract's fallback family. Corollary 1 (a reference is not a + declaration) is the substance: the call sites must stay out, and so must + every other statement that merely contains the letters PROC. + """ + api = JCL_RULES["api"] + assert api is not None, "jcl's api rule is None again (#2748)" + + for declaration, name in ( + ("//IGYWCLG PROC LNGPRFX='IGY630',LIBPRFX='CEE',SRC=COBOL", "IGYWCLG"), + ("//BATCH PROC MEMBER=", "BATCH"), + ("//DB2JCL PROC ", "DB2JCL"), + ("//COMPROC PROC", "COMPROC"), + ("// PROC", ""), # a cataloged PROC statement may be unnamed + ("//$PROC#@ PROC A=1", "$PROC#@"), + ): + m = api.search(declaration) + assert m, f"missed a procedure declaration: {declaration!r}" + assert m.group(1) == name + + for reference_or_lookalike in ( + "//CBL0001 EXEC IGYWCLG", # the call site + "//STEP1 EXEC PROC=DB2JCL", # the explicit call-site form + "//SYSPROC DD DSN=SYS1.SYSPROC,DISP=SHR", # a ddname ending in PROC + "//PROCLIB DD DSN=SYS1.PROCLIB,DISP=SHR", # a ddname starting with PROC + "// PEND", # closes an in-stream proc; not a second declaration + "// PROCESS", # keyword prefix + "//* PROC statements are documented in the runbook", # a comment + "PROC", # bare token, no statement prefix + ): + assert not api.search(reference_or_lookalike), f"false positive: {reference_or_lookalike!r}" + + # One declaration, one hit, however many parameters it carries across + # continuation lines. + multi = ( + "//DSNUPROC PROC LIB='DSNC10.SDSNLOAD',SYSTEM=DBCG,\n// UID='',UTPROC=''\n//DSNUPROC EXEC PGM=DSNUTILB" + ) + assert len(api.findall(multi)) == 1 + + +def test_jcl_cleanup_only_the_normal_termination_delete(): + """ + #2749: DELETE as a dataset's normal-termination disposition is JCL's + teardown idiom (IEFBR14 + DISP=(MOD,DELETE,DELETE) is how a batch job + deletes a dataset). The rule is deliberately narrower than "DELETE appears + in a DISP=": the abnormal-termination positional of an allocation, + `DISP=(NEW,CATLG,DELETE)`, is a conditional disposition on a CREATE and + stays out, the way DISP=SHR/NEW stay out of sync_locks (#2733). As there, + the exclusions are the design, so assert them directly. + """ + cleanup = JCL_RULES["cleanup"] + assert cleanup is not None, "jcl's cleanup rule is None again (#2749)" + + for teardown in ( + "//DD1 DD DSN=&HLQ..SAMPLE.CUSTRPT,DISP=(MOD,DELETE,DELETE),", + "//SYSLIN DD DISP=(OLD,DELETE),DSN=&&LOADSET", + "//SYSIN DD DSN=&&TEMPM,DISP=(OLD,DELETE)", + "//TEMP DD DISP=(,DELETE),UNIT=SYSDA,SPACE=(TRK,1)", # omitted status = NEW, scratch dataset + "//X DD DISP=( OLD , DELETE )", # blank-padded positionals + ): + assert cleanup.search(teardown), f"missed a teardown disposition: {teardown!r}" + + for not_teardown in ( + "//SYSUT2 DD DISP=(NEW,CATLG,DELETE),DSN=HLQ.OUT", # abend-only DELETE on an allocation + "//SYSUT2 DD DISP=(NEW,KEEP,DELETE),DSN=HLQ.OUT", + "//SYSUT3 DD DISP=(,PASS),UNIT=SYSDA", + "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR", + "//SYSUT1 DD DISP=(OLD,KEEP),DSN=HLQ.KEEP", + "//SYSUT1 DD DISP=OLD,DSN=HLQ.DELETE.ME", # DELETE in a dataset name + "//S1 EXEC PGM=IDCAMS,PARM='DELETE'", # a PARM value + "//SYSIN DD *\n DELETE HLQ.OLD.CLUSTER CLUSTER\n/*", # IDCAMS command in SYSIN payload + "//X DD DISPOSITION=(OLD,DELETE)", + ): + assert not cleanup.search(not_teardown), f"counted a non-teardown: {not_teardown!r}" + + # Operand-anchored, not line-anchored: DISP= routinely sits on a `//` + # continuation line (the #2482 shape), as io/sync_locks already assume. + continuation = "//SYSUT1 DD DSN=HLQ.WORK,\n// DISP=(MOD,DELETE,DELETE),\n// UNIT=SYSDA" + assert cleanup.search(continuation) + + # The status positional cannot cross a paren or a newline: a DELETE in the + # NEXT statement's DISP= is not this statement's disposition. + two_statements = "//A DD DISP=(NEW,CATLG),DSN=HLQ.A\n//B DD DISP=(OLD,DELETE),DSN=HLQ.B" + assert len(cleanup.findall(two_statements)) == 1 + + +def test_jcl_cleanup_overlaps_io_and_sync_locks_by_design(): + """ + #2749: the overlap #2610 declined is accepted on #2742's terms -- a narrow, + semantically distinct subset of an operand io already counts. Every + cleanup hit is also an `io` hit (the DD's DSN=), and the OLD/MOD forms are + also `sync_locks` hits: the step holds an exclusive ENQ on the dataset it + then drops. Pin all three so a later change re-makes the decision rather + than drifting. + """ + cleanup, io, sync_locks = JCL_RULES["cleanup"], JCL_RULES["io"], JCL_RULES["sync_locks"] + + exclusive_then_dropped = "//SYSLIN DD DISP=(OLD,DELETE),DSN=&&LOADSET" + assert cleanup.search(exclusive_then_dropped) + assert io.search(exclusive_then_dropped) + assert sync_locks.search(exclusive_then_dropped) + + # ...and the converse does not hold in either direction. + shared = "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR" + assert io.search(shared) and not cleanup.search(shared) + held_and_kept = "//SYSUT1 DD DISP=(OLD,KEEP),DSN=HLQ.KEEP" + assert sync_locks.search(held_and_kept) and not cleanup.search(held_and_kept) + + +def test_jcl_globals_job_scoped_declarations(): + """ + #2750: JCL's scoped-vs-global distinction is JOBLIB (every step) vs STEPLIB + (one step), a SET symbol (every later statement) vs a PROC parameter (the + procedure), and EXPORT SYMLIST (symbols reaching in-stream data). The rule + counts the job-scoped side of each pair and nothing else -- STEPLIB is the + negative that matters, and `SET` must stay statement-anchored so an inline + SYSIN payload containing "SET X=1" does not count (the state_mutation + precedent). + """ + globals_ = JCL_RULES["globals"] + assert globals_ is not None, "jcl's globals rule is None again (#2750)" + + for job_scoped in ( + "//JOBLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR", + "//JOBLIB DD DISP=SHR,DSN=DSNC10.SDSNLOAD", + "// SET HLQ='IBMUSER' *TSO USER ID", + "// SET DB2HLQ=@DB2_HLQ@", + "//SET1 SET COUNTER=1", + "// EXPORT SYMLIST=*", + "// EXPORT SYMLIST=(HLQ,DB2HLQ)", + ): + assert globals_.search(job_scoped), f"missed a job-scoped declaration: {job_scoped!r}" + + for step_scoped_or_lookalike in ( + "//STEPLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR", # step-scoped twin + "// DD DSN=CEE.SCEERUN,DISP=SHR", # a JOBLIB concatenation line is not a second JOBLIB + "//JOBLIBX DD DSN=MY.LOAD,DISP=SHR", # ddname merely starting with JOBLIB + "//JOBLIB DISP=SHR", # not a DD statement + "//IGYWCLG PROC LNGPRFX='IGY630'", # a PROC parameter is the scoped twin of SET + "//SYSIN DD *\nSET X=1\n/*", # payload, not a statement + "//S1 EXEC PGM=X,PARM='SET A=1'", + "// SETX A=1", + "// EXPORT", # EXPORT without SYMLIST is not a JCL statement + "//* SET THE RETURN CODE TO CONTROL IF CICS SHOULD BE", + ): + assert not globals_.search(step_scoped_or_lookalike), f"false positive: {step_scoped_or_lookalike!r}" + + +def test_jcl_globals_set_is_also_state_mutation_by_design(): + """ + #2750: a `// SET` creates a job-wide symbol AND assigns it, so it is both + `globals` and `state_mutation` -- dockerfile's `ENV` shape exactly (dual + globals + state_mutation, ledgered in the rosetta corpus). JOBLIB is also + an `io` hit through its DSN=, which is correct: a JOBLIB is a dependency + of every step. Pin both so the overlap stays a decision. + """ + globals_, state, io = JCL_RULES["globals"], JCL_RULES["state_mutation"], JCL_RULES["io"] + assert globals_.search("// SET HLQ='IBMUSER'") and state.search("// SET HLQ='IBMUSER'") + assert globals_.search("//JOBLIB DD DSN=X.LOAD,DISP=SHR") and io.search("//JOBLIB DD DSN=X.LOAD,DISP=SHR") + # EXPORT SYMLIST is the one alternative with no overlap at all. + assert globals_.search("// EXPORT SYMLIST=*") and not state.search("// EXPORT SYMLIST=*") + + +def test_jcl_high_risk_execution_counts_executors_not_every_step(): + """ + #2751: the rule was a bare `PGM=`, which counted every step -- + running a program is what a JCL step IS -- so a compile-link-go job scored + three high-risk executions for compiling and IEFBR14 (a program that does + nothing) counted the same as a TSO batch step that executes whatever + SYSTSIN carries. Narrowed to the programs whose purpose is to execute + caller-supplied commands; the negatives are the crucible's most frequent + PGM= values, which are exactly what must NOT count. + """ + danger = JCL_RULES["high_risk_execution"] + + for executor in ( + "//GRANT EXEC PGM=IKJEFT01,DYNAMNBR=20", + "//TSO EXEC PGM=IKJEFT1B", + "//SH EXEC PGM=BPXBATCH,PARM='SH ls /tmp'", + "//SHL EXEC PGM=BPXBATSL", + "//UNIX EXEC PGM=AOPBATCH", + "//REXX EXEC PGM=IRXJCL,PARM='MYEXEC'", + "//OPER EXEC PGM=SDSF", + "//lower exec pgm=ikjeft01", + ): + assert danger.search(executor), f"missed an executor: {executor!r}" + + for a_step_not_an_execution in ( + "//STEP1 EXEC PGM=IEFBR14", # no-op, run for its DD side effects + "//COBOL EXEC PGM=IGYCRCTL,REGION=0M", # compiler + "//LKED EXEC PGM=IEWL", # linker + "//DEL EXEC PGM=IDCAMS", # catalog utility: a fixed command language + "//COPY EXEC PGM=IEBGENER", + "//SORT EXEC PGM=ICEGENER", + "//RUN EXEC PGM=CBL0001", # the job's own application program + "//X EXEC PGM=IKJEFT01X", # not the executor, a longer name + "//X EXEC PGM=MYIKJEFT01", + "//X EXEC PGM=X,PARM='IKJEFT01'", # the name as a PARM value + "//X EXEC IKJEFT01", # a procedure named like the program + ): + assert not danger.search(a_step_not_an_execution), f"counted a step as execution: {a_step_not_an_execution!r}" + + # PGM= on a continuation line (the #2482 shape) still counts. + assert danger.search("//STEP0001 EXEC TIME=1440,REGION=0M,\n// PGM=IKJEFT01") + + +def test_jcl_new_rules_count_through_the_real_pipeline(): + """ + #2748/#2749/#2750/#2751 end to end: the four rules score through + prism + StructuralExtractor.splice, not just as regexes on a string. The + deck is a cut-down real shape -- a cataloged proc header, a JOBLIB, two + SETs, an IEFBR14 delete step, a TSO batch step, and the call site that + invokes the proc -- and the SYSIN payload carries the lookalikes every + rule must ignore. + """ + from gitgalaxy.core.detector import StructuralExtractor + from gitgalaxy.core.prism import Prism + from gitgalaxy.standards.gitgalaxy_config import LEXICAL_FAMILY_HEURISTICS + + sample = ( + "//DB2JCL PROC\n" + "//* SET THE RETURN CODE TO CONTROL IF CICS SHOULD BE\n" + "//JOBLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR\n" + "// DD DSN=CEE.SCEERUN,DISP=SHR\n" + "// SET HLQ='IBMUSER'\n" + "// SET DB2SYS=DBCG\n" + "//DELETE EXEC PGM=IEFBR14\n" + "//DD1 DD DSN=&HLQ..CUSTRPT,DISP=(MOD,DELETE,DELETE),\n" + "// UNIT=SYSDA,SPACE=(CYL,(0))\n" + "//SYSUT2 DD DISP=(NEW,CATLG,DELETE),DSN=&HLQ..OUT\n" + "//GRANT EXEC PGM=IKJEFT01,DYNAMNBR=20\n" + "//SYSTSIN DD *\n" + " DSN SYSTEM(DBCG)\n" + " SET X=1\n" + " DELETE HLQ.OLD.CLUSTER CLUSTER\n" + "/*\n" + "//CALL EXEC DB2JCL\n" + "//STEPLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR\n" + "// PEND\n" + ) + + prism = Prism(LEXICAL_FAMILY_HEURISTICS, LANGUAGE_DEFINITIONS) + streams = prism.split_streams(sample, "jcl") + equations = StructuralExtractor("jcl", LANGUAGE_DEFINITIONS).splice( + streams["code_stream"], streams["comment_stream"], raw_content=sample + )["equations"] + + assert equations.get("api", 0) == 1, "the PROC statement, not the EXEC that calls it" + assert equations.get("cleanup", 0) == 1, "the (MOD,DELETE,DELETE), not the (NEW,CATLG,DELETE)" + assert equations.get("globals", 0) == 3, "JOBLIB + two SETs; not the concatenation, STEPLIB or the SYSIN SET" + assert equations.get("high_risk_execution", 0) == 1, "IKJEFT01 only; IEFBR14 is a step" + + +def test_jcl_new_rules_redos_immunity(): + """ + #2748-#2751: every new alternation is a literal keyword behind a bounded + name/whitespace gap or a single negated class that excludes its own + terminator (`[^,()\\n]*` then `,`), so each quantifier has one landing + site. Hold the line on it with the same detonations the other rules get. + """ + assert_redos_immune(JCL_RULES["api"], "//" + "A" * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["api"], "//" + " " * 50000 + "PROC", timeout_sec=3.0) + assert_redos_immune(JCL_RULES["cleanup"], "DISP=(" + "A" * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["cleanup"], "DISP=(" + ", " * 25000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["cleanup"], "//X DD " + "DISP=(" * 20000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["globals"], "//" + "A" * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["globals"], "//JOBLIB" + " " * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["globals"], "// SET " + "A" * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["high_risk_execution"], "PGM=" + "IKJEFT0" * 10000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["high_risk_execution"], "PGM=IKJEFT01" * 10000, timeout_sec=3.0) + + assert JCL_RULES["api"].search("//DB2JCL PROC") + assert JCL_RULES["cleanup"].search("//SYSLIN DD DISP=(OLD,DELETE),DSN=&&LOADSET") + assert JCL_RULES["globals"].search("//JOBLIB DD DSN=X,DISP=SHR") + assert JCL_RULES["high_risk_execution"].search("//GRANT EXEC PGM=IKJEFT01") + + 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 60679b045..8092df4e3 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": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", - "Analysis ISO Timestamp": "2026-09-05T15:40:44.316547+00:00", - "Total Scan Duration": "26.46 seconds" + "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", + "Analysis ISO Timestamp": "2026-09-05T18:20:50.417381+00:00", + "Total Scan Duration": "60.0 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -237,9 +237,9 @@ }, "health": { "avg_cognitive_load": 22.578, - "avg_safety_score": 45.662, + "avg_safety_score": 43.75, "avg_tech_debt": 29.91, - "avg_documentation": 7.916 + "avg_documentation": 7.984 }, "composition": { "markdown": { @@ -410,7 +410,7 @@ "jcl": { "files": 185, "loc": 5837, - "impact": 903.9400000000007 + "impact": 916.9400000000007 }, "kotlin": { "files": 5, @@ -1152,20 +1152,20 @@ }, "jcl/cics-genapp": { "file_count": 30, - "total_mass": 261.84, + "total_mass": 263.84, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 50.57, + "safety_score": 8.22, "tech_debt": 56.01, - "verification": 2.28, - "api_exposure": 0.0, + "verification": 2.27, + "api_exposure": 0.21, "concurrency": 0.0, "state_flux": 0.34, "dead_code": 0.0, "spec_match": 96.67, "stability": 48.33, "churn": 0.0, - "documentation": 0.0, + "documentation": 0.79, "secrets_risk": 0.0 } }, @@ -5012,7 +5012,7 @@ "total_mass": 15.76, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 71.72, + "safety_score": 46.1, "tech_debt": 53.79, "verification": 2.34, "api_exposure": 0.0, @@ -5028,20 +5028,20 @@ }, "jcl/cics-banking-sample-application-cbsa": { "file_count": 99, - "total_mass": 321.88, + "total_mass": 325.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 45.62, + "safety_score": 30.07, "tech_debt": 47.76, "verification": 2.33, - "api_exposure": 1.3, + "api_exposure": 1.43, "concurrency": 0.0, "state_flux": 1.17, "dead_code": 3.07, "spec_match": 98.99, "stability": 50.0, "churn": 0.0, - "documentation": 5.38, + "documentation": 5.98, "secrets_risk": 0.0 } }, @@ -5050,9 +5050,9 @@ "total_mass": 3.12, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 76.85, + "safety_score": 0.0, "tech_debt": 73.11, - "verification": 2.34, + "verification": 2.33, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, @@ -5066,39 +5066,39 @@ }, "jcl/cobol-programming-course": { "file_count": 43, - "total_mass": 204.5, + "total_mass": 210.5, "avg_exposures": { "cognitive_load": 2.47, - "safety_score": 61.88, + "safety_score": 10.65, "tech_debt": 61.57, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.36, + "api_exposure": 0.49, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 2.19, "secrets_risk": 0.0 } }, "jcl/zopeneditor-sample": { "file_count": 10, - "total_mass": 97.88, + "total_mass": 98.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 79.56, + "safety_score": 57.6, "tech_debt": 79.42, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.35, + "api_exposure": 0.35, "concurrency": 0.0, "state_flux": 38.85, "dead_code": 0.0, "spec_match": 90.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 1.19, "secrets_risk": 0.0 } }, @@ -346598,9 +346598,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.32, + "X": 3101.8, "Y": -96.08, - "Z": -9884.12 + "Z": -9885.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -347512,9 +347512,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.2, + "X": 2747.68, "Y": -174.69, - "Z": -9333.16 + "Z": -9334.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348960,9 +348960,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3072.92, + "X": 3073.4, "Y": -49.48, - "Z": -9615.31 + "Z": -9616.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350692,9 +350692,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3356.44, + "X": 3356.92, "Y": 40.54, - "Z": -9275.17 + "Z": -9276.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350860,9 +350860,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2575.63, + "X": 2576.11, "Y": -244.18, - "Z": -9677.5 + "Z": -9678.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443886,9 +443886,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7379.65, + "X": 7381.92, "Y": 165.91, - "Z": -8428.15 + "Z": -8430.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444689,9 +444689,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6999.03, + "X": 7001.3, "Y": 265.38, - "Z": -7713.08 + "Z": -7715.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445659,9 +445659,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6787.47, + "X": 6789.74, "Y": 225.18, - "Z": -7948.69 + "Z": -7951.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445940,9 +445940,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7824.7, + "X": 7826.97, "Y": 134.51, - "Z": -8173.94 + "Z": -8176.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446212,9 +446212,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7637.84, + "X": 7640.11, "Y": 311.63, - "Z": -7253.28 + "Z": -7255.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446490,9 +446490,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7292.29, + "X": 7294.56, "Y": 257.91, - "Z": -7908.17 + "Z": -7910.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447600,9 +447600,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7201.47, + "X": 7203.75, "Y": 404.61, - "Z": -7208.57 + "Z": -7210.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447991,9 +447991,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.12, + "X": 3754.73, "Y": -127.57, - "Z": -9730.85 + "Z": -9732.2 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -448148,9 +448148,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3527.29, + "X": 3527.89, "Y": -76.36, - "Z": -9338.08 + "Z": -9339.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -449380,9 +449380,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4546.52, + "X": 4547.12, "Y": -154.94, - "Z": -9433.18 + "Z": -9434.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450100,9 +450100,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4000.91, + "X": 4001.51, "Y": -115.21, - "Z": -9116.12 + "Z": -9117.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -451422,9 +451422,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4065.71, + "X": 4066.32, "Y": -150.26, - "Z": -9701.93 + "Z": -9703.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452471,9 +452471,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3853.29, + "X": 3853.89, "Y": -147.74, - "Z": -8519.42 + "Z": -8520.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452843,9 +452843,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3774.4, + "X": 3775.01, "Y": -155.51, - "Z": -8957.33 + "Z": -8958.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454671,9 +454671,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4359.96, + "X": 4360.56, "Y": -127.18, - "Z": -8643.55 + "Z": -8644.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586387,9 +586387,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5190.5, + "X": 5191.95, "Y": 237.38, - "Z": -9063.81 + "Z": -9066.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586544,9 +586544,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4395.86, + "X": 4397.3, "Y": 229.37, - "Z": -9470.98 + "Z": -9473.74 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -586702,9 +586702,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.15, + "X": 4896.59, "Y": 292.43, - "Z": -9843.7 + "Z": -9846.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -588738,9 +588738,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4901.07, + "X": 4902.51, "Y": 202.09, - "Z": -9501.06 + "Z": -9503.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590472,9 +590472,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4599.26, + "X": 4600.71, "Y": 227.35, - "Z": -9001.68 + "Z": -9004.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644335,9 +644335,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3515.9, + "X": 3516.45, "Y": 71.06, - "Z": -8331.43 + "Z": -8332.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644543,9 +644543,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2648.6, + "X": 2649.14, "Y": 152.18, - "Z": -7787.68 + "Z": -7789.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644711,9 +644711,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3252.91, + "X": 3253.45, "Y": 174.96, - "Z": -7676.21 + "Z": -7677.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644868,9 +644868,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3061.92, + "X": 3062.47, "Y": 89.43, - "Z": -8674.58 + "Z": -8676.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645186,9 +645186,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.56, + "X": 2926.11, "Y": 80.1, - "Z": -8860.62 + "Z": -8862.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645354,9 +645354,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3082.82, + "X": 3083.37, "Y": 118.21, - "Z": -8095.17 + "Z": -8096.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645922,9 +645922,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2490.11, + "X": 2490.66, "Y": 140.87, - "Z": -7952.01 + "Z": -7953.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646120,9 +646120,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3742.69, + "X": 3743.24, "Y": 118.51, - "Z": -8297.59 + "Z": -8299.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646308,9 +646308,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2908.16, + "X": 2908.71, "Y": 179.25, - "Z": -7607.1 + "Z": -7608.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646526,9 +646526,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3381.54, + "X": 3382.09, "Y": 110.37, - "Z": -8947.0 + "Z": -8948.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646683,9 +646683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2794.72, + "X": 2795.26, "Y": 125.85, - "Z": -8076.3 + "Z": -8077.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646921,9 +646921,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2773.83, + "X": 2774.37, "Y": 129.36, - "Z": -8574.44 + "Z": -8575.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647149,9 +647149,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2412.33, + "X": 2412.88, "Y": 97.98, - "Z": -8659.68 + "Z": -8661.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647317,9 +647317,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3651.07, + "X": 3651.61, "Y": 99.96, - "Z": -8040.89 + "Z": -8042.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647515,9 +647515,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3334.01, + "X": 3334.56, "Y": 92.83, - "Z": -7742.97 + "Z": -7744.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647683,9 +647683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.46, + "X": 2581.01, "Y": 110.01, - "Z": -8383.3 + "Z": -8384.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647851,9 +647851,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3616.72, + "X": 3617.26, "Y": 137.93, - "Z": -7858.16 + "Z": -7859.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -651812,9 +651812,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5543.46, + "X": 5545.09, "Y": 137.98, - "Z": -9183.57 + "Z": -9186.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -651969,9 +651969,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5619.22, + "X": 5620.86, "Y": 260.73, - "Z": -8065.52 + "Z": -8067.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652133,9 +652133,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5478.25, + "X": 5479.88, "Y": 205.12, - "Z": -8549.89 + "Z": -8552.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652761,9 +652761,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5855.09, + "X": 5856.72, "Y": 149.3, - "Z": -9178.84 + "Z": -9181.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653109,9 +653109,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5304.66, + "X": 5306.29, "Y": 269.32, - "Z": -8739.61 + "Z": -8742.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653367,9 +653367,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5807.85, + "X": 5809.48, "Y": 186.55, - "Z": -8852.28 + "Z": -8854.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653825,9 +653825,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6070.91, + "X": 6072.55, "Y": 99.09, - "Z": -8310.04 + "Z": -8312.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -654113,9 +654113,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6183.94, + "X": 6185.58, "Y": 55.62, - "Z": -8988.36 + "Z": -8990.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732321,9 +732321,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5618.7, + "X": 5620.92, "Y": -266.49, - "Z": -6269.74 + "Z": -6272.8 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -732478,9 +732478,9 @@ "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": 4796.02, + "X": 4798.24, "Y": -119.0, - "Z": -6798.41 + "Z": -6801.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732746,9 +732746,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5016.27, + "X": 5018.5, "Y": -210.24, - "Z": -5888.26 + "Z": -5891.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732905,9 +732905,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4318.96, + "X": 4321.19, "Y": -45.97, - "Z": -6583.66 + "Z": -6586.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733067,9 +733067,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5469.74, + "X": 5471.96, "Y": -135.16, - "Z": -6935.75 + "Z": -6938.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733227,9 +733227,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4459.0, + "X": 4461.22, "Y": 165.94, - "Z": -7444.17 + "Z": -7447.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733384,9 +733384,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5130.05, + "X": 5132.27, "Y": 15.44, - "Z": -7210.8 + "Z": -7213.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733545,9 +733545,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5251.87, + "X": 5254.09, "Y": -40.13, - "Z": -6979.22 + "Z": -6982.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733708,9 +733708,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4557.46, + "X": 4559.68, "Y": 65.17, - "Z": -7024.03 + "Z": -7027.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733869,9 +733869,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4193.16, + "X": 4195.38, "Y": 73.84, - "Z": -6997.01 + "Z": -7000.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734028,9 +734028,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5370.26, + "X": 5372.48, "Y": -264.76, - "Z": -6211.29 + "Z": -6214.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734185,9 +734185,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4025.84, + "X": 4028.06, "Y": -11.64, - "Z": -6430.3 + "Z": -6433.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734342,9 +734342,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4579.71, + "X": 4581.93, "Y": -115.23, - "Z": -6529.55 + "Z": -6532.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734499,9 +734499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4663.69, + "X": 4665.92, "Y": -198.24, - "Z": -6019.58 + "Z": -6022.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734661,9 +734661,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4359.89, + "X": 4362.11, "Y": -229.14, - "Z": -6147.45 + "Z": -6150.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734820,9 +734820,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4130.54, + "X": 4132.76, "Y": -188.39, - "Z": -6122.76 + "Z": -6125.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734979,9 +734979,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5101.42, + "X": 5103.64, "Y": -223.34, - "Z": -6433.75 + "Z": -6436.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735138,9 +735138,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4268.55, + "X": 4270.77, "Y": -112.82, - "Z": -6301.9 + "Z": -6304.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735295,9 +735295,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5412.54, + "X": 5414.76, "Y": -133.35, - "Z": -6434.94 + "Z": -6438.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735454,9 +735454,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4809.51, + "X": 4811.73, "Y": -20.86, - "Z": -7111.88 + "Z": -7114.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735611,9 +735611,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4990.24, + "X": 4992.46, "Y": 96.15, - "Z": -7351.88 + "Z": -7354.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735768,9 +735768,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5642.46, + "X": 5644.68, "Y": -176.74, - "Z": -6543.93 + "Z": -6546.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735925,9 +735925,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5274.56, + "X": 5276.78, "Y": -255.85, - "Z": -5979.01 + "Z": -5982.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736082,9 +736082,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4466.04, + "X": 4468.26, "Y": -266.15, - "Z": -5648.6 + "Z": -5651.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736241,9 +736241,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4739.9, + "X": 4742.12, "Y": 52.17, - "Z": -7333.78 + "Z": -7336.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736400,9 +736400,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5424.34, + "X": 5426.56, "Y": 9.79, - "Z": -7115.05 + "Z": -7118.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736559,9 +736559,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3950.48, + "X": 3952.7, "Y": 80.71, - "Z": -6890.78 + "Z": -6893.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736716,9 +736716,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4814.53, + "X": 4816.75, "Y": -231.16, - "Z": -5913.63 + "Z": -5916.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736875,9 +736875,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4322.66, + "X": 4324.88, "Y": 78.77, - "Z": -7390.11 + "Z": -7393.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737032,9 +737032,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5702.02, + "X": 5704.24, "Y": -20.68, - "Z": -6977.27 + "Z": -6980.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -758533,9 +758533,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3963.52, + "X": 3964.04, "Y": 165.09, - "Z": -10504.2 + "Z": -10505.53 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -758690,9 +758690,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3947.59, + "X": 3948.11, "Y": 184.98, - "Z": -10127.98 + "Z": -10129.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -759055,9 +759055,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3726.94, + "X": 3727.47, "Y": 160.01, - "Z": -9794.37 + "Z": -9795.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793743,24 +793743,24 @@ } }, "jcl/cics-banking-sample-application-cbsa": { - "Directory Group Magnitude": 321.88, + "Directory Group Magnitude": 325.88, "File Count": 99, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "45.62%", + "Error & Exception Exposure": "30.07%", "Tech Debt Exposure": "47.76%", "Testing Exposure": "2.33%", - "API Exposure": "1.3%", + "API Exposure": "1.43%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "1.17%", "Commented Logic Exposure": "3.07%", "Specification Exposure": "98.99%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "5.38%", + "Documentation Exposure": "5.98%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -794290,9 +794290,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 188.46, - "Y": 52.61, - "Z": -1700.58 + "X": 70.11, + "Y": 59.34, + "Z": -2692.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794314,9 +794314,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.5%", + "Error & Exception Exposure": "73.11%", "Tech Debt Exposure": "96.64%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -794368,7 +794368,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 25, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -794451,7 +794451,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -794483,9 +794483,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -193.46, - "Y": 52.39, - "Z": -2438.15 + "X": -194.39, + "Y": 52.41, + "Z": -2438.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794497,7 +794497,7 @@ "Total LOC": 57, "Coding LOC": 52, "Documentation LOC": 4, - "Structural Magnitude": 8.64, + "Structural Magnitude": 9.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794507,17 +794507,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "73.11%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "70.38%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.41%", "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": "0.0%", + "Documentation Exposure": "16.41%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -794551,9 +794551,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, - "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, @@ -794634,7 +794634,7 @@ "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, @@ -797821,7 +797821,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -797948,9 +797948,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -797982,7 +797982,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -798065,7 +798065,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, @@ -798096,9 +798096,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 577.65, - "Y": 58.05, - "Z": -1824.65 + "X": 578.22, + "Y": 58.03, + "Z": -1823.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798110,7 +798110,7 @@ "Total LOC": 59, "Coding LOC": 53, "Documentation LOC": 5, - "Structural Magnitude": 8.66, + "Structural Magnitude": 9.66, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798120,17 +798120,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.84%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "69.04%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.39%", "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": "0.0%", + "Documentation Exposure": "15.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -798164,9 +798164,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, - "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, @@ -798247,7 +798247,7 @@ "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, @@ -798289,9 +798289,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 351.16, + "X": 351.21, "Y": 47.47, - "Z": -2728.78 + "Z": -2729.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798303,7 +798303,7 @@ "Total LOC": 183, "Coding LOC": 108, "Documentation LOC": 74, - "Structural Magnitude": 17.26, + "Structural Magnitude": 18.26, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798313,17 +798313,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "63.7%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "86.97%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "2.66%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "26.25%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -798407,9 +798407,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 115, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 4, "Structured Documentation Blocks": 0, @@ -798490,7 +798490,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 7, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800345,7 +800345,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -800472,9 +800472,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -800516,7 +800516,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -800599,7 +800599,7 @@ "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, @@ -800697,7 +800697,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -800868,7 +800868,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -801039,7 +801039,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -801166,9 +801166,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801210,7 +801210,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -801293,7 +801293,7 @@ "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, @@ -801347,9 +801347,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801381,7 +801381,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801464,7 +801464,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, @@ -801517,9 +801517,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801551,7 +801551,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801634,7 +801634,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, @@ -801687,9 +801687,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801721,7 +801721,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801804,7 +801804,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, @@ -801857,9 +801857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801891,7 +801891,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801974,7 +801974,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, @@ -802027,9 +802027,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802071,7 +802071,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802154,7 +802154,7 @@ "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, @@ -802208,9 +802208,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802242,7 +802242,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -802325,7 +802325,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, @@ -802378,9 +802378,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802412,7 +802412,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -802495,7 +802495,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, @@ -802548,9 +802548,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802592,7 +802592,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802675,7 +802675,7 @@ "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, @@ -802729,9 +802729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802773,7 +802773,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802856,7 +802856,7 @@ "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, @@ -802910,9 +802910,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802954,7 +802954,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -803037,7 +803037,7 @@ "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, @@ -803091,9 +803091,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "78.34%", + "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "16.8%", @@ -803125,7 +803125,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 1, @@ -803135,7 +803135,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803317,7 +803317,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803488,7 +803488,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803659,7 +803659,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803830,7 +803830,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804001,7 +804001,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804172,7 +804172,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804343,7 +804343,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804514,7 +804514,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804685,7 +804685,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804866,7 +804866,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805209,7 +805209,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 9, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805719,7 +805719,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805890,7 +805890,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806061,7 +806061,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806232,7 +806232,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806403,7 +806403,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806574,7 +806574,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806745,7 +806745,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806916,7 +806916,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807087,7 +807087,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807258,7 +807258,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807429,7 +807429,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807600,7 +807600,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807771,7 +807771,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807942,7 +807942,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -809139,7 +809139,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -809243,9 +809243,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 55.05, - "Y": 60.88, - "Z": -2833.53 + "X": 173.12, + "Y": 54.15, + "Z": -1841.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809257,7 +809257,7 @@ "Total LOC": 50, "Coding LOC": 43, "Documentation LOC": 6, - "Structural Magnitude": 7.46, + "Structural Magnitude": 8.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809267,17 +809267,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.41%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "15.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -809331,9 +809331,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 28, - "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, @@ -809367,7 +809367,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -809414,7 +809414,7 @@ "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, @@ -809639,9 +809639,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809673,7 +809673,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -809756,7 +809756,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, @@ -809810,9 +809810,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809844,7 +809844,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -809927,7 +809927,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, @@ -827718,7 +827718,7 @@ } }, "jcl/cics-genapp": { - "Directory Group Magnitude": 261.84, + "Directory Group Magnitude": 263.84, "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "96.7%", @@ -827726,17 +827726,17 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "50.57%", + "Error & Exception Exposure": "8.22%", "Tech Debt Exposure": "56.01%", - "Testing Exposure": "2.28%", - "API Exposure": "0.0%", + "Testing Exposure": "2.27%", + "API Exposure": "0.21%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.34%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "96.67%", "Instability Exposure": "48.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "0.79%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -827938,9 +827938,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.04%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "98.89%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828022,7 +828022,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828105,7 +828105,7 @@ "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, @@ -828156,9 +828156,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.68%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828220,7 +828220,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 34, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828256,7 +828256,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -828303,7 +828303,7 @@ "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, @@ -828357,7 +828357,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "21.39%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", @@ -828391,7 +828391,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828474,7 +828474,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, @@ -828525,7 +828525,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "58.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "15.03%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828559,7 +828559,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828642,7 +828642,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, @@ -828693,7 +828693,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "57.24%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "13.62%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828727,7 +828727,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828810,7 +828810,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, @@ -828861,9 +828861,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828895,7 +828895,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828978,7 +828978,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, @@ -829029,9 +829029,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -829063,7 +829063,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -829146,7 +829146,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, @@ -829173,9 +829173,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4637.53, - "Y": 158.42, - "Z": 5415.23 + "X": -4637.69, + "Y": 158.43, + "Z": 5415.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829187,7 +829187,7 @@ "Total LOC": 114, "Coding LOC": 96, "Documentation LOC": 18, - "Structural Magnitude": 42.92, + "Structural Magnitude": 43.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829197,17 +829197,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.65%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.58%", - "API Exposure": "0.0%", + "Testing Exposure": "2.57%", + "API Exposure": "2.92%", "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": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829561,9 +829561,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 49, - "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, @@ -829597,7 +829597,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -829644,7 +829644,7 @@ "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, @@ -829739,7 +829739,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830165,7 +830165,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830333,7 +830333,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830457,9 +830457,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830511,7 +830511,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830594,7 +830594,7 @@ "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, @@ -830645,9 +830645,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830689,7 +830689,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830772,7 +830772,7 @@ "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, @@ -830823,9 +830823,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830857,7 +830857,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 13, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830940,7 +830940,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, @@ -830991,9 +830991,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831025,7 +831025,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831108,7 +831108,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, @@ -831135,9 +831135,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4336.2, + "X": -4336.17, "Y": 160.29, - "Z": 4559.97 + "Z": 4559.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831149,7 +831149,7 @@ "Total LOC": 39, "Coding LOC": 35, "Documentation LOC": 4, - "Structural Magnitude": 26.3, + "Structural Magnitude": 27.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -831159,17 +831159,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.66%", - "API Exposure": "0.0%", + "Testing Exposure": "2.64%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -831413,9 +831413,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "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, @@ -831496,7 +831496,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, @@ -831547,9 +831547,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.36%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831581,7 +831581,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831664,7 +831664,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, @@ -831715,9 +831715,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831749,7 +831749,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831832,7 +831832,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, @@ -831883,9 +831883,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831917,7 +831917,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832000,7 +832000,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, @@ -832051,9 +832051,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "66.2%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "30.29%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -832085,7 +832085,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832168,7 +832168,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, @@ -844106,9 +844106,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5988.55, + "X": 5990.87, "Y": -237.07, - "Z": -7860.94 + "Z": -7863.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844263,9 +844263,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6717.43, + "X": 6719.75, "Y": -220.86, - "Z": -7446.85 + "Z": -7449.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844420,9 +844420,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5655.86, + "X": 5658.18, "Y": -230.93, - "Z": -7304.03 + "Z": -7306.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844577,9 +844577,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5597.39, + "X": 5599.71, "Y": -231.03, - "Z": -7701.48 + "Z": -7704.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844745,9 +844745,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6068.24, + "X": 6070.56, "Y": -193.38, - "Z": -7168.45 + "Z": -7171.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844902,9 +844902,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6915.45, + "X": 6917.77, "Y": -200.35, - "Z": -7587.29 + "Z": -7590.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845070,9 +845070,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6233.35, + "X": 6235.67, "Y": -189.0, - "Z": -7906.75 + "Z": -7909.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845227,9 +845227,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5983.26, + "X": 5985.58, "Y": -240.46, - "Z": -7404.85 + "Z": -7407.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845384,9 +845384,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6231.66, + "X": 6233.98, "Y": -208.54, - "Z": -7522.33 + "Z": -7525.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845541,9 +845541,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5776.22, + "X": 5778.53, "Y": -209.72, - "Z": -7602.48 + "Z": -7605.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845698,9 +845698,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6470.88, + "X": 6473.2, "Y": -203.73, - "Z": -7067.52 + "Z": -7070.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845855,9 +845855,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6623.41, + "X": 6625.73, "Y": -223.68, - "Z": -7947.86 + "Z": -7950.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846012,9 +846012,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6456.61, + "X": 6458.93, "Y": -203.78, - "Z": -8172.85 + "Z": -8175.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846190,9 +846190,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5832.5, + "X": 5834.82, "Y": -185.31, - "Z": -6885.37 + "Z": -6888.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846358,9 +846358,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6393.56, + "X": 6395.88, "Y": -205.22, - "Z": -6770.06 + "Z": -6772.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853267,24 +853267,24 @@ } }, "jcl/cobol-programming-course": { - "Directory Group Magnitude": 204.5, + "Directory Group Magnitude": 210.5, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "2.47%", - "Error & Exception Exposure": "61.88%", + "Error & Exception Exposure": "10.65%", "Tech Debt Exposure": "61.57%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "0.49%", "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": "0.0%", + "Documentation Exposure": "2.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -853301,9 +853301,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3457.91, - "Y": -255.4, - "Z": -6219.95 + "X": 2779.65, + "Y": -230.33, + "Z": -6611.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853325,9 +853325,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853369,7 +853369,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853452,7 +853452,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, @@ -853481,9 +853481,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3086.08, - "Y": -336.99, - "Z": -5892.34 + "X": 3086.21, + "Y": -337.15, + "Z": -5892.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853505,9 +853505,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853549,7 +853549,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853632,7 +853632,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, @@ -853662,9 +853662,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2960.33, - "Y": -126.12, - "Z": -6759.13 + "X": 2960.31, + "Y": -126.02, + "Z": -6760.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853686,9 +853686,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853730,7 +853730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853813,7 +853813,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, @@ -853843,9 +853843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3714.79, - "Y": -161.91, - "Z": -6217.84 + "X": 3715.71, + "Y": -161.9, + "Z": -6218.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853867,9 +853867,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853911,7 +853911,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853994,7 +853994,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, @@ -854024,9 +854024,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2586.33, - "Y": -308.2, - "Z": -6119.61 + "X": 2586.02, + "Y": -308.31, + "Z": -6119.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854048,9 +854048,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854092,7 +854092,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854175,7 +854175,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, @@ -854205,9 +854205,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3462.11, - "Y": -77.74, - "Z": -7006.69 + "X": 3462.68, + "Y": -77.58, + "Z": -7007.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854229,9 +854229,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854273,7 +854273,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854356,7 +854356,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, @@ -854386,9 +854386,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3406.97, - "Y": -308.71, - "Z": -5923.56 + "X": 3407.47, + "Y": -308.83, + "Z": -5923.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854410,9 +854410,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854454,7 +854454,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854537,7 +854537,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, @@ -854567,9 +854567,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2632.18, - "Y": -208.16, - "Z": -6860.94 + "X": 2631.9, + "Y": -208.14, + "Z": -6861.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854591,9 +854591,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854635,7 +854635,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854718,7 +854718,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, @@ -854748,9 +854748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3823.15, - "Y": -81.1, - "Z": -6557.49 + "X": 3824.09, + "Y": -81.01, + "Z": -6558.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854772,9 +854772,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854816,7 +854816,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854899,7 +854899,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, @@ -854929,9 +854929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2754.45, - "Y": -383.72, - "Z": -5742.93 + "X": 2754.37, + "Y": -383.88, + "Z": -5743.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854953,9 +854953,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854997,7 +854997,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855080,7 +855080,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, @@ -855110,9 +855110,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3032.66, - "Y": -3.37, - "Z": -7017.91 + "X": 3032.86, + "Y": -3.24, + "Z": -7019.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855134,9 +855134,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855178,7 +855178,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855261,7 +855261,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, @@ -855291,9 +855291,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3771.39, - "Y": -219.77, - "Z": -6028.76 + "X": 3772.2, + "Y": -219.81, + "Z": -6028.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855315,9 +855315,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855359,7 +855359,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855442,7 +855442,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, @@ -855472,9 +855472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2433.69, - "Y": -308.45, - "Z": -6341.31 + "X": 2433.32, + "Y": -308.52, + "Z": -6341.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855496,9 +855496,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855540,7 +855540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855623,7 +855623,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, @@ -855653,9 +855653,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3389.66, - "Y": 13.35, - "Z": -7120.22 + "X": 3390.09, + "Y": 13.51, + "Z": -7121.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855677,9 +855677,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855721,7 +855721,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855804,7 +855804,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, @@ -855833,9 +855833,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3645.0, - "Y": -310.9, - "Z": -5798.17 + "X": 3645.63, + "Y": -310.99, + "Z": -5798.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855857,9 +855857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855901,7 +855901,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855984,7 +855984,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, @@ -856013,9 +856013,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2987.24, - "Y": -300.21, - "Z": -6351.61 + "X": 3228.94, + "Y": -153.47, + "Z": -6890.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856037,9 +856037,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856091,7 +856091,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 17, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856174,7 +856174,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, @@ -856204,9 +856204,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3733.87, - "Y": -43.57, - "Z": -6872.75 + "X": 3734.63, + "Y": -43.42, + "Z": -6873.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856228,9 +856228,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856272,7 +856272,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856355,7 +856355,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, @@ -856385,9 +856385,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3178.04, - "Y": -395.74, - "Z": -5752.82 + "X": 3178.32, + "Y": -395.89, + "Z": -5752.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856409,9 +856409,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856453,7 +856453,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856536,7 +856536,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, @@ -856566,9 +856566,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2448.14, - "Y": -392.97, - "Z": -5738.23 + "X": 2447.99, + "Y": -393.12, + "Z": -5738.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856734,9 +856734,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2384.44, - "Y": -132.97, - "Z": -7071.75 + "X": 4169.27, + "Y": -84.18, + "Z": -6542.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856904,9 +856904,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3173.69, - "Y": 18.85, - "Z": -7521.37 + "X": 3173.99, + "Y": 19.0, + "Z": -7522.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857072,9 +857072,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3709.34, - "Y": 57.21, - "Z": -7338.69 + "X": 3373.32, + "Y": -372.61, + "Z": -5609.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857242,9 +857242,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3888.3, - "Y": -347.38, - "Z": -5559.8 + "X": 3889.04, + "Y": -347.45, + "Z": -5559.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857410,9 +857410,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3370.11, - "Y": -393.28, - "Z": -5449.68 + "X": 2406.66, + "Y": -130.54, + "Z": -6994.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857580,9 +857580,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3582.05, - "Y": -88.87, - "Z": -6698.42 + "X": 3582.89, + "Y": -88.73, + "Z": -6699.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857604,9 +857604,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857648,7 +857648,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -857731,7 +857731,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, @@ -857761,9 +857761,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2245.73, - "Y": -320.15, - "Z": -6072.44 + "X": 3672.92, + "Y": 49.4, + "Z": -7087.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857929,9 +857929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3183.03, + "X": 3183.32, "Y": -207.64, - "Z": -6293.06 + "Z": -6293.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857943,7 +857943,7 @@ "Total LOC": 61, "Coding LOC": 48, "Documentation LOC": 12, - "Structural Magnitude": 12.76, + "Structural Magnitude": 13.76, "Control Flow Ratio": "13.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -857953,17 +857953,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.47%", - "API Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "3.36%", "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": "0.0%", + "Documentation Exposure": "11.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858007,9 +858007,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 33, - "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, @@ -858043,7 +858043,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -858090,7 +858090,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858128,9 +858128,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4120.28, - "Y": -44.86, - "Z": -6536.23 + "X": 2206.56, + "Y": -296.36, + "Z": -6238.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858142,7 +858142,7 @@ "Total LOC": 18, "Coding LOC": 13, "Documentation LOC": 4, - "Structural Magnitude": 1.86, + "Structural Magnitude": 2.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858155,14 +858155,14 @@ "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858188,7 +858188,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 6, - "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, @@ -858298,9 +858298,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2320.73, - "Y": -192.82, - "Z": -6627.11 + "X": 2320.4, + "Y": -192.83, + "Z": -6627.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858322,9 +858322,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858366,7 +858366,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858449,7 +858449,7 @@ "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, @@ -858482,9 +858482,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4020.52, - "Y": -1.72, - "Z": -7116.97 + "X": 4021.33, + "Y": -1.58, + "Z": -7117.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858506,9 +858506,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858540,7 +858540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858623,7 +858623,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, @@ -858652,8 +858652,8 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2821.44, - "Y": -425.42, + "X": 2821.48, + "Y": -425.58, "Z": -5628.4 }, "3. Architectural Profile": { @@ -858676,9 +858676,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858730,7 +858730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858813,7 +858813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858843,9 +858843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3983.23, - "Y": -259.36, - "Z": -5801.62 + "X": 3986.64, + "Y": -259.43, + "Z": -5800.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858857,7 +858857,7 @@ "Total LOC": 17, "Coding LOC": 15, "Documentation LOC": 1, - "Structural Magnitude": 2.4, + "Structural Magnitude": 3.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858867,17 +858867,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "18.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858901,9 +858901,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "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, @@ -858984,7 +858984,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, @@ -859014,9 +859014,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2668.93, - "Y": -130.61, - "Z": -6847.61 + "X": 2668.79, + "Y": -130.54, + "Z": -6848.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859038,9 +859038,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -859082,7 +859082,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -859165,7 +859165,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, @@ -859195,9 +859195,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3022.77, - "Y": -483.84, - "Z": -5339.65 + "X": 3022.95, + "Y": -484.0, + "Z": -5339.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859363,9 +859363,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2828.11, - "Y": -59.42, - "Z": -7305.03 + "X": 2827.28, + "Y": -58.84, + "Z": -7308.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859377,7 +859377,7 @@ "Total LOC": 30, "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 2.7, + "Structural Magnitude": 3.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859387,17 +859387,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859421,9 +859421,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "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, @@ -859504,7 +859504,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, @@ -859536,9 +859536,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2761.85, - "Y": -178.28, - "Z": -6372.0 + "X": 3441.01, + "Y": -203.6, + "Z": -5980.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859550,7 +859550,7 @@ "Total LOC": 39, "Coding LOC": 34, "Documentation LOC": 4, - "Structural Magnitude": 6.28, + "Structural Magnitude": 7.28, "Control Flow Ratio": "6.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859560,17 +859560,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "3.86%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859604,9 +859604,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, - "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, @@ -859640,7 +859640,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859687,7 +859687,7 @@ "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, @@ -859722,9 +859722,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3176.68, - "Y": -106.18, - "Z": -6612.13 + "X": 2934.87, + "Y": -252.92, + "Z": -6074.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859736,7 +859736,7 @@ "Total LOC": 51, "Coding LOC": 42, "Documentation LOC": 8, - "Structural Magnitude": 10.04, + "Structural Magnitude": 11.04, "Control Flow Ratio": "10.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859746,17 +859746,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.49%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", - "API Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "3.51%", "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": "0.0%", + "Documentation Exposure": "14.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859800,9 +859800,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 26, - "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, @@ -859836,7 +859836,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859883,7 +859883,7 @@ "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, @@ -859918,9 +859918,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4014.75, - "Y": -74.61, - "Z": -6748.23 + "X": 4015.65, + "Y": -74.49, + "Z": -6749.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860098,9 +860098,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2564.41, - "Y": -10.51, - "Z": -7455.15 + "X": 2564.35, + "Y": -10.42, + "Z": -7456.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860266,9 +860266,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4258.91, - "Y": -142.13, - "Z": -6008.03 + "X": 4259.85, + "Y": -142.11, + "Z": -6008.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860434,9 +860434,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2097.76, - "Y": -274.62, - "Z": -6503.5 + "X": 2097.4, + "Y": -274.67, + "Z": -6504.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860602,9 +860602,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4024.6, - "Y": -161.07, - "Z": -6229.93 + "X": 4025.55, + "Y": -161.03, + "Z": -6230.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860626,9 +860626,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860670,7 +860670,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860753,7 +860753,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, @@ -860783,9 +860783,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2459.76, - "Y": -379.41, - "Z": -5954.1 + "X": 2459.52, + "Y": -379.55, + "Z": -5954.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860807,9 +860807,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860851,7 +860851,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860934,7 +860934,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, @@ -871671,24 +871671,24 @@ } }, "jcl/zopeneditor-sample": { - "Directory Group Magnitude": 97.88, + "Directory Group Magnitude": 98.88, "File Count": 10, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "79.56%", + "Error & Exception Exposure": "57.6%", "Tech Debt Exposure": "79.42%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.35%", + "API Exposure": "0.35%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "38.85%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "90.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "1.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -871729,9 +871729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.2%", + "Error & Exception Exposure": "60.09%", "Tech Debt Exposure": "82.41%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "22.73%", @@ -871773,7 +871773,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871783,7 +871783,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871809,7 +871809,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -871856,7 +871856,7 @@ "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, @@ -871915,9 +871915,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.96%", + "Error & Exception Exposure": "62.08%", "Tech Debt Exposure": "93.64%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "29.1%", @@ -871959,7 +871959,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871969,7 +871969,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871995,7 +871995,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 5, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872042,7 +872042,7 @@ "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, @@ -872075,9 +872075,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2095.78, - "Y": 31.78, - "Z": 9500.84 + "X": -1023.63, + "Y": 0.3, + "Z": 9468.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872089,7 +872089,7 @@ "Total LOC": 52, "Coding LOC": 24, "Documentation LOC": 28, - "Structural Magnitude": 3.08, + "Structural Magnitude": 4.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -872099,17 +872099,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.49%", "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": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -872133,9 +872133,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "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, @@ -872216,7 +872216,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, @@ -872305,7 +872305,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 3, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872405,9 +872405,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1022.04, - "Y": -37.72, - "Z": 9538.94 + "X": -2092.98, + "Y": -6.37, + "Z": 9572.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872473,7 +872473,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872599,9 +872599,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.57%", + "Error & Exception Exposure": "59.76%", "Tech Debt Exposure": "79.79%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "21.87%", @@ -872643,7 +872643,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872653,7 +872653,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872679,7 +872679,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872726,7 +872726,7 @@ "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, @@ -872785,9 +872785,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "62.58%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "31.0%", @@ -872829,7 +872829,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 18, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872839,7 +872839,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872865,7 +872865,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 4, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872912,7 +872912,7 @@ "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, @@ -872968,9 +872968,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "95.49%", + "Error & Exception Exposure": "63.85%", "Tech Debt Exposure": "97.04%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.15%", @@ -873052,7 +873052,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 60, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 5, @@ -873062,7 +873062,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 5, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873088,7 +873088,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873135,7 +873135,7 @@ "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, @@ -873201,9 +873201,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "97.34%", + "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "91.68%", @@ -873265,7 +873265,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 6, @@ -873275,7 +873275,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 6, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873301,7 +873301,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 1, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873348,7 +873348,7 @@ "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, @@ -873411,9 +873411,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "98.39%", + "Error & Exception Exposure": "66.5%", "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.47%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "69.0%", @@ -873485,7 +873485,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 5, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 4, @@ -873495,7 +873495,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 4, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873521,7 +873521,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873568,7 +873568,7 @@ "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, @@ -873633,9 +873633,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4689.51, + "X": 4691.11, "Y": -56.97, - "Z": -8157.99 + "Z": -8160.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873790,9 +873790,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4273.53, + "X": 4275.13, "Y": -134.4, - "Z": -7600.26 + "Z": -7603.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873962,9 +873962,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4654.86, + "X": 4656.46, "Y": -19.84, - "Z": -8957.79 + "Z": -8960.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874134,9 +874134,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4505.91, + "X": 4507.51, "Y": -63.53, - "Z": -8045.17 + "Z": -8047.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874291,9 +874291,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4749.39, + "X": 4750.99, "Y": -42.39, - "Z": -8602.81 + "Z": -8605.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874448,9 +874448,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4978.91, + "X": 4980.51, "Y": -165.67, - "Z": -8012.43 + "Z": -8015.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874605,9 +874605,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4111.12, + "X": 4112.72, "Y": -9.17, - "Z": -8429.22 + "Z": -8432.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874773,9 +874773,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4298.81, + "X": 4300.41, "Y": -85.32, - "Z": -8262.73 + "Z": -8265.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874930,9 +874930,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5336.09, + "X": 5337.7, "Y": -155.33, - "Z": -8170.56 + "Z": -8173.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875098,9 +875098,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4502.84, + "X": 4504.44, "Y": -43.71, - "Z": -8776.99 + "Z": -8779.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875266,9 +875266,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5219.11, + "X": 5220.71, "Y": -126.41, - "Z": -8122.68 + "Z": -8125.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875434,9 +875434,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4567.53, + "X": 4569.13, "Y": -72.45, - "Z": -7702.47 + "Z": -7705.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875628,9 +875628,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4172.16, + "X": 4173.76, "Y": -93.82, - "Z": -8113.56 + "Z": -8116.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875799,9 +875799,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4962.28, + "X": 4963.88, "Y": -84.11, - "Z": -8661.41 + "Z": -8664.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875970,9 +875970,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5077.7, + "X": 5079.3, "Y": -65.26, - "Z": -8502.43 + "Z": -8505.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876141,9 +876141,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4934.2, + "X": 4935.8, "Y": -166.2, - "Z": -7627.08 + "Z": -7629.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876341,9 +876341,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6610.06, + "X": 6612.2, "Y": 112.82, - "Z": -9067.19 + "Z": -9070.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876498,9 +876498,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6828.06, + "X": 6830.2, "Y": 160.61, - "Z": -8410.69 + "Z": -8413.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876655,9 +876655,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6129.16, + "X": 6131.3, "Y": 252.1, - "Z": -8730.79 + "Z": -8733.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876812,9 +876812,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6530.57, + "X": 6532.71, "Y": 135.41, - "Z": -8733.67 + "Z": -8736.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877120,9 +877120,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6912.47, + "X": 6914.61, "Y": 94.78, - "Z": -8960.05 + "Z": -8962.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877308,9 +877308,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6288.46, + "X": 6290.6, "Y": 231.79, - "Z": -8574.55 + "Z": -8577.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884504,9 +884504,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5853.3, + "X": 5854.76, "Y": -300.32, - "Z": -9989.04 + "Z": -9991.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884672,9 +884672,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5588.33, + "X": 5589.8, "Y": -225.58, - "Z": -9295.22 + "Z": -9297.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884840,9 +884840,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5775.51, + "X": 5776.98, "Y": -210.37, - "Z": -9492.38 + "Z": -9494.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890104,9 +890104,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7466.25, + "X": 7468.31, "Y": -115.43, - "Z": -8877.44 + "Z": -8879.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890261,9 +890261,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7478.9, + "X": 7480.97, "Y": -71.41, - "Z": -8731.2 + "Z": -8733.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890418,9 +890418,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7242.32, + "X": 7244.38, "Y": -21.96, - "Z": -8555.29 + "Z": -8557.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897310,9 +897310,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6432.56, + "X": 6434.42, "Y": 147.19, - "Z": -9406.71 + "Z": -9409.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899206,7 +899206,7 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.72%", + "Error & Exception Exposure": "46.1%", "Tech Debt Exposure": "53.79%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", @@ -899502,7 +899502,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -899628,9 +899628,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -899662,7 +899662,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -899745,7 +899745,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, @@ -899977,9 +899977,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8013.2, + "X": 8015.5, "Y": -23.25, - "Z": -8118.05 + "Z": -8120.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906036,9 +906036,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2666.91, + "X": 2667.3, "Y": 287.86, - "Z": -9993.43 + "Z": -9994.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906204,9 +906204,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2889.07, + "X": 2889.46, "Y": 208.99, - "Z": -10251.99 + "Z": -10253.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -907308,9 +907308,9 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907359,9 +907359,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907393,7 +907393,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -907476,7 +907476,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, @@ -914523,9 +914523,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3524.65, + "X": 3525.15, "Y": -80.09, - "Z": -10038.34 + "Z": -10039.78 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915247,9 +915247,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5413.75, + "X": 5415.23, "Y": 139.72, - "Z": -9767.89 + "Z": -9770.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915971,9 +915971,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7148.36, + "X": 7150.53, "Y": -122.51, - "Z": -8941.09 + "Z": -8943.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921584,9 +921584,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4387.67, + "X": 4388.21, "Y": 27.26, - "Z": -10356.37 + "Z": -10357.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -922308,9 +922308,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6286.25, + "X": 6287.75, "Y": -166.67, - "Z": -9826.65 + "Z": -9829.0 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -923032,9 +923032,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7995.22, + "X": 7997.3, "Y": -156.25, - "Z": -8802.19 + "Z": -8804.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -928459,9 +928459,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4743.76, + "X": 4745.0, "Y": 252.02, - "Z": -9990.53 + "Z": -9993.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -928616,9 +928616,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4486.51, + "X": 4487.75, "Y": 281.75, - "Z": -9893.19 + "Z": -9895.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index dac179961..0e9d7df5b 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": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", - "Analysis ISO Timestamp": "2026-09-05T15:41:15.436833+00:00", - "Total Scan Duration": "25.18 seconds" + "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", + "Analysis ISO Timestamp": "2026-09-05T18:21:54.887935+00:00", + "Total Scan Duration": "54.39 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -237,9 +237,9 @@ }, "health": { "avg_cognitive_load": 22.578, - "avg_safety_score": 45.662, + "avg_safety_score": 43.75, "avg_tech_debt": 29.91, - "avg_documentation": 7.916 + "avg_documentation": 7.984 }, "composition": { "markdown": { @@ -410,7 +410,7 @@ "jcl": { "files": 185, "loc": 5837, - "impact": 903.9400000000007 + "impact": 916.9400000000007 }, "kotlin": { "files": 5, @@ -1152,20 +1152,20 @@ }, "jcl/cics-genapp": { "file_count": 30, - "total_mass": 261.84, + "total_mass": 263.84, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 50.57, + "safety_score": 8.22, "tech_debt": 56.01, - "verification": 2.28, - "api_exposure": 0.0, + "verification": 2.27, + "api_exposure": 0.21, "concurrency": 0.0, "state_flux": 0.34, "dead_code": 0.0, "spec_match": 96.67, "stability": 48.33, "churn": 0.0, - "documentation": 0.0, + "documentation": 0.79, "secrets_risk": 0.0 } }, @@ -5012,7 +5012,7 @@ "total_mass": 15.76, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 71.72, + "safety_score": 46.1, "tech_debt": 53.79, "verification": 2.34, "api_exposure": 0.0, @@ -5028,20 +5028,20 @@ }, "jcl/cics-banking-sample-application-cbsa": { "file_count": 99, - "total_mass": 321.88, + "total_mass": 325.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 45.62, + "safety_score": 30.07, "tech_debt": 47.76, "verification": 2.33, - "api_exposure": 1.3, + "api_exposure": 1.43, "concurrency": 0.0, "state_flux": 1.17, "dead_code": 3.07, "spec_match": 98.99, "stability": 50.0, "churn": 0.0, - "documentation": 5.38, + "documentation": 5.98, "secrets_risk": 0.0 } }, @@ -5050,9 +5050,9 @@ "total_mass": 3.12, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 76.85, + "safety_score": 0.0, "tech_debt": 73.11, - "verification": 2.34, + "verification": 2.33, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, @@ -5066,39 +5066,39 @@ }, "jcl/cobol-programming-course": { "file_count": 43, - "total_mass": 204.5, + "total_mass": 210.5, "avg_exposures": { "cognitive_load": 2.47, - "safety_score": 61.88, + "safety_score": 10.65, "tech_debt": 61.57, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.36, + "api_exposure": 0.49, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 2.19, "secrets_risk": 0.0 } }, "jcl/zopeneditor-sample": { "file_count": 10, - "total_mass": 97.88, + "total_mass": 98.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 79.56, + "safety_score": 57.6, "tech_debt": 79.42, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.35, + "api_exposure": 0.35, "concurrency": 0.0, "state_flux": 38.85, "dead_code": 0.0, "spec_match": 90.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 1.19, "secrets_risk": 0.0 } }, @@ -346598,9 +346598,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.32, + "X": 3101.8, "Y": -96.08, - "Z": -9884.12 + "Z": -9885.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -347512,9 +347512,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.2, + "X": 2747.68, "Y": -174.69, - "Z": -9333.16 + "Z": -9334.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348960,9 +348960,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3072.92, + "X": 3073.4, "Y": -49.48, - "Z": -9615.31 + "Z": -9616.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350692,9 +350692,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3356.44, + "X": 3356.92, "Y": 40.54, - "Z": -9275.17 + "Z": -9276.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350860,9 +350860,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2575.63, + "X": 2576.11, "Y": -244.18, - "Z": -9677.5 + "Z": -9678.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443886,9 +443886,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7379.65, + "X": 7381.92, "Y": 165.91, - "Z": -8428.15 + "Z": -8430.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444689,9 +444689,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6999.03, + "X": 7001.3, "Y": 265.38, - "Z": -7713.08 + "Z": -7715.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445659,9 +445659,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6787.47, + "X": 6789.74, "Y": 225.18, - "Z": -7948.69 + "Z": -7951.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445940,9 +445940,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7824.7, + "X": 7826.97, "Y": 134.51, - "Z": -8173.94 + "Z": -8176.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446212,9 +446212,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7637.84, + "X": 7640.11, "Y": 311.63, - "Z": -7253.28 + "Z": -7255.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446490,9 +446490,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7292.29, + "X": 7294.56, "Y": 257.91, - "Z": -7908.17 + "Z": -7910.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447600,9 +447600,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7201.47, + "X": 7203.75, "Y": 404.61, - "Z": -7208.57 + "Z": -7210.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447991,9 +447991,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.12, + "X": 3754.73, "Y": -127.57, - "Z": -9730.85 + "Z": -9732.2 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -448148,9 +448148,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3527.29, + "X": 3527.89, "Y": -76.36, - "Z": -9338.08 + "Z": -9339.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -449380,9 +449380,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4546.52, + "X": 4547.12, "Y": -154.94, - "Z": -9433.18 + "Z": -9434.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450100,9 +450100,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4000.91, + "X": 4001.51, "Y": -115.21, - "Z": -9116.12 + "Z": -9117.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -451422,9 +451422,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4065.71, + "X": 4066.32, "Y": -150.26, - "Z": -9701.93 + "Z": -9703.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452471,9 +452471,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3853.29, + "X": 3853.89, "Y": -147.74, - "Z": -8519.42 + "Z": -8520.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452843,9 +452843,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3774.4, + "X": 3775.01, "Y": -155.51, - "Z": -8957.33 + "Z": -8958.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454671,9 +454671,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4359.96, + "X": 4360.56, "Y": -127.18, - "Z": -8643.55 + "Z": -8644.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586387,9 +586387,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5190.5, + "X": 5191.95, "Y": 237.38, - "Z": -9063.81 + "Z": -9066.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586544,9 +586544,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4395.86, + "X": 4397.3, "Y": 229.37, - "Z": -9470.98 + "Z": -9473.74 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -586702,9 +586702,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.15, + "X": 4896.59, "Y": 292.43, - "Z": -9843.7 + "Z": -9846.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -588738,9 +588738,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4901.07, + "X": 4902.51, "Y": 202.09, - "Z": -9501.06 + "Z": -9503.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590472,9 +590472,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4599.26, + "X": 4600.71, "Y": 227.35, - "Z": -9001.68 + "Z": -9004.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644335,9 +644335,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3515.9, + "X": 3516.45, "Y": 71.06, - "Z": -8331.43 + "Z": -8332.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644543,9 +644543,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2648.6, + "X": 2649.14, "Y": 152.18, - "Z": -7787.68 + "Z": -7789.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644711,9 +644711,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3252.91, + "X": 3253.45, "Y": 174.96, - "Z": -7676.21 + "Z": -7677.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644868,9 +644868,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3061.92, + "X": 3062.47, "Y": 89.43, - "Z": -8674.58 + "Z": -8676.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645186,9 +645186,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.56, + "X": 2926.11, "Y": 80.1, - "Z": -8860.62 + "Z": -8862.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645354,9 +645354,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3082.82, + "X": 3083.37, "Y": 118.21, - "Z": -8095.17 + "Z": -8096.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645922,9 +645922,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2490.11, + "X": 2490.66, "Y": 140.87, - "Z": -7952.01 + "Z": -7953.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646120,9 +646120,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3742.69, + "X": 3743.24, "Y": 118.51, - "Z": -8297.59 + "Z": -8299.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646308,9 +646308,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2908.16, + "X": 2908.71, "Y": 179.25, - "Z": -7607.1 + "Z": -7608.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646526,9 +646526,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3381.54, + "X": 3382.09, "Y": 110.37, - "Z": -8947.0 + "Z": -8948.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646683,9 +646683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2794.72, + "X": 2795.26, "Y": 125.85, - "Z": -8076.3 + "Z": -8077.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646921,9 +646921,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2773.83, + "X": 2774.37, "Y": 129.36, - "Z": -8574.44 + "Z": -8575.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647149,9 +647149,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2412.33, + "X": 2412.88, "Y": 97.98, - "Z": -8659.68 + "Z": -8661.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647317,9 +647317,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3651.07, + "X": 3651.61, "Y": 99.96, - "Z": -8040.89 + "Z": -8042.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647515,9 +647515,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3334.01, + "X": 3334.56, "Y": 92.83, - "Z": -7742.97 + "Z": -7744.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647683,9 +647683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.46, + "X": 2581.01, "Y": 110.01, - "Z": -8383.3 + "Z": -8384.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647851,9 +647851,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3616.72, + "X": 3617.26, "Y": 137.93, - "Z": -7858.16 + "Z": -7859.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -651812,9 +651812,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5543.46, + "X": 5545.09, "Y": 137.98, - "Z": -9183.57 + "Z": -9186.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -651969,9 +651969,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5619.22, + "X": 5620.86, "Y": 260.73, - "Z": -8065.52 + "Z": -8067.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652133,9 +652133,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5478.25, + "X": 5479.88, "Y": 205.12, - "Z": -8549.89 + "Z": -8552.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652761,9 +652761,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5855.09, + "X": 5856.72, "Y": 149.3, - "Z": -9178.84 + "Z": -9181.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653109,9 +653109,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5304.66, + "X": 5306.29, "Y": 269.32, - "Z": -8739.61 + "Z": -8742.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653367,9 +653367,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5807.85, + "X": 5809.48, "Y": 186.55, - "Z": -8852.28 + "Z": -8854.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653825,9 +653825,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6070.91, + "X": 6072.55, "Y": 99.09, - "Z": -8310.04 + "Z": -8312.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -654113,9 +654113,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6183.94, + "X": 6185.58, "Y": 55.62, - "Z": -8988.36 + "Z": -8990.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732321,9 +732321,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5618.7, + "X": 5620.92, "Y": -266.49, - "Z": -6269.74 + "Z": -6272.8 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -732478,9 +732478,9 @@ "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": 4796.02, + "X": 4798.24, "Y": -119.0, - "Z": -6798.41 + "Z": -6801.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732746,9 +732746,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5016.27, + "X": 5018.5, "Y": -210.24, - "Z": -5888.26 + "Z": -5891.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732905,9 +732905,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4318.96, + "X": 4321.19, "Y": -45.97, - "Z": -6583.66 + "Z": -6586.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733067,9 +733067,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5469.74, + "X": 5471.96, "Y": -135.16, - "Z": -6935.75 + "Z": -6938.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733227,9 +733227,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4459.0, + "X": 4461.22, "Y": 165.94, - "Z": -7444.17 + "Z": -7447.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733384,9 +733384,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5130.05, + "X": 5132.27, "Y": 15.44, - "Z": -7210.8 + "Z": -7213.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733545,9 +733545,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5251.87, + "X": 5254.09, "Y": -40.13, - "Z": -6979.22 + "Z": -6982.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733708,9 +733708,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4557.46, + "X": 4559.68, "Y": 65.17, - "Z": -7024.03 + "Z": -7027.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733869,9 +733869,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4193.16, + "X": 4195.38, "Y": 73.84, - "Z": -6997.01 + "Z": -7000.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734028,9 +734028,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5370.26, + "X": 5372.48, "Y": -264.76, - "Z": -6211.29 + "Z": -6214.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734185,9 +734185,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4025.84, + "X": 4028.06, "Y": -11.64, - "Z": -6430.3 + "Z": -6433.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734342,9 +734342,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4579.71, + "X": 4581.93, "Y": -115.23, - "Z": -6529.55 + "Z": -6532.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734499,9 +734499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4663.69, + "X": 4665.92, "Y": -198.24, - "Z": -6019.58 + "Z": -6022.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734661,9 +734661,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4359.89, + "X": 4362.11, "Y": -229.14, - "Z": -6147.45 + "Z": -6150.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734820,9 +734820,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4130.54, + "X": 4132.76, "Y": -188.39, - "Z": -6122.76 + "Z": -6125.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734979,9 +734979,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5101.42, + "X": 5103.64, "Y": -223.34, - "Z": -6433.75 + "Z": -6436.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735138,9 +735138,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4268.55, + "X": 4270.77, "Y": -112.82, - "Z": -6301.9 + "Z": -6304.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735295,9 +735295,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5412.54, + "X": 5414.76, "Y": -133.35, - "Z": -6434.94 + "Z": -6438.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735454,9 +735454,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4809.51, + "X": 4811.73, "Y": -20.86, - "Z": -7111.88 + "Z": -7114.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735611,9 +735611,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4990.24, + "X": 4992.46, "Y": 96.15, - "Z": -7351.88 + "Z": -7354.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735768,9 +735768,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5642.46, + "X": 5644.68, "Y": -176.74, - "Z": -6543.93 + "Z": -6546.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735925,9 +735925,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5274.56, + "X": 5276.78, "Y": -255.85, - "Z": -5979.01 + "Z": -5982.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736082,9 +736082,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4466.04, + "X": 4468.26, "Y": -266.15, - "Z": -5648.6 + "Z": -5651.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736241,9 +736241,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4739.9, + "X": 4742.12, "Y": 52.17, - "Z": -7333.78 + "Z": -7336.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736400,9 +736400,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5424.34, + "X": 5426.56, "Y": 9.79, - "Z": -7115.05 + "Z": -7118.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736559,9 +736559,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3950.48, + "X": 3952.7, "Y": 80.71, - "Z": -6890.78 + "Z": -6893.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736716,9 +736716,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4814.53, + "X": 4816.75, "Y": -231.16, - "Z": -5913.63 + "Z": -5916.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736875,9 +736875,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4322.66, + "X": 4324.88, "Y": 78.77, - "Z": -7390.11 + "Z": -7393.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737032,9 +737032,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5702.02, + "X": 5704.24, "Y": -20.68, - "Z": -6977.27 + "Z": -6980.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -758533,9 +758533,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3963.52, + "X": 3964.04, "Y": 165.09, - "Z": -10504.2 + "Z": -10505.53 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -758690,9 +758690,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3947.59, + "X": 3948.11, "Y": 184.98, - "Z": -10127.98 + "Z": -10129.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -759055,9 +759055,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3726.94, + "X": 3727.47, "Y": 160.01, - "Z": -9794.37 + "Z": -9795.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793743,24 +793743,24 @@ } }, "jcl/cics-banking-sample-application-cbsa": { - "Directory Group Magnitude": 321.88, + "Directory Group Magnitude": 325.88, "File Count": 99, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "45.62%", + "Error & Exception Exposure": "30.07%", "Tech Debt Exposure": "47.76%", "Testing Exposure": "2.33%", - "API Exposure": "1.3%", + "API Exposure": "1.43%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "1.17%", "Commented Logic Exposure": "3.07%", "Specification Exposure": "98.99%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "5.38%", + "Documentation Exposure": "5.98%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -794290,9 +794290,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 188.46, - "Y": 52.61, - "Z": -1700.58 + "X": 70.11, + "Y": 59.34, + "Z": -2692.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794314,9 +794314,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.5%", + "Error & Exception Exposure": "73.11%", "Tech Debt Exposure": "96.64%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -794368,7 +794368,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 25, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -794451,7 +794451,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -794483,9 +794483,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -193.46, - "Y": 52.39, - "Z": -2438.15 + "X": -194.39, + "Y": 52.41, + "Z": -2438.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794497,7 +794497,7 @@ "Total LOC": 57, "Coding LOC": 52, "Documentation LOC": 4, - "Structural Magnitude": 8.64, + "Structural Magnitude": 9.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794507,17 +794507,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "73.11%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "70.38%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.41%", "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": "0.0%", + "Documentation Exposure": "16.41%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -794551,9 +794551,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, - "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, @@ -794634,7 +794634,7 @@ "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, @@ -797821,7 +797821,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -797948,9 +797948,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -797982,7 +797982,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -798065,7 +798065,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, @@ -798096,9 +798096,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 577.65, - "Y": 58.05, - "Z": -1824.65 + "X": 578.22, + "Y": 58.03, + "Z": -1823.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798110,7 +798110,7 @@ "Total LOC": 59, "Coding LOC": 53, "Documentation LOC": 5, - "Structural Magnitude": 8.66, + "Structural Magnitude": 9.66, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798120,17 +798120,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.84%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "69.04%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.39%", "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": "0.0%", + "Documentation Exposure": "15.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -798164,9 +798164,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, - "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, @@ -798247,7 +798247,7 @@ "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, @@ -798289,9 +798289,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 351.16, + "X": 351.21, "Y": 47.47, - "Z": -2728.78 + "Z": -2729.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798303,7 +798303,7 @@ "Total LOC": 183, "Coding LOC": 108, "Documentation LOC": 74, - "Structural Magnitude": 17.26, + "Structural Magnitude": 18.26, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798313,17 +798313,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "63.7%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "86.97%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "2.66%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "26.25%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -798407,9 +798407,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 115, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 4, "Structured Documentation Blocks": 0, @@ -798490,7 +798490,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 7, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800345,7 +800345,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -800472,9 +800472,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -800516,7 +800516,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -800599,7 +800599,7 @@ "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, @@ -800697,7 +800697,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -800868,7 +800868,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -801039,7 +801039,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -801166,9 +801166,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801210,7 +801210,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -801293,7 +801293,7 @@ "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, @@ -801347,9 +801347,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801381,7 +801381,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801464,7 +801464,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, @@ -801517,9 +801517,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801551,7 +801551,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801634,7 +801634,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, @@ -801687,9 +801687,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801721,7 +801721,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801804,7 +801804,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, @@ -801857,9 +801857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801891,7 +801891,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801974,7 +801974,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, @@ -802027,9 +802027,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802071,7 +802071,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802154,7 +802154,7 @@ "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, @@ -802208,9 +802208,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802242,7 +802242,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -802325,7 +802325,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, @@ -802378,9 +802378,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802412,7 +802412,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -802495,7 +802495,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, @@ -802548,9 +802548,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802592,7 +802592,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802675,7 +802675,7 @@ "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, @@ -802729,9 +802729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802773,7 +802773,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802856,7 +802856,7 @@ "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, @@ -802910,9 +802910,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802954,7 +802954,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -803037,7 +803037,7 @@ "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, @@ -803091,9 +803091,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "78.34%", + "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "16.8%", @@ -803125,7 +803125,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 1, @@ -803135,7 +803135,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803317,7 +803317,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803488,7 +803488,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803659,7 +803659,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803830,7 +803830,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804001,7 +804001,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804172,7 +804172,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804343,7 +804343,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804514,7 +804514,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804685,7 +804685,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804866,7 +804866,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805209,7 +805209,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 9, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805719,7 +805719,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805890,7 +805890,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806061,7 +806061,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806232,7 +806232,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806403,7 +806403,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806574,7 +806574,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806745,7 +806745,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806916,7 +806916,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807087,7 +807087,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807258,7 +807258,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807429,7 +807429,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807600,7 +807600,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807771,7 +807771,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807942,7 +807942,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -809139,7 +809139,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -809243,9 +809243,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 55.05, - "Y": 60.88, - "Z": -2833.53 + "X": 173.12, + "Y": 54.15, + "Z": -1841.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809257,7 +809257,7 @@ "Total LOC": 50, "Coding LOC": 43, "Documentation LOC": 6, - "Structural Magnitude": 7.46, + "Structural Magnitude": 8.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809267,17 +809267,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.41%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "15.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -809331,9 +809331,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 28, - "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, @@ -809367,7 +809367,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -809414,7 +809414,7 @@ "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, @@ -809639,9 +809639,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809673,7 +809673,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -809756,7 +809756,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, @@ -809810,9 +809810,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809844,7 +809844,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -809927,7 +809927,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, @@ -827718,7 +827718,7 @@ } }, "jcl/cics-genapp": { - "Directory Group Magnitude": 261.84, + "Directory Group Magnitude": 263.84, "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "96.7%", @@ -827726,17 +827726,17 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "50.57%", + "Error & Exception Exposure": "8.22%", "Tech Debt Exposure": "56.01%", - "Testing Exposure": "2.28%", - "API Exposure": "0.0%", + "Testing Exposure": "2.27%", + "API Exposure": "0.21%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.34%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "96.67%", "Instability Exposure": "48.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "0.79%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -827938,9 +827938,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.04%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "98.89%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828022,7 +828022,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828105,7 +828105,7 @@ "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, @@ -828156,9 +828156,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.68%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828220,7 +828220,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 34, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828256,7 +828256,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -828303,7 +828303,7 @@ "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, @@ -828357,7 +828357,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "21.39%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", @@ -828391,7 +828391,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828474,7 +828474,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, @@ -828525,7 +828525,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "58.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "15.03%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828559,7 +828559,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828642,7 +828642,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, @@ -828693,7 +828693,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "57.24%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "13.62%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828727,7 +828727,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828810,7 +828810,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, @@ -828861,9 +828861,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828895,7 +828895,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828978,7 +828978,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, @@ -829029,9 +829029,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -829063,7 +829063,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -829146,7 +829146,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, @@ -829173,9 +829173,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4637.53, - "Y": 158.42, - "Z": 5415.23 + "X": -4637.69, + "Y": 158.43, + "Z": 5415.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829187,7 +829187,7 @@ "Total LOC": 114, "Coding LOC": 96, "Documentation LOC": 18, - "Structural Magnitude": 42.92, + "Structural Magnitude": 43.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829197,17 +829197,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.65%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.58%", - "API Exposure": "0.0%", + "Testing Exposure": "2.57%", + "API Exposure": "2.92%", "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": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829561,9 +829561,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 49, - "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, @@ -829597,7 +829597,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -829644,7 +829644,7 @@ "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, @@ -829739,7 +829739,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830165,7 +830165,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830333,7 +830333,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830457,9 +830457,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830511,7 +830511,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830594,7 +830594,7 @@ "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, @@ -830645,9 +830645,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830689,7 +830689,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830772,7 +830772,7 @@ "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, @@ -830823,9 +830823,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830857,7 +830857,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 13, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830940,7 +830940,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, @@ -830991,9 +830991,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831025,7 +831025,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831108,7 +831108,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, @@ -831135,9 +831135,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4336.2, + "X": -4336.17, "Y": 160.29, - "Z": 4559.97 + "Z": 4559.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831149,7 +831149,7 @@ "Total LOC": 39, "Coding LOC": 35, "Documentation LOC": 4, - "Structural Magnitude": 26.3, + "Structural Magnitude": 27.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -831159,17 +831159,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.66%", - "API Exposure": "0.0%", + "Testing Exposure": "2.64%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -831413,9 +831413,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "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, @@ -831496,7 +831496,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, @@ -831547,9 +831547,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.36%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831581,7 +831581,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831664,7 +831664,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, @@ -831715,9 +831715,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831749,7 +831749,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831832,7 +831832,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, @@ -831883,9 +831883,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831917,7 +831917,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832000,7 +832000,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, @@ -832051,9 +832051,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "66.2%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "30.29%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -832085,7 +832085,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832168,7 +832168,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, @@ -844106,9 +844106,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5988.55, + "X": 5990.87, "Y": -237.07, - "Z": -7860.94 + "Z": -7863.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844263,9 +844263,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6717.43, + "X": 6719.75, "Y": -220.86, - "Z": -7446.85 + "Z": -7449.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844420,9 +844420,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5655.86, + "X": 5658.18, "Y": -230.93, - "Z": -7304.03 + "Z": -7306.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844577,9 +844577,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5597.39, + "X": 5599.71, "Y": -231.03, - "Z": -7701.48 + "Z": -7704.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844745,9 +844745,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6068.24, + "X": 6070.56, "Y": -193.38, - "Z": -7168.45 + "Z": -7171.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844902,9 +844902,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6915.45, + "X": 6917.77, "Y": -200.35, - "Z": -7587.29 + "Z": -7590.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845070,9 +845070,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6233.35, + "X": 6235.67, "Y": -189.0, - "Z": -7906.75 + "Z": -7909.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845227,9 +845227,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5983.26, + "X": 5985.58, "Y": -240.46, - "Z": -7404.85 + "Z": -7407.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845384,9 +845384,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6231.66, + "X": 6233.98, "Y": -208.54, - "Z": -7522.33 + "Z": -7525.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845541,9 +845541,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5776.22, + "X": 5778.53, "Y": -209.72, - "Z": -7602.48 + "Z": -7605.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845698,9 +845698,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6470.88, + "X": 6473.2, "Y": -203.73, - "Z": -7067.52 + "Z": -7070.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845855,9 +845855,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6623.41, + "X": 6625.73, "Y": -223.68, - "Z": -7947.86 + "Z": -7950.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846012,9 +846012,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6456.61, + "X": 6458.93, "Y": -203.78, - "Z": -8172.85 + "Z": -8175.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846190,9 +846190,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5832.5, + "X": 5834.82, "Y": -185.31, - "Z": -6885.37 + "Z": -6888.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846358,9 +846358,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6393.56, + "X": 6395.88, "Y": -205.22, - "Z": -6770.06 + "Z": -6772.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853267,24 +853267,24 @@ } }, "jcl/cobol-programming-course": { - "Directory Group Magnitude": 204.5, + "Directory Group Magnitude": 210.5, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "2.47%", - "Error & Exception Exposure": "61.88%", + "Error & Exception Exposure": "10.65%", "Tech Debt Exposure": "61.57%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "0.49%", "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": "0.0%", + "Documentation Exposure": "2.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -853301,9 +853301,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3457.91, - "Y": -255.4, - "Z": -6219.95 + "X": 2779.65, + "Y": -230.33, + "Z": -6611.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853325,9 +853325,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853369,7 +853369,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853452,7 +853452,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, @@ -853481,9 +853481,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3086.08, - "Y": -336.99, - "Z": -5892.34 + "X": 3086.21, + "Y": -337.15, + "Z": -5892.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853505,9 +853505,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853549,7 +853549,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853632,7 +853632,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, @@ -853662,9 +853662,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2960.33, - "Y": -126.12, - "Z": -6759.13 + "X": 2960.31, + "Y": -126.02, + "Z": -6760.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853686,9 +853686,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853730,7 +853730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853813,7 +853813,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, @@ -853843,9 +853843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3714.79, - "Y": -161.91, - "Z": -6217.84 + "X": 3715.71, + "Y": -161.9, + "Z": -6218.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853867,9 +853867,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853911,7 +853911,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853994,7 +853994,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, @@ -854024,9 +854024,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2586.33, - "Y": -308.2, - "Z": -6119.61 + "X": 2586.02, + "Y": -308.31, + "Z": -6119.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854048,9 +854048,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854092,7 +854092,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854175,7 +854175,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, @@ -854205,9 +854205,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3462.11, - "Y": -77.74, - "Z": -7006.69 + "X": 3462.68, + "Y": -77.58, + "Z": -7007.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854229,9 +854229,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854273,7 +854273,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854356,7 +854356,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, @@ -854386,9 +854386,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3406.97, - "Y": -308.71, - "Z": -5923.56 + "X": 3407.47, + "Y": -308.83, + "Z": -5923.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854410,9 +854410,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854454,7 +854454,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854537,7 +854537,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, @@ -854567,9 +854567,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2632.18, - "Y": -208.16, - "Z": -6860.94 + "X": 2631.9, + "Y": -208.14, + "Z": -6861.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854591,9 +854591,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854635,7 +854635,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854718,7 +854718,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, @@ -854748,9 +854748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3823.15, - "Y": -81.1, - "Z": -6557.49 + "X": 3824.09, + "Y": -81.01, + "Z": -6558.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854772,9 +854772,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854816,7 +854816,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854899,7 +854899,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, @@ -854929,9 +854929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2754.45, - "Y": -383.72, - "Z": -5742.93 + "X": 2754.37, + "Y": -383.88, + "Z": -5743.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854953,9 +854953,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854997,7 +854997,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855080,7 +855080,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, @@ -855110,9 +855110,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3032.66, - "Y": -3.37, - "Z": -7017.91 + "X": 3032.86, + "Y": -3.24, + "Z": -7019.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855134,9 +855134,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855178,7 +855178,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855261,7 +855261,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, @@ -855291,9 +855291,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3771.39, - "Y": -219.77, - "Z": -6028.76 + "X": 3772.2, + "Y": -219.81, + "Z": -6028.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855315,9 +855315,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855359,7 +855359,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855442,7 +855442,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, @@ -855472,9 +855472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2433.69, - "Y": -308.45, - "Z": -6341.31 + "X": 2433.32, + "Y": -308.52, + "Z": -6341.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855496,9 +855496,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855540,7 +855540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855623,7 +855623,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, @@ -855653,9 +855653,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3389.66, - "Y": 13.35, - "Z": -7120.22 + "X": 3390.09, + "Y": 13.51, + "Z": -7121.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855677,9 +855677,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855721,7 +855721,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855804,7 +855804,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, @@ -855833,9 +855833,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3645.0, - "Y": -310.9, - "Z": -5798.17 + "X": 3645.63, + "Y": -310.99, + "Z": -5798.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855857,9 +855857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855901,7 +855901,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855984,7 +855984,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, @@ -856013,9 +856013,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2987.24, - "Y": -300.21, - "Z": -6351.61 + "X": 3228.94, + "Y": -153.47, + "Z": -6890.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856037,9 +856037,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856091,7 +856091,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 17, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856174,7 +856174,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, @@ -856204,9 +856204,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3733.87, - "Y": -43.57, - "Z": -6872.75 + "X": 3734.63, + "Y": -43.42, + "Z": -6873.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856228,9 +856228,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856272,7 +856272,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856355,7 +856355,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, @@ -856385,9 +856385,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3178.04, - "Y": -395.74, - "Z": -5752.82 + "X": 3178.32, + "Y": -395.89, + "Z": -5752.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856409,9 +856409,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856453,7 +856453,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856536,7 +856536,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, @@ -856566,9 +856566,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2448.14, - "Y": -392.97, - "Z": -5738.23 + "X": 2447.99, + "Y": -393.12, + "Z": -5738.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856734,9 +856734,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2384.44, - "Y": -132.97, - "Z": -7071.75 + "X": 4169.27, + "Y": -84.18, + "Z": -6542.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856904,9 +856904,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3173.69, - "Y": 18.85, - "Z": -7521.37 + "X": 3173.99, + "Y": 19.0, + "Z": -7522.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857072,9 +857072,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3709.34, - "Y": 57.21, - "Z": -7338.69 + "X": 3373.32, + "Y": -372.61, + "Z": -5609.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857242,9 +857242,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3888.3, - "Y": -347.38, - "Z": -5559.8 + "X": 3889.04, + "Y": -347.45, + "Z": -5559.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857410,9 +857410,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3370.11, - "Y": -393.28, - "Z": -5449.68 + "X": 2406.66, + "Y": -130.54, + "Z": -6994.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857580,9 +857580,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3582.05, - "Y": -88.87, - "Z": -6698.42 + "X": 3582.89, + "Y": -88.73, + "Z": -6699.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857604,9 +857604,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857648,7 +857648,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -857731,7 +857731,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, @@ -857761,9 +857761,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2245.73, - "Y": -320.15, - "Z": -6072.44 + "X": 3672.92, + "Y": 49.4, + "Z": -7087.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857929,9 +857929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3183.03, + "X": 3183.32, "Y": -207.64, - "Z": -6293.06 + "Z": -6293.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857943,7 +857943,7 @@ "Total LOC": 61, "Coding LOC": 48, "Documentation LOC": 12, - "Structural Magnitude": 12.76, + "Structural Magnitude": 13.76, "Control Flow Ratio": "13.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -857953,17 +857953,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.47%", - "API Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "3.36%", "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": "0.0%", + "Documentation Exposure": "11.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858007,9 +858007,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 33, - "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, @@ -858043,7 +858043,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -858090,7 +858090,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858128,9 +858128,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4120.28, - "Y": -44.86, - "Z": -6536.23 + "X": 2206.56, + "Y": -296.36, + "Z": -6238.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858142,7 +858142,7 @@ "Total LOC": 18, "Coding LOC": 13, "Documentation LOC": 4, - "Structural Magnitude": 1.86, + "Structural Magnitude": 2.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858155,14 +858155,14 @@ "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858188,7 +858188,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 6, - "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, @@ -858298,9 +858298,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2320.73, - "Y": -192.82, - "Z": -6627.11 + "X": 2320.4, + "Y": -192.83, + "Z": -6627.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858322,9 +858322,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858366,7 +858366,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858449,7 +858449,7 @@ "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, @@ -858482,9 +858482,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4020.52, - "Y": -1.72, - "Z": -7116.97 + "X": 4021.33, + "Y": -1.58, + "Z": -7117.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858506,9 +858506,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858540,7 +858540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858623,7 +858623,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, @@ -858652,8 +858652,8 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2821.44, - "Y": -425.42, + "X": 2821.48, + "Y": -425.58, "Z": -5628.4 }, "3. Architectural Profile": { @@ -858676,9 +858676,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858730,7 +858730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858813,7 +858813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858843,9 +858843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3983.23, - "Y": -259.36, - "Z": -5801.62 + "X": 3986.64, + "Y": -259.43, + "Z": -5800.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858857,7 +858857,7 @@ "Total LOC": 17, "Coding LOC": 15, "Documentation LOC": 1, - "Structural Magnitude": 2.4, + "Structural Magnitude": 3.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858867,17 +858867,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "18.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858901,9 +858901,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "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, @@ -858984,7 +858984,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, @@ -859014,9 +859014,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2668.93, - "Y": -130.61, - "Z": -6847.61 + "X": 2668.79, + "Y": -130.54, + "Z": -6848.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859038,9 +859038,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -859082,7 +859082,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -859165,7 +859165,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, @@ -859195,9 +859195,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3022.77, - "Y": -483.84, - "Z": -5339.65 + "X": 3022.95, + "Y": -484.0, + "Z": -5339.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859363,9 +859363,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2828.11, - "Y": -59.42, - "Z": -7305.03 + "X": 2827.28, + "Y": -58.84, + "Z": -7308.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859377,7 +859377,7 @@ "Total LOC": 30, "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 2.7, + "Structural Magnitude": 3.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859387,17 +859387,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859421,9 +859421,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "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, @@ -859504,7 +859504,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, @@ -859536,9 +859536,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2761.85, - "Y": -178.28, - "Z": -6372.0 + "X": 3441.01, + "Y": -203.6, + "Z": -5980.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859550,7 +859550,7 @@ "Total LOC": 39, "Coding LOC": 34, "Documentation LOC": 4, - "Structural Magnitude": 6.28, + "Structural Magnitude": 7.28, "Control Flow Ratio": "6.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859560,17 +859560,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "3.86%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "3.53%", "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": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859604,9 +859604,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, - "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, @@ -859640,7 +859640,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859687,7 +859687,7 @@ "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, @@ -859722,9 +859722,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3176.68, - "Y": -106.18, - "Z": -6612.13 + "X": 2934.87, + "Y": -252.92, + "Z": -6074.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859736,7 +859736,7 @@ "Total LOC": 51, "Coding LOC": 42, "Documentation LOC": 8, - "Structural Magnitude": 10.04, + "Structural Magnitude": 11.04, "Control Flow Ratio": "10.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859746,17 +859746,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.49%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", - "API Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "3.51%", "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": "0.0%", + "Documentation Exposure": "14.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859800,9 +859800,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 26, - "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, @@ -859836,7 +859836,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859883,7 +859883,7 @@ "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, @@ -859918,9 +859918,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4014.75, - "Y": -74.61, - "Z": -6748.23 + "X": 4015.65, + "Y": -74.49, + "Z": -6749.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860098,9 +860098,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2564.41, - "Y": -10.51, - "Z": -7455.15 + "X": 2564.35, + "Y": -10.42, + "Z": -7456.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860266,9 +860266,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4258.91, - "Y": -142.13, - "Z": -6008.03 + "X": 4259.85, + "Y": -142.11, + "Z": -6008.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860434,9 +860434,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2097.76, - "Y": -274.62, - "Z": -6503.5 + "X": 2097.4, + "Y": -274.67, + "Z": -6504.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860602,9 +860602,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4024.6, - "Y": -161.07, - "Z": -6229.93 + "X": 4025.55, + "Y": -161.03, + "Z": -6230.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860626,9 +860626,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860670,7 +860670,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860753,7 +860753,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, @@ -860783,9 +860783,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2459.76, - "Y": -379.41, - "Z": -5954.1 + "X": 2459.52, + "Y": -379.55, + "Z": -5954.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860807,9 +860807,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860851,7 +860851,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860934,7 +860934,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, @@ -871671,24 +871671,24 @@ } }, "jcl/zopeneditor-sample": { - "Directory Group Magnitude": 97.88, + "Directory Group Magnitude": 98.88, "File Count": 10, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "79.56%", + "Error & Exception Exposure": "57.6%", "Tech Debt Exposure": "79.42%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.35%", + "API Exposure": "0.35%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "38.85%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "90.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "1.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -871729,9 +871729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.2%", + "Error & Exception Exposure": "60.09%", "Tech Debt Exposure": "82.41%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "22.73%", @@ -871773,7 +871773,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871783,7 +871783,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871809,7 +871809,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -871856,7 +871856,7 @@ "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, @@ -871915,9 +871915,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.96%", + "Error & Exception Exposure": "62.08%", "Tech Debt Exposure": "93.64%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "29.1%", @@ -871959,7 +871959,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871969,7 +871969,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871995,7 +871995,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 5, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872042,7 +872042,7 @@ "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, @@ -872075,9 +872075,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2095.78, - "Y": 31.78, - "Z": 9500.84 + "X": -1023.63, + "Y": 0.3, + "Z": 9468.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872089,7 +872089,7 @@ "Total LOC": 52, "Coding LOC": 24, "Documentation LOC": 28, - "Structural Magnitude": 3.08, + "Structural Magnitude": 4.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -872099,17 +872099,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.49%", "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": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -872133,9 +872133,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "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, @@ -872216,7 +872216,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, @@ -872305,7 +872305,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 3, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872405,9 +872405,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1022.04, - "Y": -37.72, - "Z": 9538.94 + "X": -2092.98, + "Y": -6.37, + "Z": 9572.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872473,7 +872473,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872599,9 +872599,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.57%", + "Error & Exception Exposure": "59.76%", "Tech Debt Exposure": "79.79%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "21.87%", @@ -872643,7 +872643,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872653,7 +872653,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872679,7 +872679,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872726,7 +872726,7 @@ "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, @@ -872785,9 +872785,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "62.58%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "31.0%", @@ -872829,7 +872829,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 18, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872839,7 +872839,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872865,7 +872865,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 4, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872912,7 +872912,7 @@ "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, @@ -872968,9 +872968,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "95.49%", + "Error & Exception Exposure": "63.85%", "Tech Debt Exposure": "97.04%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.15%", @@ -873052,7 +873052,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 60, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 5, @@ -873062,7 +873062,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 5, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873088,7 +873088,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873135,7 +873135,7 @@ "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, @@ -873201,9 +873201,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "97.34%", + "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "91.68%", @@ -873265,7 +873265,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 6, @@ -873275,7 +873275,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 6, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873301,7 +873301,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 1, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873348,7 +873348,7 @@ "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, @@ -873411,9 +873411,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "98.39%", + "Error & Exception Exposure": "66.5%", "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.47%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "69.0%", @@ -873485,7 +873485,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 5, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 4, @@ -873495,7 +873495,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 4, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873521,7 +873521,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873568,7 +873568,7 @@ "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, @@ -873633,9 +873633,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4689.51, + "X": 4691.11, "Y": -56.97, - "Z": -8157.99 + "Z": -8160.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873790,9 +873790,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4273.53, + "X": 4275.13, "Y": -134.4, - "Z": -7600.26 + "Z": -7603.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873962,9 +873962,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4654.86, + "X": 4656.46, "Y": -19.84, - "Z": -8957.79 + "Z": -8960.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874134,9 +874134,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4505.91, + "X": 4507.51, "Y": -63.53, - "Z": -8045.17 + "Z": -8047.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874291,9 +874291,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4749.39, + "X": 4750.99, "Y": -42.39, - "Z": -8602.81 + "Z": -8605.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874448,9 +874448,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4978.91, + "X": 4980.51, "Y": -165.67, - "Z": -8012.43 + "Z": -8015.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874605,9 +874605,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4111.12, + "X": 4112.72, "Y": -9.17, - "Z": -8429.22 + "Z": -8432.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874773,9 +874773,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4298.81, + "X": 4300.41, "Y": -85.32, - "Z": -8262.73 + "Z": -8265.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874930,9 +874930,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5336.09, + "X": 5337.7, "Y": -155.33, - "Z": -8170.56 + "Z": -8173.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875098,9 +875098,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4502.84, + "X": 4504.44, "Y": -43.71, - "Z": -8776.99 + "Z": -8779.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875266,9 +875266,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5219.11, + "X": 5220.71, "Y": -126.41, - "Z": -8122.68 + "Z": -8125.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875434,9 +875434,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4567.53, + "X": 4569.13, "Y": -72.45, - "Z": -7702.47 + "Z": -7705.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875628,9 +875628,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4172.16, + "X": 4173.76, "Y": -93.82, - "Z": -8113.56 + "Z": -8116.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875799,9 +875799,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4962.28, + "X": 4963.88, "Y": -84.11, - "Z": -8661.41 + "Z": -8664.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875970,9 +875970,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5077.7, + "X": 5079.3, "Y": -65.26, - "Z": -8502.43 + "Z": -8505.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876141,9 +876141,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4934.2, + "X": 4935.8, "Y": -166.2, - "Z": -7627.08 + "Z": -7629.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876341,9 +876341,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6610.06, + "X": 6612.2, "Y": 112.82, - "Z": -9067.19 + "Z": -9070.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876498,9 +876498,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6828.06, + "X": 6830.2, "Y": 160.61, - "Z": -8410.69 + "Z": -8413.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876655,9 +876655,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6129.16, + "X": 6131.3, "Y": 252.1, - "Z": -8730.79 + "Z": -8733.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876812,9 +876812,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6530.57, + "X": 6532.71, "Y": 135.41, - "Z": -8733.67 + "Z": -8736.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877120,9 +877120,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6912.47, + "X": 6914.61, "Y": 94.78, - "Z": -8960.05 + "Z": -8962.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877308,9 +877308,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6288.46, + "X": 6290.6, "Y": 231.79, - "Z": -8574.55 + "Z": -8577.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884504,9 +884504,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5853.3, + "X": 5854.76, "Y": -300.32, - "Z": -9989.04 + "Z": -9991.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884672,9 +884672,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5588.33, + "X": 5589.8, "Y": -225.58, - "Z": -9295.22 + "Z": -9297.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884840,9 +884840,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5775.51, + "X": 5776.98, "Y": -210.37, - "Z": -9492.38 + "Z": -9494.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890104,9 +890104,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7466.25, + "X": 7468.31, "Y": -115.43, - "Z": -8877.44 + "Z": -8879.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890261,9 +890261,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7478.9, + "X": 7480.97, "Y": -71.41, - "Z": -8731.2 + "Z": -8733.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890418,9 +890418,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7242.32, + "X": 7244.38, "Y": -21.96, - "Z": -8555.29 + "Z": -8557.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897310,9 +897310,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6432.56, + "X": 6434.42, "Y": 147.19, - "Z": -9406.71 + "Z": -9409.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899206,7 +899206,7 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.72%", + "Error & Exception Exposure": "46.1%", "Tech Debt Exposure": "53.79%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", @@ -899502,7 +899502,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -899628,9 +899628,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -899662,7 +899662,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -899745,7 +899745,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, @@ -899977,9 +899977,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8013.2, + "X": 8015.5, "Y": -23.25, - "Z": -8118.05 + "Z": -8120.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906036,9 +906036,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2666.91, + "X": 2667.3, "Y": 287.86, - "Z": -9993.43 + "Z": -9994.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906204,9 +906204,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2889.07, + "X": 2889.46, "Y": 208.99, - "Z": -10251.99 + "Z": -10253.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -907308,9 +907308,9 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907359,9 +907359,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907393,7 +907393,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -907476,7 +907476,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, @@ -914523,9 +914523,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3524.65, + "X": 3525.15, "Y": -80.09, - "Z": -10038.34 + "Z": -10039.78 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915247,9 +915247,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5413.75, + "X": 5415.23, "Y": 139.72, - "Z": -9767.89 + "Z": -9770.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915971,9 +915971,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7148.36, + "X": 7150.53, "Y": -122.51, - "Z": -8941.09 + "Z": -8943.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921584,9 +921584,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4387.67, + "X": 4388.21, "Y": 27.26, - "Z": -10356.37 + "Z": -10357.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -922308,9 +922308,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6286.25, + "X": 6287.75, "Y": -166.67, - "Z": -9826.65 + "Z": -9829.0 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -923032,9 +923032,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7995.22, + "X": 7997.3, "Y": -156.25, - "Z": -8802.19 + "Z": -8804.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -928459,9 +928459,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4743.76, + "X": 4745.0, "Y": 252.02, - "Z": -9990.53 + "Z": -9993.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -928616,9 +928616,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4486.51, + "X": 4487.75, "Y": 281.75, - "Z": -9893.19 + "Z": -9895.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified",