diff --git a/gitgalaxy/core/detector.py b/gitgalaxy/core/detector.py index d9055074b..bedbcd19a 100644 --- a/gitgalaxy/core/detector.py +++ b/gitgalaxy/core/detector.py @@ -2555,6 +2555,73 @@ def _dart_scan_terminator( end_idx = semi_after_arrow + 1 else: continue + # #1629: typescript/javascript idiomatically use brace-less, + # expression-bodied arrow functions (`const swap = (x) => x + 1`, + # curried FP chains with no `{` anywhere in the definition -- + # fp-ts's primary export shape). The generic brace-only fallback + # below drops every one of them; at least 88 of the corpus's 159 + # func recall misses are this shape. Mirror #1266's scala + # approach: when no `{` shows up in the window, find the first + # un-nested `=>` after the signature and bound the expression + # body by the next func_start match (TS/JS arrow bodies have no + # reliable `;` terminator either, so the next-match bound is the + # closer analogy than csharp's trailing-semicolon scan). + elif lang_id in ("typescript", "javascript"): + # A brace-less assignment match that is itself in expression + # position (preceding non-whitespace char is `>`/`)`/`,`) is a + # return type, not a name -- `=> M = (M) => ...` in fp-ts's + # foldMap reports a phantom `M`. Only declaration-position + # matches (`const swap = ...`, line-start object members) are + # real functions. + if start_idx > 0: + p = start_idx - 1 + while p >= 0 and safe_code[p] in " \t": + p -= 1 + if p >= 0 and safe_code[p] in ">),": + continue + brace_idx = safe_code.find(opener, start_idx, search_limit) + if brace_idx != -1: + end_idx = self._find_balanced_end(safe_code, brace_idx, opener, closer) + else: + # Only assignment-shaped matches (`const foo = ... => ...` + # or `foo: Type = ... => ...`) are real runtime functions. + # An interface/type member's function-type annotation + # (`readonly alt: (...) => ...`, no `=` anywhere before + # its `=>`) is pure type-level syntax -- #1631's remaining + # phantom shape -- so require an un-nested `=` before the + # first `=>`. + depth_paren = depth_bracket = depth_angle = 0 + pos = match.end() + saw_assignment = False + arrow_idx = -1 + while pos < search_limit: + ch = safe_code[pos] + if ch == "(": + depth_paren += 1 + elif ch == ")": + depth_paren = max(0, depth_paren - 1) + elif ch == "[": + depth_bracket += 1 + elif ch == "]": + depth_bracket = max(0, depth_bracket - 1) + elif ch == "<": + depth_angle += 1 + elif ch == ">": + depth_angle = max(0, depth_angle - 1) + elif depth_paren == 0 and depth_bracket == 0 and depth_angle == 0: + if ch == "=" and pos + 1 < search_limit and safe_code[pos + 1] == ">": + if saw_assignment: + arrow_idx = pos + break + break # the `=>` belongs to an annotation, not an assignment + if ch == "=": + saw_assignment = True + elif ch in ";{": + break # the statement ended without an arrow -- not a function body + pos += 1 + if arrow_idx == -1: + continue + end_idx = next_match_start else: brace_idx = safe_code.find(opener, start_idx, search_limit) if brace_idx == -1: diff --git a/tests/core_engine/test_detector.py b/tests/core_engine/test_detector.py index 6740c8af7..87ac38d84 100644 --- a/tests/core_engine/test_detector.py +++ b/tests/core_engine/test_detector.py @@ -2118,23 +2118,46 @@ def test_detector_csharp_lambda_default_parameter_arrow_not_mistaken_for_body(): assert "f(1)" in code[: code.index(";") + 1] -def test_detector_csharp_expression_body_fallback_gated_to_csharp_only(): +def test_detector_ts_js_braceless_arrow_capture(): + """ + #1629: typescript/javascript brace-less arrow functions + (`const double = (x) => x * 2;`) are real functions and must be + captured by _slice_by_braces, not dropped by the generic brace-only + fallback. This replaced the old expectation (tested pre-#1629 in + test_detector_csharp_expression_body_fallback_gated_to_csharp_only) + that no non-csharp language may use an arrow fallback -- TS/JS now + have their own next-match-bounded version of that handling, because + brace-less expression bodies are their dominant export shape + (88 of 159 corpus recall misses were this shape). """ - The `=>`-then-`;` fallback in _slice_by_braces is explicitly gated to - `lang_id == "csharp"` -- proves it doesn't change behavior for other - Mode-B (brace-slicing) languages that also use `=>` for lambdas - (e.g. javascript/typescript arrow functions assigned to a const, - which are not real func_start matches and must still produce zero - satellites, not a hallucinated one via the new fallback). + from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS + + for lang in ("typescript", "javascript"): + detector = StructuralExtractor(lang, LANGUAGE_DEFINITIONS) + rules = LANGUAGE_DEFINITIONS[lang]["rules"] + code = "const double = (x) => x * 2;\n" + + satellites, _ = detector._slice_by_braces(code, lang, rules, 0, {}) + names = [s["name"] for s in satellites] + assert names == ["double"], f"[{lang}] brace-less arrow not captured: {names}" + + +def test_detector_ts_js_braceless_arrow_capture_gated_from_other_mode_b_languages(): + """ + The #1629 brace-less arrow capture is deliberately gated to + `lang_id in ("typescript", "javascript")` -- other Mode-B languages + keep the generic brace-only fallback. Proves a Mode-B language without + the gate still drops a brace-less arrow-shaped const rather than + hallucinating a function from it. """ from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS - js_detector = StructuralExtractor("javascript", LANGUAGE_DEFINITIONS) - js_rules = LANGUAGE_DEFINITIONS["javascript"]["rules"] + php_detector = StructuralExtractor("php", LANGUAGE_DEFINITIONS) + php_rules = LANGUAGE_DEFINITIONS["php"]["rules"] code = "const double = (x) => x * 2;\n" - satellites, _ = js_detector._slice_by_braces(code, "javascript", js_rules, 0, {}) - assert satellites == [], "the csharp-only arrow fallback must not fire for other languages" + satellites, _ = php_detector._slice_by_braces(code, "php", php_rules, 0, {}) + assert satellites == [], "the ts/js brace-less arrow capture must not fire for other Mode-B languages" # ============================================================================== diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index b6ddd1bfd..c5f727b8e 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "H:\\deepseek work\\language-crucible-clean\\data", - "Analysis ISO Timestamp": "2026-08-15T16:23:00.688313+00:00", - "Total Scan Duration": "31.62 seconds" + "Analysis ISO Timestamp": "2026-08-15T18:22:38.410076+00:00", + "Total Scan Duration": "31.16 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -196,10 +196,10 @@ } }, "health": { - "avg_cognitive_load": 24.647, + "avg_cognitive_load": 24.668, "avg_safety_score": 38.602, "avg_tech_debt": 23.245, - "avg_documentation": 21.516 + "avg_documentation": 21.519 }, "composition": { "xml": { @@ -360,7 +360,7 @@ "typescript": { "files": 24, "loc": 36020, - "impact": 4182.3 + "impact": 4192.11 }, "kotlin": { "files": 5, @@ -940,7 +940,7 @@ }, "typescript/playwright": { "file_count": 11, - "total_mass": 520.85, + "total_mass": 522.4, "avg_exposures": { "cognitive_load": 44.71, "safety_score": 58.04, @@ -1795,20 +1795,20 @@ }, "typescript/fp-ts": { "file_count": 5, - "total_mass": 107.36, + "total_mass": 117.56, "avg_exposures": { - "cognitive_load": 3.05, + "cognitive_load": 3.14, "safety_score": 43.91, "tech_debt": 0.0, "verification": 48.46, - "api_exposure": 10.47, + "api_exposure": 10.48, "concurrency": 4.28, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 80.0, "stability": 40.0, "churn": 0.0, - "documentation": 45.34, + "documentation": 45.81, "secrets_risk": 0.0 } }, @@ -1833,10 +1833,10 @@ }, "typescript/vscode": { "file_count": 11, - "total_mass": 1392.44, + "total_mass": 1390.5, "avg_exposures": { - "cognitive_load": 33.44, - "safety_score": 59.88, + "cognitive_load": 35.14, + "safety_score": 59.85, "tech_debt": 44.35, "verification": 44.29, "api_exposure": 4.25, @@ -4040,15 +4040,15 @@ "path": "typescript/playwright/crConnection.ts", "value": 696.07 }, + { + "name": "codeEditorWidget.ts", + "path": "typescript/vscode/codeEditorWidget.ts", + "value": 694.18 + }, { "name": "ci.psm1", "path": "powershell/core/ci.psm1", "value": 688.42 - }, - { - "name": "ipc.ts", - "path": "typescript/vscode/ipc.ts", - "value": 678.34 } ], "lowest": [ @@ -53178,9 +53178,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 3541.86, + "X": 3541.94, "Y": -122.98, - "Z": -4248.16 + "Z": -4248.26 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -55215,9 +55215,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 3819.19, + "X": 3819.27, "Y": -93.04, - "Z": -4650.1 + "Z": -4650.2 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -59756,9 +59756,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 3947.67, + "X": 3947.75, "Y": -157.14, - "Z": -5050.94 + "Z": -5051.03 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -61831,9 +61831,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 4222.59, + "X": 4222.67, "Y": 74.28, - "Z": -4156.06 + "Z": -4156.16 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -63306,9 +63306,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 3281.41, + "X": 3281.49, "Y": -183.14, - "Z": -4939.29 + "Z": -4939.39 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -239390,9 +239390,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 2410.29, + "X": 2410.36, "Y": -315.53, - "Z": -5234.53 + "Z": -5234.66 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -239581,9 +239581,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2685.17, + "X": 2685.24, "Y": -197.74, - "Z": -4715.86 + "Z": -4715.98 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -240468,9 +240468,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3296.88, + "X": 3296.96, "Y": -174.89, - "Z": -4609.22 + "Z": -4609.34 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -240818,9 +240818,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3023.79, + "X": 3023.86, "Y": -311.98, - "Z": -5474.08 + "Z": -5474.21 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -241585,9 +241585,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": 3405.35, + "X": 3405.42, "Y": -289.85, - "Z": -5325.05 + "Z": -5325.18 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -241773,9 +241773,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2922.53, + "X": 2922.61, "Y": -233.45, - "Z": -5212.67 + "Z": -5212.79 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -341709,9 +341709,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 4363.5, + "X": 4363.62, "Y": 286.85, - "Z": 3643.94 + "Z": 3644.05 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -341918,9 +341918,9 @@ "Identity Proof": "Metadata Anchor (Package.swift)" }, "2. Topological Coordinates": { - "X": 4745.22, + "X": 4745.34, "Y": 252.72, - "Z": 3540.95 + "Z": 3541.06 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -342096,9 +342096,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 3788.97, + "X": 3789.08, "Y": 166.02, - "Z": 3929.07 + "Z": 3929.17 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -342355,9 +342355,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 4065.75, + "X": 4065.86, "Y": 82.33, - "Z": 4253.43 + "Z": 4253.53 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -343024,9 +343024,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 4640.77, + "X": 4640.89, "Y": 126.68, - "Z": 4284.67 + "Z": 4284.77 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -343353,9 +343353,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 4323.87, + "X": 4323.99, "Y": 135.59, - "Z": 3762.72 + "Z": 3762.83 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -369506,7 +369506,7 @@ } }, "typescript/vscode": { - "Directory Group Magnitude": 1392.44, + "Directory Group Magnitude": 1390.5, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "file_cluster_11": "36.4%", @@ -369517,8 +369517,8 @@ "file_cluster_3": "9.1%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "33.44%", - "Error & Exception Exposure": "59.88%", + "Cognitive Load Exposure": "35.14%", + "Error & Exception Exposure": "59.85%", "Tech Debt Exposure": "44.35%", "Testing Exposure": "44.29%", "API Exposure": "4.25%", @@ -369545,9 +369545,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 3935.05, - "Y": 106.22, - "Z": 2291.57 + "X": 3935.13, + "Y": 106.21, + "Z": 2291.55 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -369702,9 +369702,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 3122.02, - "Y": 65.6, - "Z": 3136.2 + "X": 3122.01, + "Y": 65.59, + "Z": 3136.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -369859,8 +369859,8 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 4110.76, - "Y": 160.23, + "X": 4110.88, + "Y": 160.24, "Z": 2577.38 }, "3. Architectural Profile": { @@ -370056,50 +370056,50 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3477.76, + "X": 3477.86, "Y": 154.09, "Z": 3299.86 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_4", - "Repository Drift (Z-Score)": 15.344, + "Repository Drift (Z-Score)": 15.334, "Repository Fingerprint": { - "file_cluster_0": 15.977, - "file_cluster_1": 16.52, - "file_cluster_2": 16.086, - "file_cluster_3": 16.75, - "file_cluster_4": 15.344, - "file_cluster_5": 16.784, - "file_cluster_6": 16.085, - "file_cluster_7": 16.206, - "file_cluster_8": 16.185, - "file_cluster_9": 16.261, - "file_cluster_10": 16.772, - "file_cluster_11": 15.451, - "file_cluster_12": 16.436, - "file_cluster_13": 15.848, - "file_cluster_14": 18.444, - "file_cluster_15": 15.843, - "file_cluster_16": 15.702, - "file_cluster_17": 15.846 + "file_cluster_0": 15.967, + "file_cluster_1": 16.51, + "file_cluster_2": 16.075, + "file_cluster_3": 16.739, + "file_cluster_4": 15.334, + "file_cluster_5": 16.774, + "file_cluster_6": 16.075, + "file_cluster_7": 16.195, + "file_cluster_8": 16.174, + "file_cluster_9": 16.251, + "file_cluster_10": 16.762, + "file_cluster_11": 15.441, + "file_cluster_12": 16.426, + "file_cluster_13": 15.838, + "file_cluster_14": 18.436, + "file_cluster_15": 15.833, + "file_cluster_16": 15.691, + "file_cluster_17": 15.836 }, "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 7.086, + "File Drift (Z-Score)": 7.085, "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 8.417, - "Cluster 1: Async Scripting & I/O Automation": 8.183, - "Cluster 2: Type Definitions & Bypasses": 8.182, - "Cluster 3: UI Frameworks & View Layers": 7.745, - "Cluster 4: Heavily Documented Core Classes": 7.942, - "Cluster 5: Declarative Glue & Inert Types": 7.553, - "Cluster 6: Async Testing & Verification": 9.041, + "Cluster 0: The God Nodes (Universal Dependencies)": 8.416, + "Cluster 1: Async Scripting & I/O Automation": 8.182, + "Cluster 2: Type Definitions & Bypasses": 8.181, + "Cluster 3: UI Frameworks & View Layers": 7.743, + "Cluster 4: Heavily Documented Core Classes": 7.94, + "Cluster 5: Declarative Glue & Inert Types": 7.552, + "Cluster 6: Async Testing & Verification": 9.04, "Cluster 7: Highly Concurrent State Management": 8.035, - "Cluster 8: Algorithmic Data Processing": 7.086 + "Cluster 8: Algorithmic Data Processing": 7.085 }, "Total LOC": 2646, "Coding LOC": 1803, "Documentation LOC": 419, - "Structural Magnitude": 322.77, + "Structural Magnitude": 319.13, "Control Flow Ratio": "33.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -370109,9 +370109,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "57.8%", - "Error & Exception Exposure": "93.25%", + "Error & Exception Exposure": "93.04%", "Tech Debt Exposure": "75.38%", - "Testing Exposure": "2.48%", + "Testing Exposure": "2.47%", "API Exposure": "6.5%", "Concurrency Exposure": "100.0%", "State Flux Exposure": "100.0%", @@ -370143,16 +370143,6 @@ "Start Line": 1341, "End Line": 1384 }, - { - "Function Name": "boolean", - "Structural Impact": 17.2, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "58.8%", - "Start Line": 648, - "End Line": 679 - }, { "Function Name": "timeRemaining", "Structural Impact": 15.8, @@ -370353,16 +370343,6 @@ "Start Line": 1552, "End Line": 1566 }, - { - "Function Name": "any", - "Structural Impact": 8.7, - "Lines of Code (LOC)": 74, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "44.4%", - "Start Line": 1101, - "End Line": 1174 - }, { "Function Name": "_runWhenIdle", "Structural Impact": 8.7, @@ -370603,16 +370583,6 @@ "Start Line": 2341, "End Line": 2347 }, - { - "Function Name": "boolean", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "18.2%", - "Start Line": 618, - "End Line": 640 - }, { "Function Name": "queue", "Structural Impact": 5.3, @@ -371633,6 +371603,16 @@ "Start Line": 1545, "End Line": 1547 }, + { + "Function Name": "_emitManyFn", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2230, + "End Line": 2238 + }, { "Function Name": "constructor", "Structural Impact": 1.8, @@ -371893,6 +371873,26 @@ "Start Line": 2551, "End Line": 2554 }, + { + "Function Name": "_errorFn", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2228, + "End Line": 2229 + }, + { + "Function Name": "_emitOneFn", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2229, + "End Line": 2230 + }, { "Function Name": "emitOne", "Structural Impact": 1.5, @@ -372436,7 +372436,7 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 129, - "State Mutations / Variable Reassignments": 1221, + "State Mutations / Variable Reassignments": 1211, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 76, "Unit Test Assertions": 0, @@ -372554,59 +372554,59 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3658.41, + "X": 3658.47, "Y": 139.86, - "Z": 2946.34 + "Z": 2946.39 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", - "Repository Drift (Z-Score)": 15.041, + "Repository Drift (Z-Score)": 15.04, "Repository Fingerprint": { - "file_cluster_0": 15.422, + "file_cluster_0": 15.421, "file_cluster_1": 16.125, - "file_cluster_2": 15.602, + "file_cluster_2": 15.601, "file_cluster_3": 16.235, - "file_cluster_4": 15.53, - "file_cluster_5": 16.434, + "file_cluster_4": 15.529, + "file_cluster_5": 16.433, "file_cluster_6": 15.725, "file_cluster_7": 15.788, "file_cluster_8": 15.607, "file_cluster_9": 15.791, - "file_cluster_10": 16.414, - "file_cluster_11": 15.041, + "file_cluster_10": 16.413, + "file_cluster_11": 15.04, "file_cluster_12": 16.038, "file_cluster_13": 15.173, "file_cluster_14": 17.913, "file_cluster_15": 15.65, - "file_cluster_16": 15.552, - "file_cluster_17": 15.451 + "file_cluster_16": 15.551, + "file_cluster_17": 15.45 }, "File Archetype": "Cluster 5: Declarative Glue & Inert Types", - "File Drift (Z-Score)": 6.387, + "File Drift (Z-Score)": 6.39, "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 7.523, - "Cluster 1: Async Scripting & I/O Automation": 7.528, - "Cluster 2: Type Definitions & Bypasses": 8.861, - "Cluster 3: UI Frameworks & View Layers": 7.077, - "Cluster 4: Heavily Documented Core Classes": 7.923, - "Cluster 5: Declarative Glue & Inert Types": 6.387, - "Cluster 6: Async Testing & Verification": 8.792, - "Cluster 7: Highly Concurrent State Management": 7.906, - "Cluster 8: Algorithmic Data Processing": 6.427 + "Cluster 0: The God Nodes (Universal Dependencies)": 7.525, + "Cluster 1: Async Scripting & I/O Automation": 7.53, + "Cluster 2: Type Definitions & Bypasses": 8.863, + "Cluster 3: UI Frameworks & View Layers": 7.079, + "Cluster 4: Heavily Documented Core Classes": 7.925, + "Cluster 5: Declarative Glue & Inert Types": 6.39, + "Cluster 6: Async Testing & Verification": 8.794, + "Cluster 7: Highly Concurrent State Management": 7.908, + "Cluster 8: Algorithmic Data Processing": 6.429 }, "Total LOC": 2560, "Coding LOC": 2125, "Documentation LOC": 66, - "Structural Magnitude": 325.77, + "Structural Magnitude": 327.7, "Control Flow Ratio": "52.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.973 + "Raw Cognitive Density": 1.314 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "67.89%", + "Cognitive Load Exposure": "86.67%", "Error & Exception Exposure": "99.0%", "Tech Debt Exposure": "55.71%", "Testing Exposure": "80.0%", @@ -373941,6 +373941,16 @@ "Start Line": 1247, "End Line": 1252 }, + { + "Function Name": "onMouseWheel", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1990, + "End Line": 2006 + }, { "Function Name": "_beginUpdate", "Structural Impact": 2.3, @@ -374121,6 +374131,16 @@ "Start Line": 2189, "End Line": 2194 }, + { + "Function Name": "update", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2343, + "End Line": 2368 + }, { "Function Name": "reset", "Structural Impact": 2.0, @@ -374351,6 +374371,106 @@ "Start Line": 1668, "End Line": 1668 }, + { + "Function Name": "onKeyDown", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1980, + "End Line": 1981 + }, + { + "Function Name": "onKeyUp", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1981, + "End Line": 1982 + }, + { + "Function Name": "onContextMenu", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1982, + "End Line": 1983 + }, + { + "Function Name": "onMouseMove", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1983, + "End Line": 1984 + }, + { + "Function Name": "onMouseLeave", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1984, + "End Line": 1985 + }, + { + "Function Name": "onMouseDown", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1985, + "End Line": 1986 + }, + { + "Function Name": "onMouseUp", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1986, + "End Line": 1987 + }, + { + "Function Name": "onMouseDrag", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1987, + "End Line": 1988 + }, + { + "Function Name": "onMouseDrop", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1988, + "End Line": 1989 + }, + { + "Function Name": "onMouseDropCanceled", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1989, + "End Line": 1990 + }, { "Function Name": "getSupportedActions", "Structural Impact": 1.4, @@ -374667,7 +374787,7 @@ "Dependency Injection Constructs": 4, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 78, + "Manual Memory Allocation": 79, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 3, @@ -374814,9 +374934,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3980.02, - "Y": 265.31, - "Z": 3334.4 + "X": 3980.11, + "Y": 265.32, + "Z": 3334.5 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -378781,9 +378901,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4285.89, - "Y": 307.12, - "Z": 2980.51 + "X": 4286.01, + "Y": 307.14, + "Z": 2980.57 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -379107,9 +379227,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3459.51, - "Y": 54.87, - "Z": 2568.81 + "X": 3459.54, + "Y": 54.85, + "Z": 2568.79 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -379616,49 +379736,49 @@ }, "2. Topological Coordinates": { "X": 3175.83, - "Y": -5.15, - "Z": 3025.17 + "Y": -5.16, + "Z": 3025.21 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", - "Repository Drift (Z-Score)": 13.754, + "Repository Drift (Z-Score)": 13.743, "Repository Fingerprint": { - "file_cluster_0": 14.908, - "file_cluster_1": 15.633, - "file_cluster_2": 14.78, - "file_cluster_3": 14.518, - "file_cluster_4": 14.474, - "file_cluster_5": 15.852, - "file_cluster_6": 15.043, - "file_cluster_7": 15.297, - "file_cluster_8": 15.197, - "file_cluster_9": 15.207, - "file_cluster_10": 15.664, - "file_cluster_11": 13.754, - "file_cluster_12": 15.285, - "file_cluster_13": 14.682, - "file_cluster_14": 15.538, - "file_cluster_15": 14.834, - "file_cluster_16": 14.766, - "file_cluster_17": 14.537 + "file_cluster_0": 14.897, + "file_cluster_1": 15.621, + "file_cluster_2": 14.769, + "file_cluster_3": 14.506, + "file_cluster_4": 14.464, + "file_cluster_5": 15.841, + "file_cluster_6": 15.032, + "file_cluster_7": 15.286, + "file_cluster_8": 15.185, + "file_cluster_9": 15.196, + "file_cluster_10": 15.653, + "file_cluster_11": 13.743, + "file_cluster_12": 15.274, + "file_cluster_13": 14.671, + "file_cluster_14": 15.527, + "file_cluster_15": 14.823, + "file_cluster_16": 14.754, + "file_cluster_17": 14.526 }, "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 7.425, + "File Drift (Z-Score)": 7.424, "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 8.651, - "Cluster 1: Async Scripting & I/O Automation": 8.481, - "Cluster 2: Type Definitions & Bypasses": 7.79, - "Cluster 3: UI Frameworks & View Layers": 8.118, - "Cluster 4: Heavily Documented Core Classes": 7.585, - "Cluster 5: Declarative Glue & Inert Types": 7.867, - "Cluster 6: Async Testing & Verification": 9.092, + "Cluster 0: The God Nodes (Universal Dependencies)": 8.65, + "Cluster 1: Async Scripting & I/O Automation": 8.48, + "Cluster 2: Type Definitions & Bypasses": 7.789, + "Cluster 3: UI Frameworks & View Layers": 8.116, + "Cluster 4: Heavily Documented Core Classes": 7.583, + "Cluster 5: Declarative Glue & Inert Types": 7.865, + "Cluster 6: Async Testing & Verification": 9.091, "Cluster 7: Highly Concurrent State Management": 8.022, - "Cluster 8: Algorithmic Data Processing": 7.425 + "Cluster 8: Algorithmic Data Processing": 7.424 }, "Total LOC": 1308, "Coding LOC": 962, "Documentation LOC": 126, - "Structural Magnitude": 145.32, + "Structural Magnitude": 145.09, "Control Flow Ratio": "39.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -379668,7 +379788,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "80.66%", - "Error & Exception Exposure": "92.57%", + "Error & Exception Exposure": "92.4%", "Tech Debt Exposure": "40.25%", "Testing Exposure": "80.0%", "API Exposure": "3.69%", @@ -380492,6 +380612,16 @@ "Start Line": 247, "End Line": 251 }, + { + "Function Name": "IHandler", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 689, + "End Line": 693 + }, { "Function Name": "write", "Structural Impact": 1.6, @@ -380605,7 +380735,7 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 33, - "State Mutations / Variable Reassignments": 447, + "State Mutations / Variable Reassignments": 443, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 16, "Unit Test Assertions": 0, @@ -380726,9 +380856,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3514.32, - "Y": 207.55, - "Z": 3527.99 + "X": 3514.36, + "Y": 207.56, + "Z": 3528.1 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -381812,9 +381942,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3750.39, - "Y": 133.7, - "Z": 2542.56 + "X": 3750.45, + "Y": 133.69, + "Z": 2542.53 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_3", @@ -400952,7 +401082,7 @@ } }, "typescript/playwright": { - "Directory Group Magnitude": 520.85, + "Directory Group Magnitude": 522.4, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "Static: Literature & Documentation": "36.4%", @@ -400990,9 +401120,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3384.98, + "X": 3385.06, "Y": -338.07, - "Z": -4306.41 + "Z": -4306.48 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -401147,9 +401277,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3416.02, - "Y": -406.36, - "Z": -3802.06 + "X": 3416.11, + "Y": -406.38, + "Z": -3802.08 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -401304,9 +401434,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2389.76, - "Y": -192.26, - "Z": -3713.02 + "X": 2389.74, + "Y": -192.25, + "Z": -3713.04 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -401461,9 +401591,9 @@ "Identity Proof": "Metadata Anchor (NOTICE)" }, "2. Topological Coordinates": { - "X": 3224.97, + "X": 3225.02, "Y": -252.84, - "Z": -4456.74 + "Z": -4456.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -401618,9 +401748,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2774.75, - "Y": -272.88, - "Z": -3544.13 + "X": 2774.77, + "Y": -272.89, + "Z": -3544.12 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -401837,9 +401967,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2446.03, - "Y": -158.16, - "Z": -3984.31 + "X": 2446.01, + "Y": -158.15, + "Z": -3984.37 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -402214,9 +402344,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2995.16, + "X": 2995.2, "Y": -180.7, - "Z": -4481.52 + "Z": -4481.62 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -402625,8 +402755,8 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3143.89, - "Y": -328.89, + "X": 3143.95, + "Y": -328.9, "Z": -3623.25 }, "3. Architectural Profile": { @@ -403023,9 +403153,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2676.96, + "X": 2676.95, "Y": -217.04, - "Z": -3890.38 + "Z": -3890.39 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_4", @@ -403545,9 +403675,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2880.24, + "X": 2880.28, "Y": -230.5, - "Z": -3924.05 + "Z": -3924.1 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_4", @@ -403564,9 +403694,9 @@ "file_cluster_8": 15.162, "file_cluster_9": 15.376, "file_cluster_10": 15.93, - "file_cluster_11": 14.38, + "file_cluster_11": 14.379, "file_cluster_12": 15.624, - "file_cluster_13": 14.873, + "file_cluster_13": 14.872, "file_cluster_14": 17.192, "file_cluster_15": 15.068, "file_cluster_16": 15.219, @@ -403588,7 +403718,7 @@ "Total LOC": 1823, "Coding LOC": 1533, "Documentation LOC": 91, - "Structural Magnitude": 328.03, + "Structural Magnitude": 329.58, "Control Flow Ratio": "46.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -403822,6 +403952,16 @@ "Start Line": 254, "End Line": 267 }, + { + "Function Name": "predicate", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 676, + "End Line": 690 + }, { "Function Name": "predicate", "Structural Impact": 8.9, @@ -404442,6 +404582,16 @@ "Start Line": 943, "End Line": 947 }, + { + "Function Name": "onerror", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1009, + "End Line": 1015 + }, { "Function Name": "collect", "Structural Impact": 3.1, @@ -404502,6 +404652,16 @@ "Start Line": 737, "End Line": 739 }, + { + "Function Name": "onerror", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 997, + "End Line": 1002 + }, { "Function Name": "fixupMetadataError", "Structural Impact": 3.1, @@ -405305,9 +405465,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2675.59, - "Y": -153.41, - "Z": -4670.23 + "X": 2675.6, + "Y": -153.4, + "Z": -4670.32 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_3", @@ -412216,9 +412376,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4390.68, + "X": 4390.76, "Y": 97.38, - "Z": -4768.23 + "Z": -4768.32 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -412373,9 +412533,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4594.75, + "X": 4594.83, "Y": 141.84, - "Z": -4976.41 + "Z": -4976.5 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -415432,9 +415592,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 4325.11, + "X": 4325.22, "Y": 211.04, - "Z": 4954.25 + "Z": 4954.36 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -415589,9 +415749,9 @@ "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": 4566.65, + "X": 4566.76, "Y": 251.14, - "Z": 4535.78 + "Z": 4535.89 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -420599,110 +420759,92 @@ } } }, - "assembly/hellosilicon": { - "Directory Group Magnitude": 114.36, - "File Count": 4, + "typescript/fp-ts": { + "Directory Group Magnitude": 117.56, + "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { - "file_cluster_8": "100.0%" + "file_cluster_16": "80.0%", + "Static: Literature & Documentation": "20.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "11.35%", - "Error & Exception Exposure": "21.7%", - "Tech Debt Exposure": "24.89%", - "Testing Exposure": "2.43%", - "API Exposure": "3.2%", - "Concurrency Exposure": "0.0%", + "Cognitive Load Exposure": "3.14%", + "Error & Exception Exposure": "43.91%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "48.46%", + "API Exposure": "10.48%", + "Concurrency Exposure": "4.28%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "26.46%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "40.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.29%", + "Documentation Exposure": "45.81%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "assembly/hellosilicon/makefile": { + "typescript/fp-ts/package.json": { "1. Artifact Identity": { - "Filename": "makefile", - "Path": "assembly/hellosilicon/makefile", - "Language": "Makefile", + "Filename": "package.json", + "Path": "typescript/fp-ts/package.json", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "typescript", "Lock Tier": 2, "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 2.77, - "Y": 39.33, - "Z": 5315.15 + "X": 6052.13, + "Y": 181.47, + "Z": -1500.93 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 7.69, - "Repository Fingerprint": { - "file_cluster_0": 9.025, - "file_cluster_1": 8.863, - "file_cluster_2": 9.154, - "file_cluster_3": 10.551, - "file_cluster_4": 9.491, - "file_cluster_5": 9.722, - "file_cluster_6": 9.493, - "file_cluster_7": 8.556, - "file_cluster_8": 7.69, - "file_cluster_9": 9.248, - "file_cluster_10": 10.574, - "file_cluster_11": 9.709, - "file_cluster_12": 9.637, - "file_cluster_13": 9.047, - "file_cluster_14": 13.795, - "file_cluster_15": 9.946, - "file_cluster_16": 9.199, - "file_cluster_17": 9.317 - }, - "File Archetype": null, + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 32, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 53.96, - "Control Flow Ratio": "30.0%", + "Total LOC": 76, + "Coding LOC": 0, + "Documentation LOC": 75, + "Structural Magnitude": 1.52, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.348 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.67%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", - "API Exposure": "6.28%", - "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": "89.9%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 7, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 7, + "Function/Method Declarations": 0, "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": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -420736,11 +420878,11 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 6, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -420758,11 +420900,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 7, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 7, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -420797,133 +420939,625 @@ }, "9. Extracted Dependencies": [] }, - "assembly/hellosilicon/fileio.S": { + "typescript/fp-ts/Either.ts": { "1. Artifact Identity": { - "Filename": "fileio.S", - "Path": "assembly/hellosilicon/fileio.S", - "Language": "Assembly", + "Filename": "Either.ts", + "Path": "typescript/fp-ts/Either.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (80.0% Spaces / 20.0% Tabs)", + "Indentation Style": "Spaces", + "Parent Entity": "_, ReadonlyArray", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 295.7, - "Y": 89.29, - "Z": 5650.33 + "X": 6295.0, + "Y": 267.36, + "Z": -1193.03 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 8.012, + "Repository Archetype": "file_cluster_16", + "Repository Drift (Z-Score)": 11.874, "Repository Fingerprint": { - "file_cluster_0": 9.809, - "file_cluster_1": 8.474, - "file_cluster_2": 9.496, - "file_cluster_3": 10.867, - "file_cluster_4": 10.202, - "file_cluster_5": 9.917, - "file_cluster_6": 10.079, - "file_cluster_7": 9.015, - "file_cluster_8": 8.012, - "file_cluster_9": 9.894, - "file_cluster_10": 11.068, - "file_cluster_11": 10.503, - "file_cluster_12": 10.227, - "file_cluster_13": 9.664, - "file_cluster_14": 14.07, - "file_cluster_15": 10.564, - "file_cluster_16": 9.757, - "file_cluster_17": 9.944 + "file_cluster_0": 13.034, + "file_cluster_1": 13.223, + "file_cluster_2": 12.206, + "file_cluster_3": 13.826, + "file_cluster_4": 13.447, + "file_cluster_5": 13.47, + "file_cluster_6": 13.196, + "file_cluster_7": 12.892, + "file_cluster_8": 12.849, + "file_cluster_9": 13.334, + "file_cluster_10": 13.875, + "file_cluster_11": 12.621, + "file_cluster_12": 13.378, + "file_cluster_13": 12.267, + "file_cluster_14": 15.824, + "file_cluster_15": 12.962, + "file_cluster_16": 11.874, + "file_cluster_17": 12.912 }, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 51, - "Coding LOC": 44, - "Documentation LOC": 1, - "Structural Magnitude": 15.88, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "File Archetype": "Cluster 8: Algorithmic Data Processing", + "File Drift (Z-Score)": 6.994, + "File Fingerprint": { + "Cluster 0: The God Nodes (Universal Dependencies)": 8.158, + "Cluster 1: Async Scripting & I/O Automation": 8.056, + "Cluster 2: Type Definitions & Bypasses": 8.194, + "Cluster 3: UI Frameworks & View Layers": 7.554, + "Cluster 4: Heavily Documented Core Classes": 7.659, + "Cluster 5: Declarative Glue & Inert Types": 7.463, + "Cluster 6: Async Testing & Verification": 9.097, + "Cluster 7: Highly Concurrent State Management": 8.362, + "Cluster 8: Algorithmic Data Processing": 6.994 + }, + "Total LOC": 1854, + "Coding LOC": 608, + "Documentation LOC": 1110, + "Structural Magnitude": 35.01, + "Control Flow Ratio": "11.6%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.114 + "Raw Cognitive Density": 0.135 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.27%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "3.93%", + "Error & Exception Exposure": "39.87%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "12.84%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.5%", + "Documentation Exposure": "15.63%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "getFilterable", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "42.1%", + "Start Line": 281, + "End Line": 320 + }, + { + "Function Name": "getEq", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 228, + "End Line": 231 + }, + { + "Function Name": "getOrElseW", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 87, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "4.8%", + "Start Line": 1050, + "End Line": 1136 + }, + { + "Function Name": "getCompactable", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 260, + "End Line": 273 + }, + { + "Function Name": "elem", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "36.4%", + "Start Line": 1473, + "End Line": 1481 + }, + { + "Function Name": "matchW", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "5.9%", + "Start Line": 985, + "End Line": 1050 + }, + { + "Function Name": "traverseReadonlyNonEmptyArrayWithIndex", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1581, + "End Line": 1597 + }, + { + "Function Name": "getApplicativeValidation", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 404, + "End Line": 417 + }, + { + "Function Name": "_chainRec", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 193, + "End Line": 214 + }, + { + "Function Name": "toError", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 1458, + "End Line": 1464 + }, + { + "Function Name": "partition", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 289, + "End Line": 295 + }, + { + "Function Name": "filterMap", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 304, + "End Line": 310 + }, + { + "Function Name": "partitionMap", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 312, + "End Line": 318 + }, + { + "Function Name": "alt", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 457, + "End Line": 463 + }, + { + "Function Name": "orElseW", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "11.1%", + "Start Line": 1335, + "End Line": 1363 + }, + { + "Function Name": "tryCatch", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1393, + "End Line": 1399 + }, + { + "Function Name": "f", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 71, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1629, + "End Line": 1699 + }, + { + "Function Name": "getAltValidation", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 453, + "End Line": 464 + }, + { + "Function Name": "getSemigroup", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 250, + "End Line": 252 + }, + { + "Function Name": "fromNullable", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1363, + "End Line": 1393 + }, + { + "Function Name": "traverse", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "16.7%", + "Start Line": 687, + "End Line": 714 + }, + { + "Function Name": "stringifyJSON", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 1728, + "End Line": 1735 + }, + { + "Function Name": "f", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "16.7%", + "Start Line": 1606, + "End Line": 1610 + }, + { + "Function Name": "getShow", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 220, + "End Line": 222 + }, + { + "Function Name": "filter", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 286, + "End Line": 287 + }, + { + "Function Name": "exists", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1497, + "End Line": 1510 + }, + { + "Function Name": "swap", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1325, + "End Line": 1335 + }, + { + "Function Name": "sequence", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 714, + "End Line": 718 + }, + { + "Function Name": "f", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1542, + "End Line": 1543 + }, + { + "Function Name": "getValidation", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1822, + "End Line": 1853 + }, + { + "Function Name": "getWitherable", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 328, + "End Line": 349 + }, + { + "Function Name": "getValidationSemigroup", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1802, + "End Line": 1812 + }, + { + "Function Name": "getValidationMonoid", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1812, + "End Line": 1822 + }, + { + "Function Name": "_reduce", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 173, + "End Line": 175 + }, + { + "Function Name": "_reduceRight", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 180, + "End Line": 181 + }, + { + "Function Name": "_bimap", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 187, + "End Line": 188 + }, + { + "Function Name": "_ap", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 171, + "End Line": 173 + }, + { + "Function Name": "_mapLeft", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 188, + "End Line": 190 + }, + { + "Function Name": "_alt", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 190, + "End Line": 192 + }, + { + "Function Name": "parseJSON", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1717, + "End Line": 1719 + }, + { + "Function Name": "_map", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 170, + "End Line": 171 + }, + { + "Function Name": "_extend", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 192, + "End Line": 193 + }, + { + "Function Name": "onNone", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1228, + "End Line": 1234 + }, + { + "Function Name": "_traverse", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 181, + "End Line": 186 + }, + { + "Function Name": "f", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1424, + "End Line": 1428 + }, + { + "Function Name": "chainNullableK", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1436, + "End Line": 1441 + }, + { + "Function Name": "_foldMap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 175, + "End Line": 178 + }, + { + "Function Name": "elem", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1469, + "End Line": 1472 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 17, - "Function Parameters": 21, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 61, + "Sequential Logic Declarations": 463, + "Function Parameters": 248, + "Function/Method Declarations": 81, + "Class/Entity Declarations": 6, + "Defensive Programming Constructs": 29, + "Type/Safety Bypasses": 11, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 129, + "State Mutations / Variable Reassignments": 8, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 130, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "UI / View Layer Components": 157, + "Closures and Anonymous Functions": 19, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 424, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 32, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 5, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 13, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 3, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 5, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 30, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 5, + "Immutable Data Declarations": 149, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 5, - "Structural Space Indentations": 20, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 377, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 2, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -420934,13 +421568,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, + "Core Var Decl": 60, + "Design Camel Case": 30, + "Design Snake Case": 23, + "Design Pascal Case": 1, + "Design Upper Case": 5, + "Design Short Vars": 13, + "Design Long Vars": 2, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -420966,166 +421600,155 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 38, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "./Alt", + "./Applicative", + "./Apply", + "./Bifunctor", + "./Chain", + "./ChainRec", + "./Compactable", + "./Eq", + "./Extend", + "./Filterable", + "./Foldable", + "./FromEither", + "./Functor", + "./HKT", + "./Monad", + "./MonadThrow", + "./Monoid", + "./NonEmptyArray", + "./Option", + "./Pointed", + "./Predicate", + "./ReadonlyNonEmptyArray", + "./Refinement", + "./Semigroup", + "./Separated", + "./Show", + "./Traversable", + "./Witherable", + "./function", + "./internal", + "fp-ts/Apply", + "fp-ts/Either", + "fp-ts/Option", + "fp-ts/ReadonlyArray", + "fp-ts/Semigroup", + "fp-ts/function", + "fp-ts/number", + "fp-ts/string" + ] }, - "assembly/hellosilicon/mainpie.s": { + "typescript/fp-ts/HKT.ts": { "1. Artifact Identity": { - "Filename": "mainpie.s", - "Path": "assembly/hellosilicon/mainpie.s", - "Language": "Assembly", + "Filename": "HKT.ts", + "Path": "typescript/fp-ts/HKT.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (10.0% Spaces / 90.0% Tabs)", + "Indentation Style": "Spaces", + "Parent Entity": "HKT, HKT2, HKT3", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 12.79, - "Y": 59.85, - "Z": 4911.78 + "X": 6776.6, + "Y": 226.13, + "Z": -1051.54 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 13.951, + "Repository Archetype": "file_cluster_16", + "Repository Drift (Z-Score)": 10.808, "Repository Fingerprint": { - "file_cluster_0": 14.085, - "file_cluster_1": 14.337, - "file_cluster_2": 14.662, - "file_cluster_3": 15.325, - "file_cluster_4": 14.421, - "file_cluster_5": 15.001, - "file_cluster_6": 14.178, - "file_cluster_7": 14.373, - "file_cluster_8": 13.951, - "file_cluster_9": 14.053, - "file_cluster_10": 15.337, - "file_cluster_11": 14.415, - "file_cluster_12": 14.842, - "file_cluster_13": 14.311, - "file_cluster_14": 17.484, - "file_cluster_15": 14.945, - "file_cluster_16": 14.742, - "file_cluster_17": 14.191 + "file_cluster_0": 12.518, + "file_cluster_1": 12.289, + "file_cluster_2": 11.146, + "file_cluster_3": 13.371, + "file_cluster_4": 12.949, + "file_cluster_5": 12.654, + "file_cluster_6": 12.768, + "file_cluster_7": 11.956, + "file_cluster_8": 11.987, + "file_cluster_9": 12.794, + "file_cluster_10": 13.294, + "file_cluster_11": 12.624, + "file_cluster_12": 12.689, + "file_cluster_13": 12.101, + "file_cluster_14": 15.694, + "file_cluster_15": 12.669, + "file_cluster_16": 10.808, + "file_cluster_17": 12.391 }, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 54, - "Coding LOC": 41, - "Documentation LOC": 0, - "Structural Magnitude": 18.62, - "Control Flow Ratio": "40.0%", - "Popularity Rank": 0, + "File Archetype": "Cluster 2: Type Definitions & Bypasses", + "File Drift (Z-Score)": 10.368, + "File Fingerprint": { + "Cluster 0: The God Nodes (Universal Dependencies)": 13.121, + "Cluster 1: Async Scripting & I/O Automation": 13.124, + "Cluster 2: Type Definitions & Bypasses": 10.368, + "Cluster 3: UI Frameworks & View Layers": 12.849, + "Cluster 4: Heavily Documented Core Classes": 10.957, + "Cluster 5: Declarative Glue & Inert Types": 12.798, + "Cluster 6: Async Testing & Verification": 13.558, + "Cluster 7: Highly Concurrent State Management": 12.989, + "Cluster 8: Algorithmic Data Processing": 12.018 + }, + "Total LOC": 127, + "Coding LOC": 25, + "Documentation LOC": 82, + "Structural Magnitude": 3.15, + "Control Flow Ratio": "8.5%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.317 + "Raw Cognitive Density": 0.16 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.04%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.56%", - "Testing Exposure": "2.59%", - "API Exposure": "3.46%", + "Cognitive Load Exposure": "4.31%", + "Error & Exception Exposure": "99.36%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "11.68%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "58.26%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.32%", + "Documentation Exposure": "82.38%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "DownloadCreditCardNumbers", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 13, - "End Line": 21 - }, - { - "Function Name": "calltoupper", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 23, - "End Line": 29 - }, - { - "Function Name": "_start", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 36, - "End Line": 41 - }, - { - "Function Name": "aftertoupper", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 31, - "End Line": 34 - }, - { - "Function Name": "instr", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 49 - }, - { - "Function Name": "getcreditcards", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 51 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, - "Sequential Logic Declarations": 12, - "Function Parameters": 12, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 0, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 43, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 8, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 14, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 16, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 21, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, + "UI / View Layer Components": 11, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 30, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, @@ -421135,26 +421758,26 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 2, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 1, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 2, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 5, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 18, - "Structural Space Indentations": 2, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 5, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421171,15 +421794,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421204,149 +421827,1599 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "assembly/hellosilicon/matrixmultneon.s": { + "typescript/fp-ts/TaskEither.ts": { "1. Artifact Identity": { - "Filename": "matrixmultneon.s", - "Path": "assembly/hellosilicon/matrixmultneon.s", - "Language": "Assembly", + "Filename": "TaskEither.ts", + "Path": "typescript/fp-ts/TaskEither.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", + "Parent Entity": "Task, _", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -235.43, - "Y": 69.48, - "Z": 5765.49 + "X": 6525.34, + "Y": 65.08, + "Z": -1604.15 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 12.842, + "Repository Archetype": "file_cluster_16", + "Repository Drift (Z-Score)": 11.904, "Repository Fingerprint": { - "file_cluster_0": 13.145, - "file_cluster_1": 13.591, - "file_cluster_2": 13.733, - "file_cluster_3": 14.464, - "file_cluster_4": 13.448, - "file_cluster_5": 14.111, - "file_cluster_6": 13.28, - "file_cluster_7": 13.355, - "file_cluster_8": 12.842, - "file_cluster_9": 13.104, - "file_cluster_10": 14.475, - "file_cluster_11": 13.509, - "file_cluster_12": 13.909, - "file_cluster_13": 13.374, - "file_cluster_14": 16.677, - "file_cluster_15": 14.064, - "file_cluster_16": 13.777, - "file_cluster_17": 13.201 + "file_cluster_0": 13.156, + "file_cluster_1": 13.318, + "file_cluster_2": 12.257, + "file_cluster_3": 13.823, + "file_cluster_4": 13.396, + "file_cluster_5": 13.642, + "file_cluster_6": 13.357, + "file_cluster_7": 13.011, + "file_cluster_8": 12.94, + "file_cluster_9": 13.435, + "file_cluster_10": 14.044, + "file_cluster_11": 12.797, + "file_cluster_12": 13.443, + "file_cluster_13": 12.411, + "file_cluster_14": 15.592, + "file_cluster_15": 13.201, + "file_cluster_16": 11.904, + "file_cluster_17": 12.785 }, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 93, - "Coding LOC": 80, - "Documentation LOC": 0, - "Structural Magnitude": 25.9, - "Control Flow Ratio": "34.1%", + "File Archetype": "Cluster 8: Algorithmic Data Processing", + "File Drift (Z-Score)": 6.994, + "File Fingerprint": { + "Cluster 0: The God Nodes (Universal Dependencies)": 8.182, + "Cluster 1: Async Scripting & I/O Automation": 8.096, + "Cluster 2: Type Definitions & Bypasses": 7.98, + "Cluster 3: UI Frameworks & View Layers": 7.535, + "Cluster 4: Heavily Documented Core Classes": 7.515, + "Cluster 5: Declarative Glue & Inert Types": 7.553, + "Cluster 6: Async Testing & Verification": 9.096, + "Cluster 7: Highly Concurrent State Management": 8.551, + "Cluster 8: Algorithmic Data Processing": 6.994 + }, + "Total LOC": 1882, + "Coding LOC": 662, + "Documentation LOC": 1053, + "Structural Magnitude": 24.58, + "Control Flow Ratio": "2.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.237 + "Raw Cognitive Density": 0.132 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.41%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "3.89%", + "Error & Exception Exposure": "33.76%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.5%", - "API Exposure": "3.05%", - "Concurrency Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "13.29%", + "Concurrency Exposure": "21.39%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "47.58%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.43%", + "Documentation Exposure": "40.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "main", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 5, + "Function Name": "traverseReadonlyNonEmptyArrayWithIndexSeq", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "26.3%", - "Start Line": 20, - "End Line": 55 + "Control Flow Ratio": "18.2%", + "Start Line": 1624, + "End Line": 1639 }, { - "Function Name": "printloop", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "27.8%", - "Start Line": 56, - "End Line": 78 + "Function Name": "cbResolver", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1487, + "End Line": 1501 }, { - "Function Name": "B", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, + "Function Name": "f", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 86, - "End Line": 89 + "Input Parameters": 2, + "Control Flow Ratio": "16.7%", + "Start Line": 1612, + "End Line": 1616 }, { - "Function Name": "A", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "f", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "16.7%", + "Start Line": 1651, + "End Line": 1655 + }, + { + "Function Name": "_alt", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 37, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 82, - "End Line": 85 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 14, - "Sequential Logic Declarations": 27, - "Function Parameters": 34, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Start Line": 436, + "End Line": 472 + }, + { + "Function Name": "async", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 251, + "End Line": 257 + }, + { + "Function Name": "taskify", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "14.3%", + "Start Line": 1482, + "End Line": 1491 + }, + { + "Function Name": "f", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1561, + "End Line": 1562 + }, + { + "Function Name": "onLeft", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1771, + "End Line": 1799 + }, + { + "Function Name": "chainTaskOptionKW", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 408, + "End Line": 428 + }, + { + "Function Name": "getFilterable", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 744, + "End Line": 763 + }, + { + "Function Name": "release", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1517, + "End Line": 1529 + }, + { + "Function Name": "getTaskValidation", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1862, + "End Line": 1881 + }, + { + "Function Name": "partitionMap", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 761, + "End Line": 772 + }, + { + "Function Name": "getApplicativeTaskValidation", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 696, + "End Line": 705 + }, + { + "Function Name": "onLeft", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 347, + "End Line": 359 + }, + { + "Function Name": "f", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1312, + "End Line": 1323 + }, + { + "Function Name": "getSemigroup", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1852, + "End Line": 1862 + }, + { + "Function Name": "_apSeq", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 434, + "End Line": 436 + }, + { + "Function Name": "getAltTaskValidation", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 716, + "End Line": 724 + }, + { + "Function Name": "getCompactable", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 730, + "End Line": 738 + }, + { + "Function Name": "tryCatch", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 249, + "End Line": 250 + }, + { + "Function Name": "_map", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 432, + "End Line": 433 + }, + { + "Function Name": "_apPar", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 433, + "End Line": 434 + }, + { + "Function Name": "onNone", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1179, + "End Line": 1185 + }, + { + "Function Name": "fromTaskOptionK", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 393, + "End Line": 398 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 15, + "Sequential Logic Declarations": 590, + "Function Parameters": 311, + "Function/Method Declarations": 76, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 49, + "Type/Safety Bypasses": 16, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 154, + "State Mutations / Variable Reassignments": 5, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 158, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 6, + "UI / View Layer Components": 220, + "Closures and Anonymous Functions": 15, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 616, + "Collection Iterators / Comprehensions": 6, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 32, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 3, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 1, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 28, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 168, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 1, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 359, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 1, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 46, + "Design Camel Case": 24, + "Design Snake Case": 13, + "Design Pascal Case": 2, + "Design Upper Case": 7, + "Design Short Vars": 8, + "Design Long Vars": 5, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 40, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "./Alt", + "./Applicative", + "./Apply", + "./Bifunctor", + "./Chain", + "./Compactable", + "./Either", + "./EitherT", + "./Filterable", + "./FromEither", + "./FromIO", + "./FromTask", + "./Functor", + "./IO", + "./IOEither", + "./Monad", + "./MonadIO", + "./MonadTask", + "./MonadThrow", + "./Monoid", + "./NonEmptyArray", + "./Option", + "./Pointed", + "./Predicate", + "./ReadonlyNonEmptyArray", + "./Refinement", + "./Semigroup", + "./Task", + "./TaskOption", + "./function", + "./internal", + "fp-ts/Console", + "fp-ts/Either", + "fp-ts/ReadonlyArray", + "fp-ts/Semigroup", + "fp-ts/Task", + "fp-ts/TaskEither", + "fp-ts/function", + "fp-ts/string", + "fs" + ] + }, + "typescript/fp-ts/pipeable.ts": { + "1. Artifact Identity": { + "Filename": "pipeable.ts", + "Path": "typescript/fp-ts/pipeable.ts", + "Language": "Typescript", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "PipeableFunctor, PipeableFunctor1, PipeableFunctor2", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "typescript", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .ts)" + }, + "2. Topological Coordinates": { + "X": 6522.01, + "Y": 177.34, + "Z": -1505.83 + }, + "3. Architectural Profile": { + "Repository Archetype": "file_cluster_16", + "Repository Drift (Z-Score)": 11.006, + "Repository Fingerprint": { + "file_cluster_0": 12.663, + "file_cluster_1": 12.53, + "file_cluster_2": 12.109, + "file_cluster_3": 13.596, + "file_cluster_4": 13.132, + "file_cluster_5": 12.985, + "file_cluster_6": 12.907, + "file_cluster_7": 12.294, + "file_cluster_8": 12.031, + "file_cluster_9": 12.941, + "file_cluster_10": 13.603, + "file_cluster_11": 12.602, + "file_cluster_12": 12.994, + "file_cluster_13": 12.201, + "file_cluster_14": 16.009, + "file_cluster_15": 13.0, + "file_cluster_16": 11.006, + "file_cluster_17": 12.726 + }, + "File Archetype": "Cluster 8: Algorithmic Data Processing", + "File Drift (Z-Score)": 6.722, + "File Fingerprint": { + "Cluster 0: The God Nodes (Universal Dependencies)": 7.559, + "Cluster 1: Async Scripting & I/O Automation": 7.711, + "Cluster 2: Type Definitions & Bypasses": 8.182, + "Cluster 3: UI Frameworks & View Layers": 6.916, + "Cluster 4: Heavily Documented Core Classes": 7.232, + "Cluster 5: Declarative Glue & Inert Types": 6.737, + "Cluster 6: Async Testing & Verification": 8.94, + "Cluster 7: Highly Concurrent State Management": 8.723, + "Cluster 8: Algorithmic Data Processing": 6.722 + }, + "Total LOC": 2612, + "Coding LOC": 1772, + "Documentation LOC": 701, + "Structural Magnitude": 53.3, + "Control Flow Ratio": "5.4%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.107 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "3.55%", + "Error & Exception Exposure": "46.57%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "14.61%", + "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": "90.42%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "filterOrElse", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "14.3%", + "Start Line": 2593, + "End Line": 2611 + }, + { + "Function Name": "fromPredicate", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 2589, + "End Line": 2593 + }, + { + "Function Name": "f", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1968, + "End Line": 1998 + }, + { + "Function Name": "f", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2019, + "End Line": 2049 + }, + { + "Function Name": "f", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1922, + "End Line": 1948 + }, + { + "Function Name": "f", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1900, + "End Line": 1924 + }, + { + "Function Name": "f", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1946, + "End Line": 1970 + }, + { + "Function Name": "f", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1996, + "End Line": 2021 + }, + { + "Function Name": "fromOption", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2585, + "End Line": 2587 + }, + { + "Function Name": "fromEither", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2587, + "End Line": 2589 + }, + { + "Function Name": "f", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1854, + "End Line": 1880 + }, + { + "Function Name": "f", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1811, + "End Line": 1835 + }, + { + "Function Name": "f", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1878, + "End Line": 1902 + }, + { + "Function Name": "f", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1791, + "End Line": 1813 + }, + { + "Function Name": "f", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1833, + "End Line": 1856 + }, + { + "Function Name": "f", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2047, + "End Line": 2058 + }, + { + "Function Name": "g", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1449, + "End Line": 1463 + }, + { + "Function Name": "f", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1985, + "End Line": 1994 + }, + { + "Function Name": "f", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2036, + "End Line": 2045 + }, + { + "Function Name": "f", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1326, + "End Line": 1339 + }, + { + "Function Name": "f", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1397, + "End Line": 1410 + }, + { + "Function Name": "g", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2103, + "End Line": 2114 + }, + { + "Function Name": "partition", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 638, + "End Line": 647 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 824, + "End Line": 833 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 834, + "End Line": 843 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 844, + "End Line": 853 + }, + { + "Function Name": "foldMapWithIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 484, + "End Line": 491 + }, + { + "Function Name": "partition", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 648, + "End Line": 655 + }, + { + "Function Name": "partition", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 656, + "End Line": 663 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 735, + "End Line": 742 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 854, + "End Line": 861 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 862, + "End Line": 869 + }, + { + "Function Name": "isMonadThrow", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2307, + "End Line": 2314 + }, + { + "Function Name": "mapWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 191, + "End Line": 195 + }, + { + "Function Name": "bimap", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 275, + "End Line": 279 + }, + { + "Function Name": "foldMap", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 388, + "End Line": 393 + }, + { + "Function Name": "reduceWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 451, + "End Line": 455 + }, + { + "Function Name": "reduceRightWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 520, + "End Line": 524 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 559, + "End Line": 564 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 565, + "End Line": 570 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 571, + "End Line": 576 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 577, + "End Line": 582 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 583, + "End Line": 588 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 589, + "End Line": 594 + }, + { + "Function Name": "partition", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 664, + "End Line": 669 + }, + { + "Function Name": "partition", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 670, + "End Line": 675 + }, + { + "Function Name": "partition", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 676, + "End Line": 681 + }, + { + "Function Name": "partition", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 686, + "End Line": 690 + }, + { + "Function Name": "partitionMap", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 723, + "End Line": 727 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 743, + "End Line": 748 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 749, + "End Line": 754 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 755, + "End Line": 760 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 761, + "End Line": 766 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 767, + "End Line": 772 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 773, + "End Line": 778 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 779, + "End Line": 783 + }, + { + "Function Name": "filterMapWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 812, + "End Line": 816 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 870, + "End Line": 875 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 876, + "End Line": 881 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 882, + "End Line": 886 + }, + { + "Function Name": "partitionMapWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 921, + "End Line": 925 + }, + { + "Function Name": "promap", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 951, + "End Line": 955 + }, + { + "Function Name": "map", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 133 + }, + { + "Function Name": "contramap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 160, + "End Line": 162 + }, + { + "Function Name": "ap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 220, + "End Line": 222 + }, + { + "Function Name": "chain", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 247, + "End Line": 249 + }, + { + "Function Name": "mapLeft", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 303, + "End Line": 305 + }, + { + "Function Name": "extend", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 332, + "End Line": 334 + }, + { + "Function Name": "reduce", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 359, + "End Line": 361 + }, + { + "Function Name": "reduceRight", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 420, + "End Line": 422 + }, + { + "Function Name": "alt", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 549, + "End Line": 551 + }, + { + "Function Name": "filter", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 595, + "End Line": 598 + }, + { + "Function Name": "filter", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 599, + "End Line": 601 + }, + { + "Function Name": "filterMap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 628, + "End Line": 630 + }, + { + "Function Name": "partition", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 682, + "End Line": 685 + }, + { + "Function Name": "compose", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 979, + "End Line": 981 + }, + { + "Function Name": "isFilterableWithIndex", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2303, + "End Line": 2305 + }, + { + "Function Name": "isFunctor", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2291, + "End Line": 2292 + }, + { + "Function Name": "isContravariant", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2292, + "End Line": 2293 + }, + { + "Function Name": "isFunctorWithIndex", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2293, + "End Line": 2294 + }, + { + "Function Name": "isApply", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2294, + "End Line": 2295 + }, + { + "Function Name": "isChain", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2295, + "End Line": 2296 + }, + { + "Function Name": "isBifunctor", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2296, + "End Line": 2297 + }, + { + "Function Name": "isExtend", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2297, + "End Line": 2298 + }, + { + "Function Name": "isFoldable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2298, + "End Line": 2299 + }, + { + "Function Name": "isFoldableWithIndex", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2299, + "End Line": 2300 + }, + { + "Function Name": "isAlt", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2300, + "End Line": 2301 + }, + { + "Function Name": "isCompactable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2301, + "End Line": 2302 + }, + { + "Function Name": "isFilterable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2302, + "End Line": 2303 + }, + { + "Function Name": "isProfunctor", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2305, + "End Line": 2306 + }, + { + "Function Name": "isSemigroupoid", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2306, + "End Line": 2307 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2314, + "End Line": 2315 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2344, + "End Line": 2345 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2374, + "End Line": 2375 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2404, + "End Line": 2405 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2433, + "End Line": 2434 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2463, + "End Line": 2464 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2490, + "End Line": 2491 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2520, + "End Line": 2520 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 128, + "Sequential Logic Declarations": 2243, + "Function Parameters": 1193, + "Function/Method Declarations": 250, + "Class/Entity Declarations": 108, + "Defensive Programming Constructs": 20, + "Type/Safety Bypasses": 17, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 313, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 3, - "Structured Documentation Blocks": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 260, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, + "UI / View Layer Components": 110, + "Closures and Anonymous Functions": 2, + "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Generic Type Abstractions": 3138, + "Collection Iterators / Comprehensions": 3, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 24, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421354,24 +423427,24 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 2, - "Pointer Arithmetic & Addressing": 12, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, - "Explicit Type Casts": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 4, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, + "Bitwise Operations": 138, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 279, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 43, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1072, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421388,9 +423461,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 20, + "Design Camel Case": 18, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -421420,119 +423493,144 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 24, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "./Alt", + "./Apply", + "./Bifunctor", + "./Chain", + "./Compactable", + "./Contravariant", + "./Either", + "./Extend", + "./Filterable", + "./FilterableWithIndex", + "./Foldable", + "./FoldableWithIndex", + "./Functor", + "./FunctorWithIndex", + "./HKT", + "./MonadThrow", + "./Monoid", + "./Option", + "./Predicate", + "./Profunctor", + "./Refinement", + "./Semigroupoid", + "./Separated", + "./function" + ] } } }, - "cobol/cobrix": { - "Directory Group Magnitude": 107.92, - "File Count": 9, + "assembly/hellosilicon": { + "Directory Group Magnitude": 114.36, + "File Count": 4, "Ecosystem Fingerprint (Archetypes)": { "file_cluster_8": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "42.21%", - "Error & Exception Exposure": "6.16%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "11.35%", + "Error & Exception Exposure": "21.7%", + "Tech Debt Exposure": "24.89%", + "Testing Exposure": "2.43%", + "API Exposure": "3.2%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "1.49%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "26.46%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.48%", + "Documentation Exposure": "55.29%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "cobol/cobrix/companies_copybook.cpy": { + "assembly/hellosilicon/makefile": { "1. Artifact Identity": { - "Filename": "companies_copybook.cpy", - "Path": "cobol/cobrix/companies_copybook.cpy", - "Language": "Cobol", + "Filename": "makefile", + "Path": "assembly/hellosilicon/makefile", + "Language": "Makefile", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": -15.93, - "Y": 76.49, - "Z": -3064.62 + "X": 2.77, + "Y": 39.33, + "Z": 5315.15 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 5.827, + "Repository Drift (Z-Score)": 7.69, "Repository Fingerprint": { - "file_cluster_0": 8.575, - "file_cluster_1": 7.352, - "file_cluster_2": 8.109, - "file_cluster_3": 9.643, - "file_cluster_4": 9.159, - "file_cluster_5": 8.557, - "file_cluster_6": 8.823, - "file_cluster_7": 7.296, - "file_cluster_8": 5.827, - "file_cluster_9": 8.579, - "file_cluster_10": 9.901, - "file_cluster_11": 9.373, - "file_cluster_12": 7.539, - "file_cluster_13": 8.415, - "file_cluster_14": 13.208, - "file_cluster_15": 9.339, - "file_cluster_16": 8.245, - "file_cluster_17": 8.822 + "file_cluster_0": 9.025, + "file_cluster_1": 8.863, + "file_cluster_2": 9.154, + "file_cluster_3": 10.551, + "file_cluster_4": 9.491, + "file_cluster_5": 9.722, + "file_cluster_6": 9.493, + "file_cluster_7": 8.556, + "file_cluster_8": 7.69, + "file_cluster_9": 9.248, + "file_cluster_10": 10.574, + "file_cluster_11": 9.709, + "file_cluster_12": 9.637, + "file_cluster_13": 9.047, + "file_cluster_14": 13.795, + "file_cluster_15": 9.946, + "file_cluster_16": 9.199, + "file_cluster_17": 9.317 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 34, - "Coding LOC": 15, - "Documentation LOC": 17, - "Structural Magnitude": 0.77, - "Control Flow Ratio": "0.0%", + "Total LOC": 32, + "Coding LOC": 23, + "Documentation LOC": 0, + "Structural Magnitude": 53.96, + "Control Flow Ratio": "30.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.348 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "62.14%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "11.67%", + "Error & Exception Exposure": "86.8%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "6.28%", "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": "47.39%", + "Documentation Exposure": "89.9%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 7, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 7, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421545,182 +423643,6 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "cobol/cobrix/data_types.cpy": { - "1. Artifact Identity": { - "Filename": "data_types.cpy", - "Path": "cobol/cobrix/data_types.cpy", - "Language": "Cobol", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" - }, - "2. Topological Coordinates": { - "X": -698.74, - "Y": 315.46, - "Z": -3863.36 - }, - "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 4.657, - "Repository Fingerprint": { - "file_cluster_0": 7.67, - "file_cluster_1": 6.454, - "file_cluster_2": 7.23, - "file_cluster_3": 8.973, - "file_cluster_4": 8.243, - "file_cluster_5": 7.552, - "file_cluster_6": 7.976, - "file_cluster_7": 6.294, - "file_cluster_8": 4.657, - "file_cluster_9": 7.709, - "file_cluster_10": 9.251, - "file_cluster_11": 8.735, - "file_cluster_12": 8.091, - "file_cluster_13": 7.528, - "file_cluster_14": 12.673, - "file_cluster_15": 8.597, - "file_cluster_16": 7.382, - "file_cluster_17": 7.951 - }, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 230, - "Coding LOC": 173, - "Documentation LOC": 39, - "Structural Magnitude": 0.97, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "55.43%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "13.37%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.22%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 13, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, @@ -421742,18 +423664,18 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 171, + "Structural Tab Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 1, + "Serialization Parsing": 0, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -421764,11 +423686,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 7, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 7, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -421803,62 +423725,62 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/multisegment.cob": { + "assembly/hellosilicon/fileio.S": { "1. Artifact Identity": { - "Filename": "multisegment.cob", - "Path": "cobol/cobrix/multisegment.cob", - "Language": "Cobol", + "Filename": "fileio.S", + "Path": "assembly/hellosilicon/fileio.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Mixed (80.0% Spaces / 20.0% Tabs)", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -300.49, - "Y": 53.02, - "Z": -3042.0 + "X": 295.7, + "Y": 89.29, + "Z": 5650.33 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 5.827, + "Repository Drift (Z-Score)": 8.012, "Repository Fingerprint": { - "file_cluster_0": 8.575, - "file_cluster_1": 7.352, - "file_cluster_2": 8.109, - "file_cluster_3": 9.643, - "file_cluster_4": 9.159, - "file_cluster_5": 8.557, - "file_cluster_6": 8.823, - "file_cluster_7": 7.296, - "file_cluster_8": 5.827, - "file_cluster_9": 8.579, - "file_cluster_10": 9.901, - "file_cluster_11": 9.373, - "file_cluster_12": 7.539, - "file_cluster_13": 8.415, - "file_cluster_14": 13.208, - "file_cluster_15": 9.339, - "file_cluster_16": 8.245, - "file_cluster_17": 8.822 + "file_cluster_0": 9.809, + "file_cluster_1": 8.474, + "file_cluster_2": 9.496, + "file_cluster_3": 10.867, + "file_cluster_4": 10.202, + "file_cluster_5": 9.917, + "file_cluster_6": 10.079, + "file_cluster_7": 9.015, + "file_cluster_8": 8.012, + "file_cluster_9": 9.894, + "file_cluster_10": 11.068, + "file_cluster_11": 10.503, + "file_cluster_12": 10.227, + "file_cluster_13": 9.664, + "file_cluster_14": 14.07, + "file_cluster_15": 10.564, + "file_cluster_16": 9.757, + "file_cluster_17": 9.944 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 34, - "Coding LOC": 15, - "Documentation LOC": 17, - "Structural Magnitude": 15.3, + "Total LOC": 51, + "Coding LOC": 44, + "Documentation LOC": 1, + "Structural Magnitude": 15.88, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.114 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "73.11%", + "Cognitive Load Exposure": "7.27%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -421869,21 +423791,21 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.39%", + "Documentation Exposure": "38.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Sequential Logic Declarations": 17, + "Function Parameters": 21, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -421897,33 +423819,33 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 5, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 13, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 5, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 5, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Tab Indentations": 5, + "Structural Space Indentations": 20, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421979,96 +423901,157 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test13a_file_header_footer.cob": { + "assembly/hellosilicon/mainpie.s": { "1. Artifact Identity": { - "Filename": "test13a_file_header_footer.cob", - "Path": "cobol/cobrix/test13a_file_header_footer.cob", - "Language": "Cobol", + "Filename": "mainpie.s", + "Path": "assembly/hellosilicon/mainpie.s", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Mixed (10.0% Spaces / 90.0% Tabs)", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -633.85, - "Y": 110.33, - "Z": -2829.83 + "X": 12.79, + "Y": 59.85, + "Z": 4911.78 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 4.447, + "Repository Drift (Z-Score)": 13.951, "Repository Fingerprint": { - "file_cluster_0": 7.742, - "file_cluster_1": 6.315, - "file_cluster_2": 7.195, - "file_cluster_3": 8.986, - "file_cluster_4": 8.35, - "file_cluster_5": 7.698, - "file_cluster_6": 8.024, - "file_cluster_7": 6.25, - "file_cluster_8": 4.447, - "file_cluster_9": 7.738, - "file_cluster_10": 9.281, - "file_cluster_11": 8.888, - "file_cluster_12": 8.096, - "file_cluster_13": 7.576, - "file_cluster_14": 12.66, - "file_cluster_15": 8.651, - "file_cluster_16": 7.372, - "file_cluster_17": 7.984 + "file_cluster_0": 14.085, + "file_cluster_1": 14.337, + "file_cluster_2": 14.662, + "file_cluster_3": 15.325, + "file_cluster_4": 14.421, + "file_cluster_5": 15.001, + "file_cluster_6": 14.178, + "file_cluster_7": 14.373, + "file_cluster_8": 13.951, + "file_cluster_9": 14.053, + "file_cluster_10": 15.337, + "file_cluster_11": 14.415, + "file_cluster_12": 14.842, + "file_cluster_13": 14.311, + "file_cluster_14": 17.484, + "file_cluster_15": 14.945, + "file_cluster_16": 14.742, + "file_cluster_17": 14.191 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 31, - "Coding LOC": 7, - "Documentation LOC": 20, - "Structural Magnitude": 13.64, - "Control Flow Ratio": "0.0%", + "Total LOC": 54, + "Coding LOC": 41, + "Documentation LOC": 0, + "Structural Magnitude": 18.62, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.317 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "15.04%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "99.56%", + "Testing Exposure": "2.59%", + "API Exposure": "3.46%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Commented Logic Exposure": "58.26%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "26.09%", + "Documentation Exposure": "57.32%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "DownloadCreditCardNumbers", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 13, + "End Line": 21 + }, + { + "Function Name": "calltoupper", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 23, + "End Line": 29 + }, + { + "Function Name": "_start", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 36, + "End Line": 41 + }, + { + "Function Name": "aftertoupper", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 31, + "End Line": 34 + }, + { + "Function Name": "instr", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 49 + }, + { + "Function Name": "getcreditcards", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 50, + "End Line": 51 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 12, + "Function Parameters": 12, + "Function/Method Declarations": 6, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -422080,26 +424063,26 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 1, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Tab Indentations": 18, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -422124,7 +424107,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -422155,101 +424138,142 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test16_fix_len_segments.cob": { + "assembly/hellosilicon/matrixmultneon.s": { "1. Artifact Identity": { - "Filename": "test16_fix_len_segments.cob", - "Path": "cobol/cobrix/test16_fix_len_segments.cob", - "Language": "Cobol", + "Filename": "matrixmultneon.s", + "Path": "assembly/hellosilicon/matrixmultneon.s", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -51.67, - "Y": 215.68, - "Z": -3515.36 + "X": -235.43, + "Y": 69.48, + "Z": 5765.49 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 5.886, + "Repository Drift (Z-Score)": 12.842, "Repository Fingerprint": { - "file_cluster_0": 8.615, - "file_cluster_1": 7.399, - "file_cluster_2": 8.151, - "file_cluster_3": 9.677, - "file_cluster_4": 9.197, - "file_cluster_5": 8.597, - "file_cluster_6": 8.862, - "file_cluster_7": 7.343, - "file_cluster_8": 5.886, - "file_cluster_9": 8.619, - "file_cluster_10": 9.933, - "file_cluster_11": 9.403, - "file_cluster_12": 7.548, - "file_cluster_13": 8.455, - "file_cluster_14": 13.234, - "file_cluster_15": 9.374, - "file_cluster_16": 8.286, - "file_cluster_17": 8.861 + "file_cluster_0": 13.145, + "file_cluster_1": 13.591, + "file_cluster_2": 13.733, + "file_cluster_3": 14.464, + "file_cluster_4": 13.448, + "file_cluster_5": 14.111, + "file_cluster_6": 13.28, + "file_cluster_7": 13.355, + "file_cluster_8": 12.842, + "file_cluster_9": 13.104, + "file_cluster_10": 14.475, + "file_cluster_11": 13.509, + "file_cluster_12": 13.909, + "file_cluster_13": 13.374, + "file_cluster_14": 16.677, + "file_cluster_15": 14.064, + "file_cluster_16": 13.777, + "file_cluster_17": 13.201 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 33, - "Coding LOC": 14, - "Documentation LOC": 17, - "Structural Magnitude": 15.28, - "Control Flow Ratio": "0.0%", + "Total LOC": 93, + "Coding LOC": 80, + "Documentation LOC": 0, + "Structural Magnitude": 25.9, + "Control Flow Ratio": "34.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.237 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "11.41%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.0%", + "Testing Exposure": "2.5%", + "API Exposure": "3.05%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Commented Logic Exposure": "47.58%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.53%", + "Documentation Exposure": "35.43%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "main", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "26.3%", + "Start Line": 20, + "End Line": 55 + }, + { + "Function Name": "printloop", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "27.8%", + "Start Line": 56, + "End Line": 78 + }, + { + "Function Name": "B", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 86, + "End Line": 89 + }, + { + "Function Name": "A", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 82, + "End Line": 85 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 14, + "Sequential Logic Declarations": 27, + "Function Parameters": 34, + "Function/Method Declarations": 6, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 6, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422258,24 +424282,24 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Preprocessor Macros": 2, + "Pointer Arithmetic & Addressing": 12, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Ad-hoc Print / Debug Statements": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Tab Indentations": 43, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -422330,63 +424354,87 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "cobol/cobrix/test17_hierarchical.cob": { + } + } + }, + "cobol/cobrix": { + "Directory Group Magnitude": 107.92, + "File Count": 9, + "Ecosystem Fingerprint (Archetypes)": { + "file_cluster_8": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "42.21%", + "Error & Exception Exposure": "6.16%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.14%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "1.49%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "93.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "35.48%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "cobol/cobrix/companies_copybook.cpy": { "1. Artifact Identity": { - "Filename": "test17_hierarchical.cob", - "Path": "cobol/cobrix/test17_hierarchical.cob", + "Filename": "companies_copybook.cpy", + "Path": "cobol/cobrix/companies_copybook.cpy", "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -458.05, - "Y": 192.76, - "Z": -3264.12 + "X": -15.93, + "Y": 76.49, + "Z": -3064.62 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 6.13, + "Repository Drift (Z-Score)": 5.827, "Repository Fingerprint": { - "file_cluster_0": 8.78, - "file_cluster_1": 7.594, - "file_cluster_2": 8.328, - "file_cluster_3": 9.817, - "file_cluster_4": 9.354, - "file_cluster_5": 8.764, - "file_cluster_6": 9.021, - "file_cluster_7": 7.54, - "file_cluster_8": 6.13, - "file_cluster_9": 8.785, - "file_cluster_10": 10.069, - "file_cluster_11": 9.53, - "file_cluster_12": 7.596, - "file_cluster_13": 8.622, - "file_cluster_14": 13.344, - "file_cluster_15": 9.52, - "file_cluster_16": 8.457, - "file_cluster_17": 9.024 + "file_cluster_0": 8.575, + "file_cluster_1": 7.352, + "file_cluster_2": 8.109, + "file_cluster_3": 9.643, + "file_cluster_4": 9.159, + "file_cluster_5": 8.557, + "file_cluster_6": 8.823, + "file_cluster_7": 7.296, + "file_cluster_8": 5.827, + "file_cluster_9": 8.579, + "file_cluster_10": 9.901, + "file_cluster_11": 9.373, + "file_cluster_12": 7.539, + "file_cluster_13": 8.415, + "file_cluster_14": 13.208, + "file_cluster_15": 9.339, + "file_cluster_16": 8.245, + "file_cluster_17": 8.822 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 63, - "Coding LOC": 32, - "Documentation LOC": 27, - "Structural Magnitude": 15.64, + "Total LOC": 34, + "Coding LOC": 15, + "Documentation LOC": 17, + "Structural Magnitude": 0.77, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.094 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "79.82%", + "Cognitive Load Exposure": "62.14%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -422397,7 +424445,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.88%", + "Documentation Exposure": "47.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -422425,7 +424473,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422440,7 +424488,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 6, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -422451,7 +424499,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 32, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -422507,73 +424555,73 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test18 special_char.cob": { + "cobol/cobrix/data_types.cpy": { "1. Artifact Identity": { - "Filename": "test18 special_char.cob", - "Path": "cobol/cobrix/test18 special_char.cob", + "Filename": "data_types.cpy", + "Path": "cobol/cobrix/data_types.cpy", "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -698.56, - "Y": 208.22, - "Z": -3122.8 + "X": -698.74, + "Y": 315.46, + "Z": -3863.36 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 6.13, + "Repository Drift (Z-Score)": 4.657, "Repository Fingerprint": { - "file_cluster_0": 8.78, - "file_cluster_1": 7.594, - "file_cluster_2": 8.328, - "file_cluster_3": 9.817, - "file_cluster_4": 9.354, - "file_cluster_5": 8.764, - "file_cluster_6": 9.021, - "file_cluster_7": 7.54, - "file_cluster_8": 6.13, - "file_cluster_9": 8.785, - "file_cluster_10": 10.069, - "file_cluster_11": 9.53, - "file_cluster_12": 7.596, - "file_cluster_13": 8.622, - "file_cluster_14": 13.344, - "file_cluster_15": 9.52, - "file_cluster_16": 8.457, - "file_cluster_17": 9.024 + "file_cluster_0": 7.67, + "file_cluster_1": 6.454, + "file_cluster_2": 7.23, + "file_cluster_3": 8.973, + "file_cluster_4": 8.243, + "file_cluster_5": 7.552, + "file_cluster_6": 7.976, + "file_cluster_7": 6.294, + "file_cluster_8": 4.657, + "file_cluster_9": 7.709, + "file_cluster_10": 9.251, + "file_cluster_11": 8.735, + "file_cluster_12": 8.091, + "file_cluster_13": 7.528, + "file_cluster_14": 12.673, + "file_cluster_15": 8.597, + "file_cluster_16": 7.382, + "file_cluster_17": 7.951 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 63, - "Coding LOC": 32, - "Documentation LOC": 27, - "Structural Magnitude": 15.64, + "Total LOC": 230, + "Coding LOC": 173, + "Documentation LOC": 39, + "Structural Magnitude": 0.97, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.094 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "79.82%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "55.43%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "13.37%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.88%", + "Documentation Exposure": "13.22%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -422589,19 +424637,19 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 13, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422616,7 +424664,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 6, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -422627,13 +424675,13 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 32, + "Structural Space Indentations": 171, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 1, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -422683,10 +424731,10 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test19_display_num.cob": { + "cobol/cobrix/multisegment.cob": { "1. Artifact Identity": { - "Filename": "test19_display_num.cob", - "Path": "cobol/cobrix/test19_display_num.cob", + "Filename": "multisegment.cob", + "Path": "cobol/cobrix/multisegment.cob", "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -422696,32 +424744,32 @@ "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": -933.62, - "Y": 230.29, - "Z": -3330.92 + "X": -300.49, + "Y": 53.02, + "Z": -3042.0 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 4.447, + "Repository Drift (Z-Score)": 5.827, "Repository Fingerprint": { - "file_cluster_0": 7.742, - "file_cluster_1": 6.315, - "file_cluster_2": 7.195, - "file_cluster_3": 8.986, - "file_cluster_4": 8.35, - "file_cluster_5": 7.698, - "file_cluster_6": 8.024, - "file_cluster_7": 6.25, - "file_cluster_8": 4.447, - "file_cluster_9": 7.738, - "file_cluster_10": 9.281, - "file_cluster_11": 8.888, - "file_cluster_12": 8.096, - "file_cluster_13": 7.576, - "file_cluster_14": 12.66, - "file_cluster_15": 8.651, - "file_cluster_16": 7.372, - "file_cluster_17": 7.984 + "file_cluster_0": 8.575, + "file_cluster_1": 7.352, + "file_cluster_2": 8.109, + "file_cluster_3": 9.643, + "file_cluster_4": 9.159, + "file_cluster_5": 8.557, + "file_cluster_6": 8.823, + "file_cluster_7": 7.296, + "file_cluster_8": 5.827, + "file_cluster_9": 8.579, + "file_cluster_10": 9.901, + "file_cluster_11": 9.373, + "file_cluster_12": 7.539, + "file_cluster_13": 8.415, + "file_cluster_14": 13.208, + "file_cluster_15": 9.339, + "file_cluster_16": 8.245, + "file_cluster_17": 8.822 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, @@ -422735,10 +424783,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.89%", + "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -422777,7 +424825,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422792,7 +424840,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -422803,7 +424851,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -422859,10 +424907,10 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test1_copybook.cob": { + "cobol/cobrix/test13a_file_header_footer.cob": { "1. Artifact Identity": { - "Filename": "test1_copybook.cob", - "Path": "cobol/cobrix/test1_copybook.cob", + "Filename": "test13a_file_header_footer.cob", + "Path": "cobol/cobrix/test13a_file_header_footer.cob", "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -422872,66 +424920,66 @@ "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": -460.76, - "Y": 252.47, - "Z": -3883.42 + "X": -633.85, + "Y": 110.33, + "Z": -2829.83 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 6.203, + "Repository Drift (Z-Score)": 4.447, "Repository Fingerprint": { - "file_cluster_0": 8.706, - "file_cluster_1": 7.686, - "file_cluster_2": 8.303, - "file_cluster_3": 9.763, - "file_cluster_4": 9.326, - "file_cluster_5": 8.767, - "file_cluster_6": 8.907, - "file_cluster_7": 7.518, - "file_cluster_8": 6.203, - "file_cluster_9": 8.77, - "file_cluster_10": 9.85, - "file_cluster_11": 9.215, - "file_cluster_12": 7.717, - "file_cluster_13": 8.552, - "file_cluster_14": 13.397, - "file_cluster_15": 9.024, - "file_cluster_16": 8.433, - "file_cluster_17": 9.004 + "file_cluster_0": 7.742, + "file_cluster_1": 6.315, + "file_cluster_2": 7.195, + "file_cluster_3": 8.986, + "file_cluster_4": 8.35, + "file_cluster_5": 7.698, + "file_cluster_6": 8.024, + "file_cluster_7": 6.25, + "file_cluster_8": 4.447, + "file_cluster_9": 7.738, + "file_cluster_10": 9.281, + "file_cluster_11": 8.888, + "file_cluster_12": 8.096, + "file_cluster_13": 7.576, + "file_cluster_14": 12.66, + "file_cluster_15": 8.651, + "file_cluster_16": 7.372, + "file_cluster_17": 7.984 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 19, - "Documentation LOC": 17, - "Structural Magnitude": 15.38, - "Control Flow Ratio": "100.0%", + "Total LOC": 31, + "Coding LOC": 7, + "Documentation LOC": 20, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.842 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "59.11%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "42.58%", + "Documentation Exposure": "26.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, + "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, @@ -422953,7 +425001,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422968,7 +425016,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -422979,7 +425027,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -423024,91 +425072,85 @@ "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "typescript/fp-ts": { - "Directory Group Magnitude": 107.36, - "File Count": 5, - "Ecosystem Fingerprint (Archetypes)": { - "file_cluster_16": "80.0%", - "Static: Literature & Documentation": "20.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "3.05%", - "Error & Exception Exposure": "43.91%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "48.46%", - "API Exposure": "10.47%", - "Concurrency Exposure": "4.28%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", - "Instability Exposure": "40.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.34%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "typescript/fp-ts/package.json": { + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "cobol/cobrix/test16_fix_len_segments.cob": { "1. Artifact Identity": { - "Filename": "package.json", - "Path": "typescript/fp-ts/package.json", - "Language": "Plaintext", + "Filename": "test16_fix_len_segments.cob", + "Path": "cobol/cobrix/test16_fix_len_segments.cob", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Exact Match)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6052.14, - "Y": 181.46, - "Z": -1500.65 + "X": -51.67, + "Y": 215.68, + "Z": -3515.36 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 5.886, + "Repository Fingerprint": { + "file_cluster_0": 8.615, + "file_cluster_1": 7.399, + "file_cluster_2": 8.151, + "file_cluster_3": 9.677, + "file_cluster_4": 9.197, + "file_cluster_5": 8.597, + "file_cluster_6": 8.862, + "file_cluster_7": 7.343, + "file_cluster_8": 5.886, + "file_cluster_9": 8.619, + "file_cluster_10": 9.933, + "file_cluster_11": 9.403, + "file_cluster_12": 7.548, + "file_cluster_13": 8.455, + "file_cluster_14": 13.234, + "file_cluster_15": 9.374, + "file_cluster_16": 8.286, + "file_cluster_17": 8.861 + }, + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 76, - "Coding LOC": 0, - "Documentation LOC": 75, - "Structural Magnitude": 1.52, + "Total LOC": 33, + "Coding LOC": 14, + "Documentation LOC": 17, + "Structural Magnitude": 15.28, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.14%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "93.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "45.53%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -423135,7 +425177,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -423150,7 +425192,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -423161,7 +425203,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -423217,444 +425259,102 @@ }, "9. Extracted Dependencies": [] }, - "typescript/fp-ts/Either.ts": { + "cobol/cobrix/test17_hierarchical.cob": { "1. Artifact Identity": { - "Filename": "Either.ts", - "Path": "typescript/fp-ts/Either.ts", - "Language": "Typescript", + "Filename": "test17_hierarchical.cob", + "Path": "cobol/cobrix/test17_hierarchical.cob", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "_, ReadonlyArray", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6295.82, - "Y": 266.92, - "Z": -1194.24 + "X": -458.05, + "Y": 192.76, + "Z": -3264.12 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_16", - "Repository Drift (Z-Score)": 11.865, + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 6.13, "Repository Fingerprint": { - "file_cluster_0": 13.027, - "file_cluster_1": 13.214, - "file_cluster_2": 12.197, - "file_cluster_3": 13.818, - "file_cluster_4": 13.44, - "file_cluster_5": 13.462, - "file_cluster_6": 13.189, - "file_cluster_7": 12.884, - "file_cluster_8": 12.839, - "file_cluster_9": 13.327, - "file_cluster_10": 13.867, - "file_cluster_11": 12.614, - "file_cluster_12": 13.371, - "file_cluster_13": 12.259, - "file_cluster_14": 15.817, - "file_cluster_15": 12.955, - "file_cluster_16": 11.865, - "file_cluster_17": 12.904 - }, - "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 6.993, - "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 8.159, - "Cluster 1: Async Scripting & I/O Automation": 8.056, - "Cluster 2: Type Definitions & Bypasses": 8.194, - "Cluster 3: UI Frameworks & View Layers": 7.554, - "Cluster 4: Heavily Documented Core Classes": 7.658, - "Cluster 5: Declarative Glue & Inert Types": 7.462, - "Cluster 6: Async Testing & Verification": 9.096, - "Cluster 7: Highly Concurrent State Management": 8.361, - "Cluster 8: Algorithmic Data Processing": 6.993 + "file_cluster_0": 8.78, + "file_cluster_1": 7.594, + "file_cluster_2": 8.328, + "file_cluster_3": 9.817, + "file_cluster_4": 9.354, + "file_cluster_5": 8.764, + "file_cluster_6": 9.021, + "file_cluster_7": 7.54, + "file_cluster_8": 6.13, + "file_cluster_9": 8.785, + "file_cluster_10": 10.069, + "file_cluster_11": 9.53, + "file_cluster_12": 7.596, + "file_cluster_13": 8.622, + "file_cluster_14": 13.344, + "file_cluster_15": 9.52, + "file_cluster_16": 8.457, + "file_cluster_17": 9.024 }, - "Total LOC": 1854, - "Coding LOC": 608, - "Documentation LOC": 1110, - "Structural Magnitude": 30.26, - "Control Flow Ratio": "11.6%", - "Popularity Rank": 2, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 63, + "Coding LOC": 32, + "Documentation LOC": 27, + "Structural Magnitude": 15.64, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.135 + "Raw Cognitive Density": 1.094 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.93%", - "Error & Exception Exposure": "39.87%", + "Cognitive Load Exposure": "79.82%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "12.77%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.27%", + "Documentation Exposure": "24.88%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "getFilterable", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "42.1%", - "Start Line": 281, - "End Line": 320 - }, - { - "Function Name": "getEq", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 228, - "End Line": 231 - }, - { - "Function Name": "getOrElseW", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 87, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "4.8%", - "Start Line": 1050, - "End Line": 1136 - }, - { - "Function Name": "getCompactable", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 260, - "End Line": 273 - }, - { - "Function Name": "elem", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "36.4%", - "Start Line": 1473, - "End Line": 1481 - }, - { - "Function Name": "traverseReadonlyNonEmptyArrayWithIndex", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1581, - "End Line": 1597 - }, - { - "Function Name": "getApplicativeValidation", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 404, - "End Line": 417 - }, - { - "Function Name": "_chainRec", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 193, - "End Line": 214 - }, - { - "Function Name": "toError", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 1458, - "End Line": 1464 - }, - { - "Function Name": "partition", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 289, - "End Line": 295 - }, - { - "Function Name": "filterMap", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 304, - "End Line": 310 - }, - { - "Function Name": "partitionMap", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 312, - "End Line": 318 - }, - { - "Function Name": "alt", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 457, - "End Line": 463 - }, - { - "Function Name": "tryCatch", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1393, - "End Line": 1399 - }, - { - "Function Name": "f", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 71, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1629, - "End Line": 1699 - }, - { - "Function Name": "getAltValidation", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 453, - "End Line": 464 - }, - { - "Function Name": "getSemigroup", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 250, - "End Line": 252 - }, - { - "Function Name": "B", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 651, - "End Line": 663 - }, - { - "Function Name": "stringifyJSON", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 1728, - "End Line": 1735 - }, - { - "Function Name": "f", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "16.7%", - "Start Line": 1606, - "End Line": 1610 - }, - { - "Function Name": "getShow", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 220, - "End Line": 222 - }, - { - "Function Name": "exists", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1497, - "End Line": 1510 - }, - { - "Function Name": "sequence", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 714, - "End Line": 718 - }, - { - "Function Name": "f", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1542, - "End Line": 1543 - }, - { - "Function Name": "getValidation", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1822, - "End Line": 1853 - }, - { - "Function Name": "getWitherable", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 328, - "End Line": 349 - }, - { - "Function Name": "parseJSON", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1717, - "End Line": 1719 - }, - { - "Function Name": "onNone", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1228, - "End Line": 1234 - }, - { - "Function Name": "_traverse", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 181, - "End Line": 186 - }, - { - "Function Name": "f", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1424, - "End Line": 1428 - }, - { - "Function Name": "chainNullableK", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1436, - "End Line": 1441 - }, - { - "Function Name": "_foldMap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 175, - "End Line": 178 - }, - { - "Function Name": "elem", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1469, - "End Line": 1472 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 61, - "Sequential Logic Declarations": 463, - "Function Parameters": 248, - "Function/Method Declarations": 81, - "Class/Entity Declarations": 6, - "Defensive Programming Constructs": 29, - "Type/Safety Bypasses": 11, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 126, - "State Mutations / Variable Reassignments": 8, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 130, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 157, - "Closures and Anonymous Functions": 19, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 424, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 32, + "Metaprogramming & Reflection": 6, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -423664,28 +425364,28 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 3, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 1, + "Explicit Type Casts": 6, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 30, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 149, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 377, + "Structural Space Indentations": 32, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 2, + "Serialization Parsing": 0, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -423696,13 +425396,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 60, - "Design Camel Case": 30, - "Design Snake Case": 23, - "Design Pascal Case": 1, - "Design Upper Case": 5, - "Design Short Vars": 13, - "Design Long Vars": 2, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -423728,158 +425428,108 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 38, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./Alt", - "./Applicative", - "./Apply", - "./Bifunctor", - "./Chain", - "./ChainRec", - "./Compactable", - "./Eq", - "./Extend", - "./Filterable", - "./Foldable", - "./FromEither", - "./Functor", - "./HKT", - "./Monad", - "./MonadThrow", - "./Monoid", - "./NonEmptyArray", - "./Option", - "./Pointed", - "./Predicate", - "./ReadonlyNonEmptyArray", - "./Refinement", - "./Semigroup", - "./Separated", - "./Show", - "./Traversable", - "./Witherable", - "./function", - "./internal", - "fp-ts/Apply", - "fp-ts/Either", - "fp-ts/Option", - "fp-ts/ReadonlyArray", - "fp-ts/Semigroup", - "fp-ts/function", - "fp-ts/number", - "fp-ts/string" - ] + "9. Extracted Dependencies": [] }, - "typescript/fp-ts/HKT.ts": { + "cobol/cobrix/test18 special_char.cob": { "1. Artifact Identity": { - "Filename": "HKT.ts", - "Path": "typescript/fp-ts/HKT.ts", - "Language": "Typescript", + "Filename": "test18 special_char.cob", + "Path": "cobol/cobrix/test18 special_char.cob", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "HKT, HKT2, HKT3", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6775.44, - "Y": 226.01, - "Z": -1051.95 + "X": -698.56, + "Y": 208.22, + "Z": -3122.8 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_16", - "Repository Drift (Z-Score)": 10.808, + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 6.13, "Repository Fingerprint": { - "file_cluster_0": 12.518, - "file_cluster_1": 12.289, - "file_cluster_2": 11.146, - "file_cluster_3": 13.371, - "file_cluster_4": 12.949, - "file_cluster_5": 12.654, - "file_cluster_6": 12.768, - "file_cluster_7": 11.956, - "file_cluster_8": 11.987, - "file_cluster_9": 12.794, - "file_cluster_10": 13.294, - "file_cluster_11": 12.624, - "file_cluster_12": 12.689, - "file_cluster_13": 12.101, - "file_cluster_14": 15.694, - "file_cluster_15": 12.669, - "file_cluster_16": 10.808, - "file_cluster_17": 12.391 - }, - "File Archetype": "Cluster 2: Type Definitions & Bypasses", - "File Drift (Z-Score)": 10.368, - "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 13.121, - "Cluster 1: Async Scripting & I/O Automation": 13.124, - "Cluster 2: Type Definitions & Bypasses": 10.368, - "Cluster 3: UI Frameworks & View Layers": 12.849, - "Cluster 4: Heavily Documented Core Classes": 10.957, - "Cluster 5: Declarative Glue & Inert Types": 12.798, - "Cluster 6: Async Testing & Verification": 13.558, - "Cluster 7: Highly Concurrent State Management": 12.989, - "Cluster 8: Algorithmic Data Processing": 12.018 + "file_cluster_0": 8.78, + "file_cluster_1": 7.594, + "file_cluster_2": 8.328, + "file_cluster_3": 9.817, + "file_cluster_4": 9.354, + "file_cluster_5": 8.764, + "file_cluster_6": 9.021, + "file_cluster_7": 7.54, + "file_cluster_8": 6.13, + "file_cluster_9": 8.785, + "file_cluster_10": 10.069, + "file_cluster_11": 9.53, + "file_cluster_12": 7.596, + "file_cluster_13": 8.622, + "file_cluster_14": 13.344, + "file_cluster_15": 9.52, + "file_cluster_16": 8.457, + "file_cluster_17": 9.024 }, - "Total LOC": 127, - "Coding LOC": 25, - "Documentation LOC": 82, - "Structural Magnitude": 3.15, - "Control Flow Ratio": "8.5%", - "Popularity Rank": 2, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 63, + "Coding LOC": 32, + "Documentation LOC": 27, + "Structural Magnitude": 15.64, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.16 + "Raw Cognitive Density": 1.094 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.31%", - "Error & Exception Exposure": "99.36%", + "Cognitive Load Exposure": "79.82%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", - "API Exposure": "11.68%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "82.38%", + "Documentation Exposure": "24.88%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 43, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, - "Class/Entity Declarations": 8, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 14, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 16, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 21, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 11, + "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 30, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 6, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -423894,18 +425544,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 6, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 5, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 5, + "Structural Space Indentations": 32, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -423922,11 +425572,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -423955,342 +425605,140 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "typescript/fp-ts/TaskEither.ts": { + "cobol/cobrix/test19_display_num.cob": { "1. Artifact Identity": { - "Filename": "TaskEither.ts", - "Path": "typescript/fp-ts/TaskEither.ts", - "Language": "Typescript", + "Filename": "test19_display_num.cob", + "Path": "cobol/cobrix/test19_display_num.cob", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Task, _", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6524.52, - "Y": 65.42, - "Z": -1602.71 + "X": -933.62, + "Y": 230.29, + "Z": -3330.92 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_16", - "Repository Drift (Z-Score)": 11.9, + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 4.447, "Repository Fingerprint": { - "file_cluster_0": 13.153, - "file_cluster_1": 13.315, - "file_cluster_2": 12.254, - "file_cluster_3": 13.82, - "file_cluster_4": 13.393, - "file_cluster_5": 13.639, - "file_cluster_6": 13.354, - "file_cluster_7": 13.008, - "file_cluster_8": 12.937, - "file_cluster_9": 13.432, - "file_cluster_10": 14.042, - "file_cluster_11": 12.794, - "file_cluster_12": 13.44, - "file_cluster_13": 12.408, - "file_cluster_14": 15.589, - "file_cluster_15": 13.198, - "file_cluster_16": 11.9, - "file_cluster_17": 12.782 - }, - "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 6.994, - "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 8.182, - "Cluster 1: Async Scripting & I/O Automation": 8.096, - "Cluster 2: Type Definitions & Bypasses": 7.98, - "Cluster 3: UI Frameworks & View Layers": 7.535, - "Cluster 4: Heavily Documented Core Classes": 7.515, - "Cluster 5: Declarative Glue & Inert Types": 7.553, - "Cluster 6: Async Testing & Verification": 9.096, - "Cluster 7: Highly Concurrent State Management": 8.551, - "Cluster 8: Algorithmic Data Processing": 6.994 + "file_cluster_0": 7.742, + "file_cluster_1": 6.315, + "file_cluster_2": 7.195, + "file_cluster_3": 8.986, + "file_cluster_4": 8.35, + "file_cluster_5": 7.698, + "file_cluster_6": 8.024, + "file_cluster_7": 6.25, + "file_cluster_8": 4.447, + "file_cluster_9": 7.738, + "file_cluster_10": 9.281, + "file_cluster_11": 8.888, + "file_cluster_12": 8.096, + "file_cluster_13": 7.576, + "file_cluster_14": 12.66, + "file_cluster_15": 8.651, + "file_cluster_16": 7.372, + "file_cluster_17": 7.984 }, - "Total LOC": 1882, - "Coding LOC": 662, - "Documentation LOC": 1053, - "Structural Magnitude": 22.98, - "Control Flow Ratio": "2.5%", + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 34, + "Coding LOC": 15, + "Documentation LOC": 17, + "Structural Magnitude": 15.3, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.13 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.87%", - "Error & Exception Exposure": "33.76%", + "Cognitive Load Exposure": "15.89%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "13.29%", - "Concurrency Exposure": "21.39%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "40.62%", + "Documentation Exposure": "47.39%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "traverseReadonlyNonEmptyArrayWithIndexSeq", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "18.2%", - "Start Line": 1624, - "End Line": 1639 - }, - { - "Function Name": "f", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "16.7%", - "Start Line": 1612, - "End Line": 1616 - }, - { - "Function Name": "f", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "16.7%", - "Start Line": 1651, - "End Line": 1655 - }, - { - "Function Name": "_alt", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 436, - "End Line": 472 - }, - { - "Function Name": "async", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 251, - "End Line": 257 - }, - { - "Function Name": "taskify", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "14.3%", - "Start Line": 1482, - "End Line": 1491 - }, - { - "Function Name": "f", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1561, - "End Line": 1562 - }, - { - "Function Name": "onLeft", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1771, - "End Line": 1799 - }, - { - "Function Name": "getFilterable", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 744, - "End Line": 763 - }, - { - "Function Name": "release", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1517, - "End Line": 1529 - }, - { - "Function Name": "getTaskValidation", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1862, - "End Line": 1881 - }, - { - "Function Name": "partitionMap", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 761, - "End Line": 772 - }, - { - "Function Name": "getApplicativeTaskValidation", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 696, - "End Line": 705 - }, - { - "Function Name": "onLeft", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 347, - "End Line": 359 - }, - { - "Function Name": "f", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1312, - "End Line": 1323 - }, - { - "Function Name": "getAltTaskValidation", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 716, - "End Line": 724 - }, - { - "Function Name": "getCompactable", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 730, - "End Line": 738 - }, - { - "Function Name": "onNone", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1179, - "End Line": 1185 - }, - { - "Function Name": "fromTaskOptionK", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 393, - "End Line": 398 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, - "Sequential Logic Declarations": 590, - "Function Parameters": 311, - "Function/Method Declarations": 76, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 49, - "Type/Safety Bypasses": 16, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 154, - "State Mutations / Variable Reassignments": 5, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 158, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 6, - "UI / View Layer Components": 220, - "Closures and Anonymous Functions": 15, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 616, - "Collection Iterators / Comprehensions": 6, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 32, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 3, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 1, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 28, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 168, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 359, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 1, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -424300,13 +425748,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 46, - "Design Camel Case": 24, - "Design Snake Case": 13, - "Design Pascal Case": 2, - "Design Upper Case": 7, - "Design Short Vars": 8, - "Design Long Vars": 5, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -424332,952 +425780,109 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 40, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./Alt", - "./Applicative", - "./Apply", - "./Bifunctor", - "./Chain", - "./Compactable", - "./Either", - "./EitherT", - "./Filterable", - "./FromEither", - "./FromIO", - "./FromTask", - "./Functor", - "./IO", - "./IOEither", - "./Monad", - "./MonadIO", - "./MonadTask", - "./MonadThrow", - "./Monoid", - "./NonEmptyArray", - "./Option", - "./Pointed", - "./Predicate", - "./ReadonlyNonEmptyArray", - "./Refinement", - "./Semigroup", - "./Task", - "./TaskOption", - "./function", - "./internal", - "fp-ts/Console", - "fp-ts/Either", - "fp-ts/ReadonlyArray", - "fp-ts/Semigroup", - "fp-ts/Task", - "fp-ts/TaskEither", - "fp-ts/function", - "fp-ts/string", - "fs" - ] + "9. Extracted Dependencies": [] }, - "typescript/fp-ts/pipeable.ts": { + "cobol/cobrix/test1_copybook.cob": { "1. Artifact Identity": { - "Filename": "pipeable.ts", - "Path": "typescript/fp-ts/pipeable.ts", - "Language": "Typescript", + "Filename": "test1_copybook.cob", + "Path": "cobol/cobrix/test1_copybook.cob", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "PipeableFunctor, PipeableFunctor1, PipeableFunctor2", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6521.3, - "Y": 177.34, - "Z": -1505.68 + "X": -460.76, + "Y": 252.47, + "Z": -3883.42 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_16", - "Repository Drift (Z-Score)": 11.017, + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 6.203, "Repository Fingerprint": { - "file_cluster_0": 12.67, - "file_cluster_1": 12.54, - "file_cluster_2": 12.119, - "file_cluster_3": 13.608, - "file_cluster_4": 13.141, - "file_cluster_5": 13.0, - "file_cluster_6": 12.92, - "file_cluster_7": 12.308, - "file_cluster_8": 12.03, - "file_cluster_9": 12.95, - "file_cluster_10": 13.618, - "file_cluster_11": 12.614, - "file_cluster_12": 13.006, - "file_cluster_13": 12.214, - "file_cluster_14": 16.013, - "file_cluster_15": 13.017, - "file_cluster_16": 11.017, - "file_cluster_17": 12.734 - }, - "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 6.722, - "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 7.559, - "Cluster 1: Async Scripting & I/O Automation": 7.711, - "Cluster 2: Type Definitions & Bypasses": 8.182, - "Cluster 3: UI Frameworks & View Layers": 6.916, - "Cluster 4: Heavily Documented Core Classes": 7.232, - "Cluster 5: Declarative Glue & Inert Types": 6.737, - "Cluster 6: Async Testing & Verification": 8.94, - "Cluster 7: Highly Concurrent State Management": 8.723, - "Cluster 8: Algorithmic Data Processing": 6.722 + "file_cluster_0": 8.706, + "file_cluster_1": 7.686, + "file_cluster_2": 8.303, + "file_cluster_3": 9.763, + "file_cluster_4": 9.326, + "file_cluster_5": 8.767, + "file_cluster_6": 8.907, + "file_cluster_7": 7.518, + "file_cluster_8": 6.203, + "file_cluster_9": 8.77, + "file_cluster_10": 9.85, + "file_cluster_11": 9.215, + "file_cluster_12": 7.717, + "file_cluster_13": 8.552, + "file_cluster_14": 13.397, + "file_cluster_15": 9.024, + "file_cluster_16": 8.433, + "file_cluster_17": 9.004 }, - "Total LOC": 2612, - "Coding LOC": 1772, - "Documentation LOC": 701, - "Structural Magnitude": 49.45, - "Control Flow Ratio": "5.4%", + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 37, + "Coding LOC": 19, + "Documentation LOC": 17, + "Structural Magnitude": 15.38, + "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.072 + "Raw Cognitive Density": 0.842 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.12%", - "Error & Exception Exposure": "46.57%", + "Cognitive Load Exposure": "59.11%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "14.61%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "90.42%", + "Documentation Exposure": "42.58%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "f", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1968, - "End Line": 1998 - }, - { - "Function Name": "f", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2019, - "End Line": 2049 - }, - { - "Function Name": "f", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1922, - "End Line": 1948 - }, - { - "Function Name": "f", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1900, - "End Line": 1924 - }, - { - "Function Name": "f", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1946, - "End Line": 1970 - }, - { - "Function Name": "f", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1996, - "End Line": 2021 - }, - { - "Function Name": "f", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1854, - "End Line": 1880 - }, - { - "Function Name": "f", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1811, - "End Line": 1835 - }, - { - "Function Name": "f", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1878, - "End Line": 1902 - }, - { - "Function Name": "f", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1791, - "End Line": 1813 - }, - { - "Function Name": "f", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1833, - "End Line": 1856 - }, - { - "Function Name": "f", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2047, - "End Line": 2058 - }, - { - "Function Name": "g", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1449, - "End Line": 1463 - }, - { - "Function Name": "f", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1985, - "End Line": 1994 - }, - { - "Function Name": "f", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2036, - "End Line": 2045 - }, - { - "Function Name": "f", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1326, - "End Line": 1339 - }, - { - "Function Name": "f", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1397, - "End Line": 1410 - }, - { - "Function Name": "g", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2103, - "End Line": 2114 - }, - { - "Function Name": "partition", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 638, - "End Line": 647 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 824, - "End Line": 833 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 834, - "End Line": 843 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 844, - "End Line": 853 - }, - { - "Function Name": "foldMapWithIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 484, - "End Line": 491 - }, - { - "Function Name": "partition", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 648, - "End Line": 655 - }, - { - "Function Name": "partition", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 656, - "End Line": 663 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 735, - "End Line": 742 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 854, - "End Line": 861 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 862, - "End Line": 869 - }, - { - "Function Name": "mapWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 191, - "End Line": 195 - }, - { - "Function Name": "bimap", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 275, - "End Line": 279 - }, - { - "Function Name": "foldMap", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 388, - "End Line": 393 - }, - { - "Function Name": "reduceWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 451, - "End Line": 455 - }, - { - "Function Name": "reduceRightWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 520, - "End Line": 524 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 559, - "End Line": 564 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 565, - "End Line": 570 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 571, - "End Line": 576 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 582 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 583, - "End Line": 588 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 589, - "End Line": 594 - }, - { - "Function Name": "partition", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 664, - "End Line": 669 - }, - { - "Function Name": "partition", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 670, - "End Line": 675 - }, - { - "Function Name": "partition", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 676, - "End Line": 681 - }, - { - "Function Name": "partition", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 686, - "End Line": 690 - }, - { - "Function Name": "partitionMap", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 723, - "End Line": 727 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 743, - "End Line": 748 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 749, - "End Line": 754 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 755, - "End Line": 760 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 761, - "End Line": 766 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 767, - "End Line": 772 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 773, - "End Line": 778 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 779, - "End Line": 783 - }, - { - "Function Name": "filterMapWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 812, - "End Line": 816 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 870, - "End Line": 875 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 876, - "End Line": 881 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 886 - }, - { - "Function Name": "partitionMapWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 921, - "End Line": 925 - }, - { - "Function Name": "promap", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 951, - "End Line": 955 - }, - { - "Function Name": "map", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 133 - }, - { - "Function Name": "contramap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 160, - "End Line": 162 - }, - { - "Function Name": "ap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 220, - "End Line": 222 - }, - { - "Function Name": "chain", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 247, - "End Line": 249 - }, - { - "Function Name": "mapLeft", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 303, - "End Line": 305 - }, - { - "Function Name": "extend", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 332, - "End Line": 334 - }, - { - "Function Name": "reduce", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 359, - "End Line": 361 - }, - { - "Function Name": "reduceRight", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 420, - "End Line": 422 - }, - { - "Function Name": "alt", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 549, - "End Line": 551 - }, - { - "Function Name": "filter", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 595, - "End Line": 598 - }, - { - "Function Name": "filter", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 599, - "End Line": 601 - }, - { - "Function Name": "filterMap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 628, - "End Line": 630 - }, - { - "Function Name": "partition", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 682, - "End Line": 685 - }, - { - "Function Name": "compose", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 979, - "End Line": 981 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2314, - "End Line": 2315 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2344, - "End Line": 2345 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2374, - "End Line": 2375 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2404, - "End Line": 2405 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2433, - "End Line": 2434 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2463, - "End Line": 2464 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2490, - "End Line": 2491 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2520, - "End Line": 2520 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 128, - "Sequential Logic Declarations": 2243, - "Function Parameters": 1193, - "Function/Method Declarations": 250, - "Class/Entity Declarations": 108, - "Defensive Programming Constructs": 20, - "Type/Safety Bypasses": 17, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 313, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 260, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 110, - "Closures and Anonymous Functions": 2, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 3138, - "Collection Iterators / Comprehensions": 3, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 24, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -425291,18 +425896,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 4, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 138, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 279, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1072, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -425319,9 +425924,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 20, - "Design Camel Case": 18, - "Design Snake Case": 2, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -425351,37 +425956,12 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 24, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./Alt", - "./Apply", - "./Bifunctor", - "./Chain", - "./Compactable", - "./Contravariant", - "./Either", - "./Extend", - "./Filterable", - "./FilterableWithIndex", - "./Foldable", - "./FoldableWithIndex", - "./Functor", - "./FunctorWithIndex", - "./HKT", - "./MonadThrow", - "./Monoid", - "./Option", - "./Predicate", - "./Profunctor", - "./Refinement", - "./Semigroupoid", - "./Separated", - "./function" - ] + "9. Extracted Dependencies": [] } } }, @@ -438550,9 +439130,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 3045.8, + "X": 3045.87, "Y": 219.52, - "Z": -5817.64 + "Z": -5817.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -438731,9 +439311,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3527.34, + "X": 3527.42, "Y": 77.93, - "Z": -5536.14 + "Z": -5536.26 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -438888,9 +439468,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3728.81, + "X": 3728.88, "Y": 117.24, - "Z": -5560.85 + "Z": -5560.96 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -439045,9 +439625,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3672.61, + "X": 3672.69, "Y": 156.7, - "Z": -5864.16 + "Z": -5864.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -439826,9 +440406,9 @@ "Identity Proof": "Metadata Anchor (pom.xml)" }, "2. Topological Coordinates": { - "X": 4065.91, + "X": 4065.98, "Y": -44.32, - "Z": -5401.09 + "Z": -5401.19 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -440026,9 +440606,9 @@ "Identity Proof": "Metadata Anchor (pom.xml)" }, "2. Topological Coordinates": { - "X": 5011.68, + "X": 5011.79, "Y": -82.68, - "Z": 4165.64 + "Z": 4165.74 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -442394,9 +442974,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 7042.45, + "X": 7044.72, "Y": -96.74, - "Z": -1112.69 + "Z": -1113.02 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -442551,9 +443131,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 6909.9, + "X": 6912.17, "Y": -88.78, - "Z": -902.67 + "Z": -903.01 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index 311262503..693f074a3 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "H:\\deepseek work\\language-crucible-clean\\data", - "Analysis ISO Timestamp": "2026-08-15T16:21:41.303537+00:00", - "Total Scan Duration": "17.94 seconds" + "Analysis ISO Timestamp": "2026-08-15T18:23:34.099691+00:00", + "Total Scan Duration": "17.32 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -196,10 +196,10 @@ } }, "health": { - "avg_cognitive_load": 24.647, + "avg_cognitive_load": 24.668, "avg_safety_score": 38.602, "avg_tech_debt": 23.245, - "avg_documentation": 21.516 + "avg_documentation": 21.519 }, "composition": { "xml": { @@ -360,7 +360,7 @@ "typescript": { "files": 24, "loc": 36020, - "impact": 4182.3 + "impact": 4192.11 }, "kotlin": { "files": 5, @@ -940,7 +940,7 @@ }, "typescript/playwright": { "file_count": 11, - "total_mass": 520.85, + "total_mass": 522.4, "avg_exposures": { "cognitive_load": 44.71, "safety_score": 58.04, @@ -1795,20 +1795,20 @@ }, "typescript/fp-ts": { "file_count": 5, - "total_mass": 107.36, + "total_mass": 117.56, "avg_exposures": { - "cognitive_load": 3.05, + "cognitive_load": 3.14, "safety_score": 43.91, "tech_debt": 0.0, "verification": 48.46, - "api_exposure": 10.47, + "api_exposure": 10.48, "concurrency": 4.28, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 80.0, "stability": 40.0, "churn": 0.0, - "documentation": 45.34, + "documentation": 45.81, "secrets_risk": 0.0 } }, @@ -1833,10 +1833,10 @@ }, "typescript/vscode": { "file_count": 11, - "total_mass": 1392.44, + "total_mass": 1390.5, "avg_exposures": { - "cognitive_load": 33.44, - "safety_score": 59.88, + "cognitive_load": 35.14, + "safety_score": 59.85, "tech_debt": 44.35, "verification": 44.29, "api_exposure": 4.25, @@ -4040,15 +4040,15 @@ "path": "typescript/playwright/crConnection.ts", "value": 696.07 }, + { + "name": "codeEditorWidget.ts", + "path": "typescript/vscode/codeEditorWidget.ts", + "value": 694.18 + }, { "name": "ci.psm1", "path": "powershell/core/ci.psm1", "value": 688.42 - }, - { - "name": "ipc.ts", - "path": "typescript/vscode/ipc.ts", - "value": 678.34 } ], "lowest": [ @@ -53178,9 +53178,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 3541.86, + "X": 3541.94, "Y": -122.98, - "Z": -4248.16 + "Z": -4248.26 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -55215,9 +55215,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 3819.19, + "X": 3819.27, "Y": -93.04, - "Z": -4650.1 + "Z": -4650.2 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -59756,9 +59756,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 3947.67, + "X": 3947.75, "Y": -157.14, - "Z": -5050.94 + "Z": -5051.03 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -61831,9 +61831,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 4222.59, + "X": 4222.67, "Y": 74.28, - "Z": -4156.06 + "Z": -4156.16 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -63306,9 +63306,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 3281.41, + "X": 3281.49, "Y": -183.14, - "Z": -4939.29 + "Z": -4939.39 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -239390,9 +239390,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 2410.29, + "X": 2410.36, "Y": -315.53, - "Z": -5234.53 + "Z": -5234.66 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -239581,9 +239581,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2685.17, + "X": 2685.24, "Y": -197.74, - "Z": -4715.86 + "Z": -4715.98 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -240468,9 +240468,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3296.88, + "X": 3296.96, "Y": -174.89, - "Z": -4609.22 + "Z": -4609.34 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -240818,9 +240818,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3023.79, + "X": 3023.86, "Y": -311.98, - "Z": -5474.08 + "Z": -5474.21 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -241585,9 +241585,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": 3405.35, + "X": 3405.42, "Y": -289.85, - "Z": -5325.05 + "Z": -5325.18 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -241773,9 +241773,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2922.53, + "X": 2922.61, "Y": -233.45, - "Z": -5212.67 + "Z": -5212.79 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -341709,9 +341709,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 4363.5, + "X": 4363.62, "Y": 286.85, - "Z": 3643.94 + "Z": 3644.05 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -341918,9 +341918,9 @@ "Identity Proof": "Metadata Anchor (Package.swift)" }, "2. Topological Coordinates": { - "X": 4745.22, + "X": 4745.34, "Y": 252.72, - "Z": 3540.95 + "Z": 3541.06 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -342096,9 +342096,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 3788.97, + "X": 3789.08, "Y": 166.02, - "Z": 3929.07 + "Z": 3929.17 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -342355,9 +342355,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 4065.75, + "X": 4065.86, "Y": 82.33, - "Z": 4253.43 + "Z": 4253.53 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -343024,9 +343024,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 4640.77, + "X": 4640.89, "Y": 126.68, - "Z": 4284.67 + "Z": 4284.77 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -343353,9 +343353,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": 4323.87, + "X": 4323.99, "Y": 135.59, - "Z": 3762.72 + "Z": 3762.83 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -369506,7 +369506,7 @@ } }, "typescript/vscode": { - "Directory Group Magnitude": 1392.44, + "Directory Group Magnitude": 1390.5, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "file_cluster_11": "36.4%", @@ -369517,8 +369517,8 @@ "file_cluster_3": "9.1%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "33.44%", - "Error & Exception Exposure": "59.88%", + "Cognitive Load Exposure": "35.14%", + "Error & Exception Exposure": "59.85%", "Tech Debt Exposure": "44.35%", "Testing Exposure": "44.29%", "API Exposure": "4.25%", @@ -369545,9 +369545,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 3935.05, - "Y": 106.22, - "Z": 2291.57 + "X": 3935.13, + "Y": 106.21, + "Z": 2291.55 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -369702,9 +369702,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 3122.02, - "Y": 65.6, - "Z": 3136.2 + "X": 3122.01, + "Y": 65.59, + "Z": 3136.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -369859,8 +369859,8 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 4110.76, - "Y": 160.23, + "X": 4110.88, + "Y": 160.24, "Z": 2577.38 }, "3. Architectural Profile": { @@ -370056,50 +370056,50 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3477.76, + "X": 3477.86, "Y": 154.09, "Z": 3299.86 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_4", - "Repository Drift (Z-Score)": 15.344, + "Repository Drift (Z-Score)": 15.334, "Repository Fingerprint": { - "file_cluster_0": 15.977, - "file_cluster_1": 16.52, - "file_cluster_2": 16.086, - "file_cluster_3": 16.75, - "file_cluster_4": 15.344, - "file_cluster_5": 16.784, - "file_cluster_6": 16.085, - "file_cluster_7": 16.206, - "file_cluster_8": 16.185, - "file_cluster_9": 16.261, - "file_cluster_10": 16.772, - "file_cluster_11": 15.451, - "file_cluster_12": 16.436, - "file_cluster_13": 15.848, - "file_cluster_14": 18.444, - "file_cluster_15": 15.843, - "file_cluster_16": 15.702, - "file_cluster_17": 15.846 + "file_cluster_0": 15.967, + "file_cluster_1": 16.51, + "file_cluster_2": 16.075, + "file_cluster_3": 16.739, + "file_cluster_4": 15.334, + "file_cluster_5": 16.774, + "file_cluster_6": 16.075, + "file_cluster_7": 16.195, + "file_cluster_8": 16.174, + "file_cluster_9": 16.251, + "file_cluster_10": 16.762, + "file_cluster_11": 15.441, + "file_cluster_12": 16.426, + "file_cluster_13": 15.838, + "file_cluster_14": 18.436, + "file_cluster_15": 15.833, + "file_cluster_16": 15.691, + "file_cluster_17": 15.836 }, "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 7.086, + "File Drift (Z-Score)": 7.085, "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 8.417, - "Cluster 1: Async Scripting & I/O Automation": 8.183, - "Cluster 2: Type Definitions & Bypasses": 8.182, - "Cluster 3: UI Frameworks & View Layers": 7.745, - "Cluster 4: Heavily Documented Core Classes": 7.942, - "Cluster 5: Declarative Glue & Inert Types": 7.553, - "Cluster 6: Async Testing & Verification": 9.041, + "Cluster 0: The God Nodes (Universal Dependencies)": 8.416, + "Cluster 1: Async Scripting & I/O Automation": 8.182, + "Cluster 2: Type Definitions & Bypasses": 8.181, + "Cluster 3: UI Frameworks & View Layers": 7.743, + "Cluster 4: Heavily Documented Core Classes": 7.94, + "Cluster 5: Declarative Glue & Inert Types": 7.552, + "Cluster 6: Async Testing & Verification": 9.04, "Cluster 7: Highly Concurrent State Management": 8.035, - "Cluster 8: Algorithmic Data Processing": 7.086 + "Cluster 8: Algorithmic Data Processing": 7.085 }, "Total LOC": 2646, "Coding LOC": 1803, "Documentation LOC": 419, - "Structural Magnitude": 322.77, + "Structural Magnitude": 319.13, "Control Flow Ratio": "33.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -370109,9 +370109,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "57.8%", - "Error & Exception Exposure": "93.25%", + "Error & Exception Exposure": "93.04%", "Tech Debt Exposure": "75.38%", - "Testing Exposure": "2.48%", + "Testing Exposure": "2.47%", "API Exposure": "6.5%", "Concurrency Exposure": "100.0%", "State Flux Exposure": "100.0%", @@ -370143,16 +370143,6 @@ "Start Line": 1341, "End Line": 1384 }, - { - "Function Name": "boolean", - "Structural Impact": 17.2, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "58.8%", - "Start Line": 648, - "End Line": 679 - }, { "Function Name": "timeRemaining", "Structural Impact": 15.8, @@ -370353,16 +370343,6 @@ "Start Line": 1552, "End Line": 1566 }, - { - "Function Name": "any", - "Structural Impact": 8.7, - "Lines of Code (LOC)": 74, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "44.4%", - "Start Line": 1101, - "End Line": 1174 - }, { "Function Name": "_runWhenIdle", "Structural Impact": 8.7, @@ -370603,16 +370583,6 @@ "Start Line": 2341, "End Line": 2347 }, - { - "Function Name": "boolean", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "18.2%", - "Start Line": 618, - "End Line": 640 - }, { "Function Name": "queue", "Structural Impact": 5.3, @@ -371633,6 +371603,16 @@ "Start Line": 1545, "End Line": 1547 }, + { + "Function Name": "_emitManyFn", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2230, + "End Line": 2238 + }, { "Function Name": "constructor", "Structural Impact": 1.8, @@ -371893,6 +371873,26 @@ "Start Line": 2551, "End Line": 2554 }, + { + "Function Name": "_errorFn", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2228, + "End Line": 2229 + }, + { + "Function Name": "_emitOneFn", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2229, + "End Line": 2230 + }, { "Function Name": "emitOne", "Structural Impact": 1.5, @@ -372436,7 +372436,7 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 129, - "State Mutations / Variable Reassignments": 1221, + "State Mutations / Variable Reassignments": 1211, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 76, "Unit Test Assertions": 0, @@ -372554,59 +372554,59 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3658.41, + "X": 3658.47, "Y": 139.86, - "Z": 2946.34 + "Z": 2946.39 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", - "Repository Drift (Z-Score)": 15.041, + "Repository Drift (Z-Score)": 15.04, "Repository Fingerprint": { - "file_cluster_0": 15.422, + "file_cluster_0": 15.421, "file_cluster_1": 16.125, - "file_cluster_2": 15.602, + "file_cluster_2": 15.601, "file_cluster_3": 16.235, - "file_cluster_4": 15.53, - "file_cluster_5": 16.434, + "file_cluster_4": 15.529, + "file_cluster_5": 16.433, "file_cluster_6": 15.725, "file_cluster_7": 15.788, "file_cluster_8": 15.607, "file_cluster_9": 15.791, - "file_cluster_10": 16.414, - "file_cluster_11": 15.041, + "file_cluster_10": 16.413, + "file_cluster_11": 15.04, "file_cluster_12": 16.038, "file_cluster_13": 15.173, "file_cluster_14": 17.913, "file_cluster_15": 15.65, - "file_cluster_16": 15.552, - "file_cluster_17": 15.451 + "file_cluster_16": 15.551, + "file_cluster_17": 15.45 }, "File Archetype": "Cluster 5: Declarative Glue & Inert Types", - "File Drift (Z-Score)": 6.387, + "File Drift (Z-Score)": 6.39, "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 7.523, - "Cluster 1: Async Scripting & I/O Automation": 7.528, - "Cluster 2: Type Definitions & Bypasses": 8.861, - "Cluster 3: UI Frameworks & View Layers": 7.077, - "Cluster 4: Heavily Documented Core Classes": 7.923, - "Cluster 5: Declarative Glue & Inert Types": 6.387, - "Cluster 6: Async Testing & Verification": 8.792, - "Cluster 7: Highly Concurrent State Management": 7.906, - "Cluster 8: Algorithmic Data Processing": 6.427 + "Cluster 0: The God Nodes (Universal Dependencies)": 7.525, + "Cluster 1: Async Scripting & I/O Automation": 7.53, + "Cluster 2: Type Definitions & Bypasses": 8.863, + "Cluster 3: UI Frameworks & View Layers": 7.079, + "Cluster 4: Heavily Documented Core Classes": 7.925, + "Cluster 5: Declarative Glue & Inert Types": 6.39, + "Cluster 6: Async Testing & Verification": 8.794, + "Cluster 7: Highly Concurrent State Management": 7.908, + "Cluster 8: Algorithmic Data Processing": 6.429 }, "Total LOC": 2560, "Coding LOC": 2125, "Documentation LOC": 66, - "Structural Magnitude": 325.77, + "Structural Magnitude": 327.7, "Control Flow Ratio": "52.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.973 + "Raw Cognitive Density": 1.314 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "67.89%", + "Cognitive Load Exposure": "86.67%", "Error & Exception Exposure": "99.0%", "Tech Debt Exposure": "55.71%", "Testing Exposure": "80.0%", @@ -373941,6 +373941,16 @@ "Start Line": 1247, "End Line": 1252 }, + { + "Function Name": "onMouseWheel", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1990, + "End Line": 2006 + }, { "Function Name": "_beginUpdate", "Structural Impact": 2.3, @@ -374121,6 +374131,16 @@ "Start Line": 2189, "End Line": 2194 }, + { + "Function Name": "update", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2343, + "End Line": 2368 + }, { "Function Name": "reset", "Structural Impact": 2.0, @@ -374351,6 +374371,106 @@ "Start Line": 1668, "End Line": 1668 }, + { + "Function Name": "onKeyDown", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1980, + "End Line": 1981 + }, + { + "Function Name": "onKeyUp", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1981, + "End Line": 1982 + }, + { + "Function Name": "onContextMenu", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1982, + "End Line": 1983 + }, + { + "Function Name": "onMouseMove", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1983, + "End Line": 1984 + }, + { + "Function Name": "onMouseLeave", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1984, + "End Line": 1985 + }, + { + "Function Name": "onMouseDown", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1985, + "End Line": 1986 + }, + { + "Function Name": "onMouseUp", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1986, + "End Line": 1987 + }, + { + "Function Name": "onMouseDrag", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1987, + "End Line": 1988 + }, + { + "Function Name": "onMouseDrop", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1988, + "End Line": 1989 + }, + { + "Function Name": "onMouseDropCanceled", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1989, + "End Line": 1990 + }, { "Function Name": "getSupportedActions", "Structural Impact": 1.4, @@ -374667,7 +374787,7 @@ "Dependency Injection Constructs": 4, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 78, + "Manual Memory Allocation": 79, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 3, @@ -374814,9 +374934,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3980.02, - "Y": 265.31, - "Z": 3334.4 + "X": 3980.11, + "Y": 265.32, + "Z": 3334.5 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -378781,9 +378901,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4285.89, - "Y": 307.12, - "Z": 2980.51 + "X": 4286.01, + "Y": 307.14, + "Z": 2980.57 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -379107,9 +379227,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3459.51, - "Y": 54.87, - "Z": 2568.81 + "X": 3459.54, + "Y": 54.85, + "Z": 2568.79 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -379616,49 +379736,49 @@ }, "2. Topological Coordinates": { "X": 3175.83, - "Y": -5.15, - "Z": 3025.17 + "Y": -5.16, + "Z": 3025.21 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", - "Repository Drift (Z-Score)": 13.754, + "Repository Drift (Z-Score)": 13.743, "Repository Fingerprint": { - "file_cluster_0": 14.908, - "file_cluster_1": 15.633, - "file_cluster_2": 14.78, - "file_cluster_3": 14.518, - "file_cluster_4": 14.474, - "file_cluster_5": 15.852, - "file_cluster_6": 15.043, - "file_cluster_7": 15.297, - "file_cluster_8": 15.197, - "file_cluster_9": 15.207, - "file_cluster_10": 15.664, - "file_cluster_11": 13.754, - "file_cluster_12": 15.285, - "file_cluster_13": 14.682, - "file_cluster_14": 15.538, - "file_cluster_15": 14.834, - "file_cluster_16": 14.766, - "file_cluster_17": 14.537 + "file_cluster_0": 14.897, + "file_cluster_1": 15.621, + "file_cluster_2": 14.769, + "file_cluster_3": 14.506, + "file_cluster_4": 14.464, + "file_cluster_5": 15.841, + "file_cluster_6": 15.032, + "file_cluster_7": 15.286, + "file_cluster_8": 15.185, + "file_cluster_9": 15.196, + "file_cluster_10": 15.653, + "file_cluster_11": 13.743, + "file_cluster_12": 15.274, + "file_cluster_13": 14.671, + "file_cluster_14": 15.527, + "file_cluster_15": 14.823, + "file_cluster_16": 14.754, + "file_cluster_17": 14.526 }, "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 7.425, + "File Drift (Z-Score)": 7.424, "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 8.651, - "Cluster 1: Async Scripting & I/O Automation": 8.481, - "Cluster 2: Type Definitions & Bypasses": 7.79, - "Cluster 3: UI Frameworks & View Layers": 8.118, - "Cluster 4: Heavily Documented Core Classes": 7.585, - "Cluster 5: Declarative Glue & Inert Types": 7.867, - "Cluster 6: Async Testing & Verification": 9.092, + "Cluster 0: The God Nodes (Universal Dependencies)": 8.65, + "Cluster 1: Async Scripting & I/O Automation": 8.48, + "Cluster 2: Type Definitions & Bypasses": 7.789, + "Cluster 3: UI Frameworks & View Layers": 8.116, + "Cluster 4: Heavily Documented Core Classes": 7.583, + "Cluster 5: Declarative Glue & Inert Types": 7.865, + "Cluster 6: Async Testing & Verification": 9.091, "Cluster 7: Highly Concurrent State Management": 8.022, - "Cluster 8: Algorithmic Data Processing": 7.425 + "Cluster 8: Algorithmic Data Processing": 7.424 }, "Total LOC": 1308, "Coding LOC": 962, "Documentation LOC": 126, - "Structural Magnitude": 145.32, + "Structural Magnitude": 145.09, "Control Flow Ratio": "39.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -379668,7 +379788,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "80.66%", - "Error & Exception Exposure": "92.57%", + "Error & Exception Exposure": "92.4%", "Tech Debt Exposure": "40.25%", "Testing Exposure": "80.0%", "API Exposure": "3.69%", @@ -380492,6 +380612,16 @@ "Start Line": 247, "End Line": 251 }, + { + "Function Name": "IHandler", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 689, + "End Line": 693 + }, { "Function Name": "write", "Structural Impact": 1.6, @@ -380605,7 +380735,7 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 33, - "State Mutations / Variable Reassignments": 447, + "State Mutations / Variable Reassignments": 443, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 16, "Unit Test Assertions": 0, @@ -380726,9 +380856,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3514.32, - "Y": 207.55, - "Z": 3527.99 + "X": 3514.36, + "Y": 207.56, + "Z": 3528.1 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -381812,9 +381942,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3750.39, - "Y": 133.7, - "Z": 2542.56 + "X": 3750.45, + "Y": 133.69, + "Z": 2542.53 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_3", @@ -400952,7 +401082,7 @@ } }, "typescript/playwright": { - "Directory Group Magnitude": 520.85, + "Directory Group Magnitude": 522.4, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "Static: Literature & Documentation": "36.4%", @@ -400990,9 +401120,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3384.98, + "X": 3385.06, "Y": -338.07, - "Z": -4306.41 + "Z": -4306.48 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -401147,9 +401277,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3416.02, - "Y": -406.36, - "Z": -3802.06 + "X": 3416.11, + "Y": -406.38, + "Z": -3802.08 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -401304,9 +401434,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2389.76, - "Y": -192.26, - "Z": -3713.02 + "X": 2389.74, + "Y": -192.25, + "Z": -3713.04 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -401461,9 +401591,9 @@ "Identity Proof": "Metadata Anchor (NOTICE)" }, "2. Topological Coordinates": { - "X": 3224.97, + "X": 3225.02, "Y": -252.84, - "Z": -4456.74 + "Z": -4456.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -401618,9 +401748,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2774.75, - "Y": -272.88, - "Z": -3544.13 + "X": 2774.77, + "Y": -272.89, + "Z": -3544.12 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -401837,9 +401967,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2446.03, - "Y": -158.16, - "Z": -3984.31 + "X": 2446.01, + "Y": -158.15, + "Z": -3984.37 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_11", @@ -402214,9 +402344,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2995.16, + "X": 2995.2, "Y": -180.7, - "Z": -4481.52 + "Z": -4481.62 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_13", @@ -402625,8 +402755,8 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 3143.89, - "Y": -328.89, + "X": 3143.95, + "Y": -328.9, "Z": -3623.25 }, "3. Architectural Profile": { @@ -403023,9 +403153,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2676.96, + "X": 2676.95, "Y": -217.04, - "Z": -3890.38 + "Z": -3890.39 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_4", @@ -403545,9 +403675,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2880.24, + "X": 2880.28, "Y": -230.5, - "Z": -3924.05 + "Z": -3924.1 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_4", @@ -403564,9 +403694,9 @@ "file_cluster_8": 15.162, "file_cluster_9": 15.376, "file_cluster_10": 15.93, - "file_cluster_11": 14.38, + "file_cluster_11": 14.379, "file_cluster_12": 15.624, - "file_cluster_13": 14.873, + "file_cluster_13": 14.872, "file_cluster_14": 17.192, "file_cluster_15": 15.068, "file_cluster_16": 15.219, @@ -403588,7 +403718,7 @@ "Total LOC": 1823, "Coding LOC": 1533, "Documentation LOC": 91, - "Structural Magnitude": 328.03, + "Structural Magnitude": 329.58, "Control Flow Ratio": "46.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -403822,6 +403952,16 @@ "Start Line": 254, "End Line": 267 }, + { + "Function Name": "predicate", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 676, + "End Line": 690 + }, { "Function Name": "predicate", "Structural Impact": 8.9, @@ -404442,6 +404582,16 @@ "Start Line": 943, "End Line": 947 }, + { + "Function Name": "onerror", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1009, + "End Line": 1015 + }, { "Function Name": "collect", "Structural Impact": 3.1, @@ -404502,6 +404652,16 @@ "Start Line": 737, "End Line": 739 }, + { + "Function Name": "onerror", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 997, + "End Line": 1002 + }, { "Function Name": "fixupMetadataError", "Structural Impact": 3.1, @@ -405305,9 +405465,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2675.59, - "Y": -153.41, - "Z": -4670.23 + "X": 2675.6, + "Y": -153.4, + "Z": -4670.32 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_3", @@ -412216,9 +412376,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4390.68, + "X": 4390.76, "Y": 97.38, - "Z": -4768.23 + "Z": -4768.32 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -412373,9 +412533,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4594.75, + "X": 4594.83, "Y": 141.84, - "Z": -4976.41 + "Z": -4976.5 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -415432,9 +415592,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 4325.11, + "X": 4325.22, "Y": 211.04, - "Z": 4954.25 + "Z": 4954.36 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -415589,9 +415749,9 @@ "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": 4566.65, + "X": 4566.76, "Y": 251.14, - "Z": 4535.78 + "Z": 4535.89 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -420599,110 +420759,92 @@ } } }, - "assembly/hellosilicon": { - "Directory Group Magnitude": 114.36, - "File Count": 4, + "typescript/fp-ts": { + "Directory Group Magnitude": 117.56, + "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { - "file_cluster_8": "100.0%" + "file_cluster_16": "80.0%", + "Static: Literature & Documentation": "20.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "11.35%", - "Error & Exception Exposure": "21.7%", - "Tech Debt Exposure": "24.89%", - "Testing Exposure": "2.43%", - "API Exposure": "3.2%", - "Concurrency Exposure": "0.0%", + "Cognitive Load Exposure": "3.14%", + "Error & Exception Exposure": "43.91%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "48.46%", + "API Exposure": "10.48%", + "Concurrency Exposure": "4.28%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "26.46%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "40.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.29%", + "Documentation Exposure": "45.81%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "assembly/hellosilicon/makefile": { + "typescript/fp-ts/package.json": { "1. Artifact Identity": { - "Filename": "makefile", - "Path": "assembly/hellosilicon/makefile", - "Language": "Makefile", + "Filename": "package.json", + "Path": "typescript/fp-ts/package.json", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "typescript", "Lock Tier": 2, "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 2.77, - "Y": 39.33, - "Z": 5315.15 + "X": 6052.13, + "Y": 181.47, + "Z": -1500.93 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 7.69, - "Repository Fingerprint": { - "file_cluster_0": 9.025, - "file_cluster_1": 8.863, - "file_cluster_2": 9.154, - "file_cluster_3": 10.551, - "file_cluster_4": 9.491, - "file_cluster_5": 9.722, - "file_cluster_6": 9.493, - "file_cluster_7": 8.556, - "file_cluster_8": 7.69, - "file_cluster_9": 9.248, - "file_cluster_10": 10.574, - "file_cluster_11": 9.709, - "file_cluster_12": 9.637, - "file_cluster_13": 9.047, - "file_cluster_14": 13.795, - "file_cluster_15": 9.946, - "file_cluster_16": 9.199, - "file_cluster_17": 9.317 - }, - "File Archetype": null, + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 32, - "Coding LOC": 23, - "Documentation LOC": 0, - "Structural Magnitude": 53.96, - "Control Flow Ratio": "30.0%", + "Total LOC": 76, + "Coding LOC": 0, + "Documentation LOC": 75, + "Structural Magnitude": 1.52, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.348 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.67%", - "Error & Exception Exposure": "86.8%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", - "API Exposure": "6.28%", - "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": "89.9%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 7, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 7, + "Function/Method Declarations": 0, "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": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -420736,11 +420878,11 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 6, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -420758,11 +420900,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 7, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 7, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -420797,133 +420939,625 @@ }, "9. Extracted Dependencies": [] }, - "assembly/hellosilicon/fileio.S": { + "typescript/fp-ts/Either.ts": { "1. Artifact Identity": { - "Filename": "fileio.S", - "Path": "assembly/hellosilicon/fileio.S", - "Language": "Assembly", + "Filename": "Either.ts", + "Path": "typescript/fp-ts/Either.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (80.0% Spaces / 20.0% Tabs)", + "Indentation Style": "Spaces", + "Parent Entity": "_, ReadonlyArray", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 295.7, - "Y": 89.29, - "Z": 5650.33 + "X": 6295.0, + "Y": 267.36, + "Z": -1193.03 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 8.012, + "Repository Archetype": "file_cluster_16", + "Repository Drift (Z-Score)": 11.874, "Repository Fingerprint": { - "file_cluster_0": 9.809, - "file_cluster_1": 8.474, - "file_cluster_2": 9.496, - "file_cluster_3": 10.867, - "file_cluster_4": 10.202, - "file_cluster_5": 9.917, - "file_cluster_6": 10.079, - "file_cluster_7": 9.015, - "file_cluster_8": 8.012, - "file_cluster_9": 9.894, - "file_cluster_10": 11.068, - "file_cluster_11": 10.503, - "file_cluster_12": 10.227, - "file_cluster_13": 9.664, - "file_cluster_14": 14.07, - "file_cluster_15": 10.564, - "file_cluster_16": 9.757, - "file_cluster_17": 9.944 + "file_cluster_0": 13.034, + "file_cluster_1": 13.223, + "file_cluster_2": 12.206, + "file_cluster_3": 13.826, + "file_cluster_4": 13.447, + "file_cluster_5": 13.47, + "file_cluster_6": 13.196, + "file_cluster_7": 12.892, + "file_cluster_8": 12.849, + "file_cluster_9": 13.334, + "file_cluster_10": 13.875, + "file_cluster_11": 12.621, + "file_cluster_12": 13.378, + "file_cluster_13": 12.267, + "file_cluster_14": 15.824, + "file_cluster_15": 12.962, + "file_cluster_16": 11.874, + "file_cluster_17": 12.912 }, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 51, - "Coding LOC": 44, - "Documentation LOC": 1, - "Structural Magnitude": 15.88, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "File Archetype": "Cluster 8: Algorithmic Data Processing", + "File Drift (Z-Score)": 6.994, + "File Fingerprint": { + "Cluster 0: The God Nodes (Universal Dependencies)": 8.158, + "Cluster 1: Async Scripting & I/O Automation": 8.056, + "Cluster 2: Type Definitions & Bypasses": 8.194, + "Cluster 3: UI Frameworks & View Layers": 7.554, + "Cluster 4: Heavily Documented Core Classes": 7.659, + "Cluster 5: Declarative Glue & Inert Types": 7.463, + "Cluster 6: Async Testing & Verification": 9.097, + "Cluster 7: Highly Concurrent State Management": 8.362, + "Cluster 8: Algorithmic Data Processing": 6.994 + }, + "Total LOC": 1854, + "Coding LOC": 608, + "Documentation LOC": 1110, + "Structural Magnitude": 35.01, + "Control Flow Ratio": "11.6%", + "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.114 + "Raw Cognitive Density": 0.135 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.27%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "3.93%", + "Error & Exception Exposure": "39.87%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "12.84%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.5%", + "Documentation Exposure": "15.63%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "getFilterable", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "42.1%", + "Start Line": 281, + "End Line": 320 + }, + { + "Function Name": "getEq", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 228, + "End Line": 231 + }, + { + "Function Name": "getOrElseW", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 87, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "4.8%", + "Start Line": 1050, + "End Line": 1136 + }, + { + "Function Name": "getCompactable", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 260, + "End Line": 273 + }, + { + "Function Name": "elem", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "36.4%", + "Start Line": 1473, + "End Line": 1481 + }, + { + "Function Name": "matchW", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "5.9%", + "Start Line": 985, + "End Line": 1050 + }, + { + "Function Name": "traverseReadonlyNonEmptyArrayWithIndex", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1581, + "End Line": 1597 + }, + { + "Function Name": "getApplicativeValidation", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 404, + "End Line": 417 + }, + { + "Function Name": "_chainRec", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 193, + "End Line": 214 + }, + { + "Function Name": "toError", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 1458, + "End Line": 1464 + }, + { + "Function Name": "partition", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 289, + "End Line": 295 + }, + { + "Function Name": "filterMap", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 304, + "End Line": 310 + }, + { + "Function Name": "partitionMap", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 312, + "End Line": 318 + }, + { + "Function Name": "alt", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 457, + "End Line": 463 + }, + { + "Function Name": "orElseW", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "11.1%", + "Start Line": 1335, + "End Line": 1363 + }, + { + "Function Name": "tryCatch", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1393, + "End Line": 1399 + }, + { + "Function Name": "f", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 71, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1629, + "End Line": 1699 + }, + { + "Function Name": "getAltValidation", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 453, + "End Line": 464 + }, + { + "Function Name": "getSemigroup", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 250, + "End Line": 252 + }, + { + "Function Name": "fromNullable", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1363, + "End Line": 1393 + }, + { + "Function Name": "traverse", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "16.7%", + "Start Line": 687, + "End Line": 714 + }, + { + "Function Name": "stringifyJSON", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 1728, + "End Line": 1735 + }, + { + "Function Name": "f", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "16.7%", + "Start Line": 1606, + "End Line": 1610 + }, + { + "Function Name": "getShow", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 220, + "End Line": 222 + }, + { + "Function Name": "filter", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 286, + "End Line": 287 + }, + { + "Function Name": "exists", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1497, + "End Line": 1510 + }, + { + "Function Name": "swap", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1325, + "End Line": 1335 + }, + { + "Function Name": "sequence", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 714, + "End Line": 718 + }, + { + "Function Name": "f", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1542, + "End Line": 1543 + }, + { + "Function Name": "getValidation", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1822, + "End Line": 1853 + }, + { + "Function Name": "getWitherable", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 328, + "End Line": 349 + }, + { + "Function Name": "getValidationSemigroup", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1802, + "End Line": 1812 + }, + { + "Function Name": "getValidationMonoid", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1812, + "End Line": 1822 + }, + { + "Function Name": "_reduce", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 173, + "End Line": 175 + }, + { + "Function Name": "_reduceRight", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 180, + "End Line": 181 + }, + { + "Function Name": "_bimap", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 187, + "End Line": 188 + }, + { + "Function Name": "_ap", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 171, + "End Line": 173 + }, + { + "Function Name": "_mapLeft", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 188, + "End Line": 190 + }, + { + "Function Name": "_alt", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 190, + "End Line": 192 + }, + { + "Function Name": "parseJSON", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1717, + "End Line": 1719 + }, + { + "Function Name": "_map", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 170, + "End Line": 171 + }, + { + "Function Name": "_extend", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 192, + "End Line": 193 + }, + { + "Function Name": "onNone", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1228, + "End Line": 1234 + }, + { + "Function Name": "_traverse", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 181, + "End Line": 186 + }, + { + "Function Name": "f", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1424, + "End Line": 1428 + }, + { + "Function Name": "chainNullableK", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1436, + "End Line": 1441 + }, + { + "Function Name": "_foldMap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 175, + "End Line": 178 + }, + { + "Function Name": "elem", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1469, + "End Line": 1472 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 17, - "Function Parameters": 21, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 61, + "Sequential Logic Declarations": 463, + "Function Parameters": 248, + "Function/Method Declarations": 81, + "Class/Entity Declarations": 6, + "Defensive Programming Constructs": 29, + "Type/Safety Bypasses": 11, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 129, + "State Mutations / Variable Reassignments": 8, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 130, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "UI / View Layer Components": 157, + "Closures and Anonymous Functions": 19, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 424, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 32, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 5, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 13, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 3, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 5, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 30, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 5, + "Immutable Data Declarations": 149, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 5, - "Structural Space Indentations": 20, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 377, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 2, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -420934,13 +421568,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, + "Core Var Decl": 60, + "Design Camel Case": 30, + "Design Snake Case": 23, + "Design Pascal Case": 1, + "Design Upper Case": 5, + "Design Short Vars": 13, + "Design Long Vars": 2, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -420966,166 +421600,155 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 38, + "Direct Downstream (Dependency Blast Radius)": 3, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "./Alt", + "./Applicative", + "./Apply", + "./Bifunctor", + "./Chain", + "./ChainRec", + "./Compactable", + "./Eq", + "./Extend", + "./Filterable", + "./Foldable", + "./FromEither", + "./Functor", + "./HKT", + "./Monad", + "./MonadThrow", + "./Monoid", + "./NonEmptyArray", + "./Option", + "./Pointed", + "./Predicate", + "./ReadonlyNonEmptyArray", + "./Refinement", + "./Semigroup", + "./Separated", + "./Show", + "./Traversable", + "./Witherable", + "./function", + "./internal", + "fp-ts/Apply", + "fp-ts/Either", + "fp-ts/Option", + "fp-ts/ReadonlyArray", + "fp-ts/Semigroup", + "fp-ts/function", + "fp-ts/number", + "fp-ts/string" + ] }, - "assembly/hellosilicon/mainpie.s": { + "typescript/fp-ts/HKT.ts": { "1. Artifact Identity": { - "Filename": "mainpie.s", - "Path": "assembly/hellosilicon/mainpie.s", - "Language": "Assembly", + "Filename": "HKT.ts", + "Path": "typescript/fp-ts/HKT.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (10.0% Spaces / 90.0% Tabs)", + "Indentation Style": "Spaces", + "Parent Entity": "HKT, HKT2, HKT3", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 12.79, - "Y": 59.85, - "Z": 4911.78 + "X": 6776.6, + "Y": 226.13, + "Z": -1051.54 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 13.951, + "Repository Archetype": "file_cluster_16", + "Repository Drift (Z-Score)": 10.808, "Repository Fingerprint": { - "file_cluster_0": 14.085, - "file_cluster_1": 14.337, - "file_cluster_2": 14.662, - "file_cluster_3": 15.325, - "file_cluster_4": 14.421, - "file_cluster_5": 15.001, - "file_cluster_6": 14.178, - "file_cluster_7": 14.373, - "file_cluster_8": 13.951, - "file_cluster_9": 14.053, - "file_cluster_10": 15.337, - "file_cluster_11": 14.415, - "file_cluster_12": 14.842, - "file_cluster_13": 14.311, - "file_cluster_14": 17.484, - "file_cluster_15": 14.945, - "file_cluster_16": 14.742, - "file_cluster_17": 14.191 + "file_cluster_0": 12.518, + "file_cluster_1": 12.289, + "file_cluster_2": 11.146, + "file_cluster_3": 13.371, + "file_cluster_4": 12.949, + "file_cluster_5": 12.654, + "file_cluster_6": 12.768, + "file_cluster_7": 11.956, + "file_cluster_8": 11.987, + "file_cluster_9": 12.794, + "file_cluster_10": 13.294, + "file_cluster_11": 12.624, + "file_cluster_12": 12.689, + "file_cluster_13": 12.101, + "file_cluster_14": 15.694, + "file_cluster_15": 12.669, + "file_cluster_16": 10.808, + "file_cluster_17": 12.391 }, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 54, - "Coding LOC": 41, - "Documentation LOC": 0, - "Structural Magnitude": 18.62, - "Control Flow Ratio": "40.0%", - "Popularity Rank": 0, + "File Archetype": "Cluster 2: Type Definitions & Bypasses", + "File Drift (Z-Score)": 10.368, + "File Fingerprint": { + "Cluster 0: The God Nodes (Universal Dependencies)": 13.121, + "Cluster 1: Async Scripting & I/O Automation": 13.124, + "Cluster 2: Type Definitions & Bypasses": 10.368, + "Cluster 3: UI Frameworks & View Layers": 12.849, + "Cluster 4: Heavily Documented Core Classes": 10.957, + "Cluster 5: Declarative Glue & Inert Types": 12.798, + "Cluster 6: Async Testing & Verification": 13.558, + "Cluster 7: Highly Concurrent State Management": 12.989, + "Cluster 8: Algorithmic Data Processing": 12.018 + }, + "Total LOC": 127, + "Coding LOC": 25, + "Documentation LOC": 82, + "Structural Magnitude": 3.15, + "Control Flow Ratio": "8.5%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.317 + "Raw Cognitive Density": 0.16 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.04%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.56%", - "Testing Exposure": "2.59%", - "API Exposure": "3.46%", + "Cognitive Load Exposure": "4.31%", + "Error & Exception Exposure": "99.36%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "11.68%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "58.26%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.32%", + "Documentation Exposure": "82.38%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "DownloadCreditCardNumbers", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 13, - "End Line": 21 - }, - { - "Function Name": "calltoupper", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 23, - "End Line": 29 - }, - { - "Function Name": "_start", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 36, - "End Line": 41 - }, - { - "Function Name": "aftertoupper", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 31, - "End Line": 34 - }, - { - "Function Name": "instr", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 49 - }, - { - "Function Name": "getcreditcards", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 51 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, - "Sequential Logic Declarations": 12, - "Function Parameters": 12, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 0, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 43, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 8, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 14, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 16, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 21, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, + "UI / View Layer Components": 11, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 30, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, @@ -421135,26 +421758,26 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 2, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 1, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 2, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 5, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 18, - "Structural Space Indentations": 2, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 5, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421171,15 +421794,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421204,149 +421827,1599 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "assembly/hellosilicon/matrixmultneon.s": { + "typescript/fp-ts/TaskEither.ts": { "1. Artifact Identity": { - "Filename": "matrixmultneon.s", - "Path": "assembly/hellosilicon/matrixmultneon.s", - "Language": "Assembly", + "Filename": "TaskEither.ts", + "Path": "typescript/fp-ts/TaskEither.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", + "Parent Entity": "Task, _", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -235.43, - "Y": 69.48, - "Z": 5765.49 + "X": 6525.34, + "Y": 65.08, + "Z": -1604.15 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 12.842, + "Repository Archetype": "file_cluster_16", + "Repository Drift (Z-Score)": 11.904, "Repository Fingerprint": { - "file_cluster_0": 13.145, - "file_cluster_1": 13.591, - "file_cluster_2": 13.733, - "file_cluster_3": 14.464, - "file_cluster_4": 13.448, - "file_cluster_5": 14.111, - "file_cluster_6": 13.28, - "file_cluster_7": 13.355, - "file_cluster_8": 12.842, - "file_cluster_9": 13.104, - "file_cluster_10": 14.475, - "file_cluster_11": 13.509, - "file_cluster_12": 13.909, - "file_cluster_13": 13.374, - "file_cluster_14": 16.677, - "file_cluster_15": 14.064, - "file_cluster_16": 13.777, - "file_cluster_17": 13.201 + "file_cluster_0": 13.156, + "file_cluster_1": 13.318, + "file_cluster_2": 12.257, + "file_cluster_3": 13.823, + "file_cluster_4": 13.396, + "file_cluster_5": 13.642, + "file_cluster_6": 13.357, + "file_cluster_7": 13.011, + "file_cluster_8": 12.94, + "file_cluster_9": 13.435, + "file_cluster_10": 14.044, + "file_cluster_11": 12.797, + "file_cluster_12": 13.443, + "file_cluster_13": 12.411, + "file_cluster_14": 15.592, + "file_cluster_15": 13.201, + "file_cluster_16": 11.904, + "file_cluster_17": 12.785 }, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 93, - "Coding LOC": 80, - "Documentation LOC": 0, - "Structural Magnitude": 25.9, - "Control Flow Ratio": "34.1%", + "File Archetype": "Cluster 8: Algorithmic Data Processing", + "File Drift (Z-Score)": 6.994, + "File Fingerprint": { + "Cluster 0: The God Nodes (Universal Dependencies)": 8.182, + "Cluster 1: Async Scripting & I/O Automation": 8.096, + "Cluster 2: Type Definitions & Bypasses": 7.98, + "Cluster 3: UI Frameworks & View Layers": 7.535, + "Cluster 4: Heavily Documented Core Classes": 7.515, + "Cluster 5: Declarative Glue & Inert Types": 7.553, + "Cluster 6: Async Testing & Verification": 9.096, + "Cluster 7: Highly Concurrent State Management": 8.551, + "Cluster 8: Algorithmic Data Processing": 6.994 + }, + "Total LOC": 1882, + "Coding LOC": 662, + "Documentation LOC": 1053, + "Structural Magnitude": 24.58, + "Control Flow Ratio": "2.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.237 + "Raw Cognitive Density": 0.132 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.41%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "3.89%", + "Error & Exception Exposure": "33.76%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.5%", - "API Exposure": "3.05%", - "Concurrency Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "13.29%", + "Concurrency Exposure": "21.39%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "47.58%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.43%", + "Documentation Exposure": "40.62%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "main", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 5, + "Function Name": "traverseReadonlyNonEmptyArrayWithIndexSeq", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "26.3%", - "Start Line": 20, - "End Line": 55 + "Control Flow Ratio": "18.2%", + "Start Line": 1624, + "End Line": 1639 }, { - "Function Name": "printloop", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "27.8%", - "Start Line": 56, - "End Line": 78 + "Function Name": "cbResolver", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1487, + "End Line": 1501 }, { - "Function Name": "B", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, + "Function Name": "f", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 86, - "End Line": 89 + "Input Parameters": 2, + "Control Flow Ratio": "16.7%", + "Start Line": 1612, + "End Line": 1616 }, { - "Function Name": "A", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "f", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "16.7%", + "Start Line": 1651, + "End Line": 1655 + }, + { + "Function Name": "_alt", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 37, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 82, - "End Line": 85 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 14, - "Sequential Logic Declarations": 27, - "Function Parameters": 34, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Start Line": 436, + "End Line": 472 + }, + { + "Function Name": "async", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 251, + "End Line": 257 + }, + { + "Function Name": "taskify", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "14.3%", + "Start Line": 1482, + "End Line": 1491 + }, + { + "Function Name": "f", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1561, + "End Line": 1562 + }, + { + "Function Name": "onLeft", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1771, + "End Line": 1799 + }, + { + "Function Name": "chainTaskOptionKW", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 408, + "End Line": 428 + }, + { + "Function Name": "getFilterable", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 744, + "End Line": 763 + }, + { + "Function Name": "release", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1517, + "End Line": 1529 + }, + { + "Function Name": "getTaskValidation", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1862, + "End Line": 1881 + }, + { + "Function Name": "partitionMap", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 761, + "End Line": 772 + }, + { + "Function Name": "getApplicativeTaskValidation", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 696, + "End Line": 705 + }, + { + "Function Name": "onLeft", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 347, + "End Line": 359 + }, + { + "Function Name": "f", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1312, + "End Line": 1323 + }, + { + "Function Name": "getSemigroup", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1852, + "End Line": 1862 + }, + { + "Function Name": "_apSeq", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 434, + "End Line": 436 + }, + { + "Function Name": "getAltTaskValidation", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 716, + "End Line": 724 + }, + { + "Function Name": "getCompactable", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 730, + "End Line": 738 + }, + { + "Function Name": "tryCatch", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 249, + "End Line": 250 + }, + { + "Function Name": "_map", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 432, + "End Line": 433 + }, + { + "Function Name": "_apPar", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 433, + "End Line": 434 + }, + { + "Function Name": "onNone", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1179, + "End Line": 1185 + }, + { + "Function Name": "fromTaskOptionK", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 393, + "End Line": 398 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 15, + "Sequential Logic Declarations": 590, + "Function Parameters": 311, + "Function/Method Declarations": 76, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 49, + "Type/Safety Bypasses": 16, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 154, + "State Mutations / Variable Reassignments": 5, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 158, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 6, + "UI / View Layer Components": 220, + "Closures and Anonymous Functions": 15, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 616, + "Collection Iterators / Comprehensions": 6, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 32, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 3, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 1, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 28, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 168, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 1, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 359, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 1, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 46, + "Design Camel Case": 24, + "Design Snake Case": 13, + "Design Pascal Case": 2, + "Design Upper Case": 7, + "Design Short Vars": 8, + "Design Long Vars": 5, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 40, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "./Alt", + "./Applicative", + "./Apply", + "./Bifunctor", + "./Chain", + "./Compactable", + "./Either", + "./EitherT", + "./Filterable", + "./FromEither", + "./FromIO", + "./FromTask", + "./Functor", + "./IO", + "./IOEither", + "./Monad", + "./MonadIO", + "./MonadTask", + "./MonadThrow", + "./Monoid", + "./NonEmptyArray", + "./Option", + "./Pointed", + "./Predicate", + "./ReadonlyNonEmptyArray", + "./Refinement", + "./Semigroup", + "./Task", + "./TaskOption", + "./function", + "./internal", + "fp-ts/Console", + "fp-ts/Either", + "fp-ts/ReadonlyArray", + "fp-ts/Semigroup", + "fp-ts/Task", + "fp-ts/TaskEither", + "fp-ts/function", + "fp-ts/string", + "fs" + ] + }, + "typescript/fp-ts/pipeable.ts": { + "1. Artifact Identity": { + "Filename": "pipeable.ts", + "Path": "typescript/fp-ts/pipeable.ts", + "Language": "Typescript", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "PipeableFunctor, PipeableFunctor1, PipeableFunctor2", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "typescript", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .ts)" + }, + "2. Topological Coordinates": { + "X": 6522.01, + "Y": 177.34, + "Z": -1505.83 + }, + "3. Architectural Profile": { + "Repository Archetype": "file_cluster_16", + "Repository Drift (Z-Score)": 11.006, + "Repository Fingerprint": { + "file_cluster_0": 12.663, + "file_cluster_1": 12.53, + "file_cluster_2": 12.109, + "file_cluster_3": 13.596, + "file_cluster_4": 13.132, + "file_cluster_5": 12.985, + "file_cluster_6": 12.907, + "file_cluster_7": 12.294, + "file_cluster_8": 12.031, + "file_cluster_9": 12.941, + "file_cluster_10": 13.603, + "file_cluster_11": 12.602, + "file_cluster_12": 12.994, + "file_cluster_13": 12.201, + "file_cluster_14": 16.009, + "file_cluster_15": 13.0, + "file_cluster_16": 11.006, + "file_cluster_17": 12.726 + }, + "File Archetype": "Cluster 8: Algorithmic Data Processing", + "File Drift (Z-Score)": 6.722, + "File Fingerprint": { + "Cluster 0: The God Nodes (Universal Dependencies)": 7.559, + "Cluster 1: Async Scripting & I/O Automation": 7.711, + "Cluster 2: Type Definitions & Bypasses": 8.182, + "Cluster 3: UI Frameworks & View Layers": 6.916, + "Cluster 4: Heavily Documented Core Classes": 7.232, + "Cluster 5: Declarative Glue & Inert Types": 6.737, + "Cluster 6: Async Testing & Verification": 8.94, + "Cluster 7: Highly Concurrent State Management": 8.723, + "Cluster 8: Algorithmic Data Processing": 6.722 + }, + "Total LOC": 2612, + "Coding LOC": 1772, + "Documentation LOC": 701, + "Structural Magnitude": 53.3, + "Control Flow Ratio": "5.4%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.107 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "3.55%", + "Error & Exception Exposure": "46.57%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "14.61%", + "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": "90.42%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "filterOrElse", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "14.3%", + "Start Line": 2593, + "End Line": 2611 + }, + { + "Function Name": "fromPredicate", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 2589, + "End Line": 2593 + }, + { + "Function Name": "f", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1968, + "End Line": 1998 + }, + { + "Function Name": "f", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2019, + "End Line": 2049 + }, + { + "Function Name": "f", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1922, + "End Line": 1948 + }, + { + "Function Name": "f", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1900, + "End Line": 1924 + }, + { + "Function Name": "f", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1946, + "End Line": 1970 + }, + { + "Function Name": "f", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1996, + "End Line": 2021 + }, + { + "Function Name": "fromOption", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2585, + "End Line": 2587 + }, + { + "Function Name": "fromEither", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2587, + "End Line": 2589 + }, + { + "Function Name": "f", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1854, + "End Line": 1880 + }, + { + "Function Name": "f", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1811, + "End Line": 1835 + }, + { + "Function Name": "f", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1878, + "End Line": 1902 + }, + { + "Function Name": "f", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1791, + "End Line": 1813 + }, + { + "Function Name": "f", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1833, + "End Line": 1856 + }, + { + "Function Name": "f", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2047, + "End Line": 2058 + }, + { + "Function Name": "g", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1449, + "End Line": 1463 + }, + { + "Function Name": "f", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1985, + "End Line": 1994 + }, + { + "Function Name": "f", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2036, + "End Line": 2045 + }, + { + "Function Name": "f", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1326, + "End Line": 1339 + }, + { + "Function Name": "f", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1397, + "End Line": 1410 + }, + { + "Function Name": "g", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2103, + "End Line": 2114 + }, + { + "Function Name": "partition", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 638, + "End Line": 647 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 824, + "End Line": 833 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 834, + "End Line": 843 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 844, + "End Line": 853 + }, + { + "Function Name": "foldMapWithIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 484, + "End Line": 491 + }, + { + "Function Name": "partition", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 648, + "End Line": 655 + }, + { + "Function Name": "partition", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 656, + "End Line": 663 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 735, + "End Line": 742 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 854, + "End Line": 861 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 862, + "End Line": 869 + }, + { + "Function Name": "isMonadThrow", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2307, + "End Line": 2314 + }, + { + "Function Name": "mapWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 191, + "End Line": 195 + }, + { + "Function Name": "bimap", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 275, + "End Line": 279 + }, + { + "Function Name": "foldMap", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 388, + "End Line": 393 + }, + { + "Function Name": "reduceWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 451, + "End Line": 455 + }, + { + "Function Name": "reduceRightWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 520, + "End Line": 524 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 559, + "End Line": 564 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 565, + "End Line": 570 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 571, + "End Line": 576 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 577, + "End Line": 582 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 583, + "End Line": 588 + }, + { + "Function Name": "filter", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 589, + "End Line": 594 + }, + { + "Function Name": "partition", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 664, + "End Line": 669 + }, + { + "Function Name": "partition", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 670, + "End Line": 675 + }, + { + "Function Name": "partition", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 676, + "End Line": 681 + }, + { + "Function Name": "partition", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 686, + "End Line": 690 + }, + { + "Function Name": "partitionMap", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 723, + "End Line": 727 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 743, + "End Line": 748 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 749, + "End Line": 754 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 755, + "End Line": 760 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 761, + "End Line": 766 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 767, + "End Line": 772 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 773, + "End Line": 778 + }, + { + "Function Name": "filterWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 779, + "End Line": 783 + }, + { + "Function Name": "filterMapWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 812, + "End Line": 816 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 870, + "End Line": 875 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 876, + "End Line": 881 + }, + { + "Function Name": "partitionWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 882, + "End Line": 886 + }, + { + "Function Name": "partitionMapWithIndex", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 921, + "End Line": 925 + }, + { + "Function Name": "promap", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 951, + "End Line": 955 + }, + { + "Function Name": "map", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 133 + }, + { + "Function Name": "contramap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 160, + "End Line": 162 + }, + { + "Function Name": "ap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 220, + "End Line": 222 + }, + { + "Function Name": "chain", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 247, + "End Line": 249 + }, + { + "Function Name": "mapLeft", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 303, + "End Line": 305 + }, + { + "Function Name": "extend", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 332, + "End Line": 334 + }, + { + "Function Name": "reduce", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 359, + "End Line": 361 + }, + { + "Function Name": "reduceRight", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 420, + "End Line": 422 + }, + { + "Function Name": "alt", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 549, + "End Line": 551 + }, + { + "Function Name": "filter", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 595, + "End Line": 598 + }, + { + "Function Name": "filter", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 599, + "End Line": 601 + }, + { + "Function Name": "filterMap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 628, + "End Line": 630 + }, + { + "Function Name": "partition", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 682, + "End Line": 685 + }, + { + "Function Name": "compose", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 979, + "End Line": 981 + }, + { + "Function Name": "isFilterableWithIndex", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2303, + "End Line": 2305 + }, + { + "Function Name": "isFunctor", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2291, + "End Line": 2292 + }, + { + "Function Name": "isContravariant", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2292, + "End Line": 2293 + }, + { + "Function Name": "isFunctorWithIndex", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2293, + "End Line": 2294 + }, + { + "Function Name": "isApply", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2294, + "End Line": 2295 + }, + { + "Function Name": "isChain", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2295, + "End Line": 2296 + }, + { + "Function Name": "isBifunctor", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2296, + "End Line": 2297 + }, + { + "Function Name": "isExtend", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2297, + "End Line": 2298 + }, + { + "Function Name": "isFoldable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2298, + "End Line": 2299 + }, + { + "Function Name": "isFoldableWithIndex", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2299, + "End Line": 2300 + }, + { + "Function Name": "isAlt", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2300, + "End Line": 2301 + }, + { + "Function Name": "isCompactable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2301, + "End Line": 2302 + }, + { + "Function Name": "isFilterable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2302, + "End Line": 2303 + }, + { + "Function Name": "isProfunctor", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2305, + "End Line": 2306 + }, + { + "Function Name": "isSemigroupoid", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2306, + "End Line": 2307 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2314, + "End Line": 2315 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2344, + "End Line": 2345 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2374, + "End Line": 2375 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2404, + "End Line": 2405 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2433, + "End Line": 2434 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2463, + "End Line": 2464 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2490, + "End Line": 2491 + }, + { + "Function Name": "pipeable", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2520, + "End Line": 2520 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 128, + "Sequential Logic Declarations": 2243, + "Function Parameters": 1193, + "Function/Method Declarations": 250, + "Class/Entity Declarations": 108, + "Defensive Programming Constructs": 20, + "Type/Safety Bypasses": 17, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 313, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 3, - "Structured Documentation Blocks": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 260, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, + "UI / View Layer Components": 110, + "Closures and Anonymous Functions": 2, + "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Generic Type Abstractions": 3138, + "Collection Iterators / Comprehensions": 3, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 24, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421354,24 +423427,24 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 2, - "Pointer Arithmetic & Addressing": 12, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, - "Explicit Type Casts": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 4, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, + "Bitwise Operations": 138, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 279, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 43, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1072, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421388,9 +423461,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 20, + "Design Camel Case": 18, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -421420,119 +423493,144 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 24, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "./Alt", + "./Apply", + "./Bifunctor", + "./Chain", + "./Compactable", + "./Contravariant", + "./Either", + "./Extend", + "./Filterable", + "./FilterableWithIndex", + "./Foldable", + "./FoldableWithIndex", + "./Functor", + "./FunctorWithIndex", + "./HKT", + "./MonadThrow", + "./Monoid", + "./Option", + "./Predicate", + "./Profunctor", + "./Refinement", + "./Semigroupoid", + "./Separated", + "./function" + ] } } }, - "cobol/cobrix": { - "Directory Group Magnitude": 107.92, - "File Count": 9, + "assembly/hellosilicon": { + "Directory Group Magnitude": 114.36, + "File Count": 4, "Ecosystem Fingerprint (Archetypes)": { "file_cluster_8": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "42.21%", - "Error & Exception Exposure": "6.16%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "11.35%", + "Error & Exception Exposure": "21.7%", + "Tech Debt Exposure": "24.89%", + "Testing Exposure": "2.43%", + "API Exposure": "3.2%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "1.49%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "26.46%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.48%", + "Documentation Exposure": "55.29%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "cobol/cobrix/companies_copybook.cpy": { + "assembly/hellosilicon/makefile": { "1. Artifact Identity": { - "Filename": "companies_copybook.cpy", - "Path": "cobol/cobrix/companies_copybook.cpy", - "Language": "Cobol", + "Filename": "makefile", + "Path": "assembly/hellosilicon/makefile", + "Language": "Makefile", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": -15.93, - "Y": 76.49, - "Z": -3064.62 + "X": 2.77, + "Y": 39.33, + "Z": 5315.15 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 5.827, + "Repository Drift (Z-Score)": 7.69, "Repository Fingerprint": { - "file_cluster_0": 8.575, - "file_cluster_1": 7.352, - "file_cluster_2": 8.109, - "file_cluster_3": 9.643, - "file_cluster_4": 9.159, - "file_cluster_5": 8.557, - "file_cluster_6": 8.823, - "file_cluster_7": 7.296, - "file_cluster_8": 5.827, - "file_cluster_9": 8.579, - "file_cluster_10": 9.901, - "file_cluster_11": 9.373, - "file_cluster_12": 7.539, - "file_cluster_13": 8.415, - "file_cluster_14": 13.208, - "file_cluster_15": 9.339, - "file_cluster_16": 8.245, - "file_cluster_17": 8.822 + "file_cluster_0": 9.025, + "file_cluster_1": 8.863, + "file_cluster_2": 9.154, + "file_cluster_3": 10.551, + "file_cluster_4": 9.491, + "file_cluster_5": 9.722, + "file_cluster_6": 9.493, + "file_cluster_7": 8.556, + "file_cluster_8": 7.69, + "file_cluster_9": 9.248, + "file_cluster_10": 10.574, + "file_cluster_11": 9.709, + "file_cluster_12": 9.637, + "file_cluster_13": 9.047, + "file_cluster_14": 13.795, + "file_cluster_15": 9.946, + "file_cluster_16": 9.199, + "file_cluster_17": 9.317 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 34, - "Coding LOC": 15, - "Documentation LOC": 17, - "Structural Magnitude": 0.77, - "Control Flow Ratio": "0.0%", + "Total LOC": 32, + "Coding LOC": 23, + "Documentation LOC": 0, + "Structural Magnitude": 53.96, + "Control Flow Ratio": "30.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.348 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "62.14%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "11.67%", + "Error & Exception Exposure": "86.8%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "6.28%", "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": "47.39%", + "Documentation Exposure": "89.9%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 7, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 7, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421545,182 +423643,6 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "cobol/cobrix/data_types.cpy": { - "1. Artifact Identity": { - "Filename": "data_types.cpy", - "Path": "cobol/cobrix/data_types.cpy", - "Language": "Cobol", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" - }, - "2. Topological Coordinates": { - "X": -698.74, - "Y": 315.46, - "Z": -3863.36 - }, - "3. Architectural Profile": { - "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 4.657, - "Repository Fingerprint": { - "file_cluster_0": 7.67, - "file_cluster_1": 6.454, - "file_cluster_2": 7.23, - "file_cluster_3": 8.973, - "file_cluster_4": 8.243, - "file_cluster_5": 7.552, - "file_cluster_6": 7.976, - "file_cluster_7": 6.294, - "file_cluster_8": 4.657, - "file_cluster_9": 7.709, - "file_cluster_10": 9.251, - "file_cluster_11": 8.735, - "file_cluster_12": 8.091, - "file_cluster_13": 7.528, - "file_cluster_14": 12.673, - "file_cluster_15": 8.597, - "file_cluster_16": 7.382, - "file_cluster_17": 7.951 - }, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 230, - "Coding LOC": 173, - "Documentation LOC": 39, - "Structural Magnitude": 0.97, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "55.43%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "13.37%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.22%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 13, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, @@ -421742,18 +423664,18 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 171, + "Structural Tab Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 1, + "Serialization Parsing": 0, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -421764,11 +423686,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 7, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 7, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -421803,62 +423725,62 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/multisegment.cob": { + "assembly/hellosilicon/fileio.S": { "1. Artifact Identity": { - "Filename": "multisegment.cob", - "Path": "cobol/cobrix/multisegment.cob", - "Language": "Cobol", + "Filename": "fileio.S", + "Path": "assembly/hellosilicon/fileio.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Mixed (80.0% Spaces / 20.0% Tabs)", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -300.49, - "Y": 53.02, - "Z": -3042.0 + "X": 295.7, + "Y": 89.29, + "Z": 5650.33 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 5.827, + "Repository Drift (Z-Score)": 8.012, "Repository Fingerprint": { - "file_cluster_0": 8.575, - "file_cluster_1": 7.352, - "file_cluster_2": 8.109, - "file_cluster_3": 9.643, - "file_cluster_4": 9.159, - "file_cluster_5": 8.557, - "file_cluster_6": 8.823, - "file_cluster_7": 7.296, - "file_cluster_8": 5.827, - "file_cluster_9": 8.579, - "file_cluster_10": 9.901, - "file_cluster_11": 9.373, - "file_cluster_12": 7.539, - "file_cluster_13": 8.415, - "file_cluster_14": 13.208, - "file_cluster_15": 9.339, - "file_cluster_16": 8.245, - "file_cluster_17": 8.822 + "file_cluster_0": 9.809, + "file_cluster_1": 8.474, + "file_cluster_2": 9.496, + "file_cluster_3": 10.867, + "file_cluster_4": 10.202, + "file_cluster_5": 9.917, + "file_cluster_6": 10.079, + "file_cluster_7": 9.015, + "file_cluster_8": 8.012, + "file_cluster_9": 9.894, + "file_cluster_10": 11.068, + "file_cluster_11": 10.503, + "file_cluster_12": 10.227, + "file_cluster_13": 9.664, + "file_cluster_14": 14.07, + "file_cluster_15": 10.564, + "file_cluster_16": 9.757, + "file_cluster_17": 9.944 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 34, - "Coding LOC": 15, - "Documentation LOC": 17, - "Structural Magnitude": 15.3, + "Total LOC": 51, + "Coding LOC": 44, + "Documentation LOC": 1, + "Structural Magnitude": 15.88, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.114 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "73.11%", + "Cognitive Load Exposure": "7.27%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -421869,21 +423791,21 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.39%", + "Documentation Exposure": "38.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Sequential Logic Declarations": 17, + "Function Parameters": 21, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -421897,33 +423819,33 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 5, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 13, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 5, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 5, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Tab Indentations": 5, + "Structural Space Indentations": 20, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421979,96 +423901,157 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test13a_file_header_footer.cob": { + "assembly/hellosilicon/mainpie.s": { "1. Artifact Identity": { - "Filename": "test13a_file_header_footer.cob", - "Path": "cobol/cobrix/test13a_file_header_footer.cob", - "Language": "Cobol", + "Filename": "mainpie.s", + "Path": "assembly/hellosilicon/mainpie.s", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Mixed (10.0% Spaces / 90.0% Tabs)", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -633.85, - "Y": 110.33, - "Z": -2829.83 + "X": 12.79, + "Y": 59.85, + "Z": 4911.78 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 4.447, + "Repository Drift (Z-Score)": 13.951, "Repository Fingerprint": { - "file_cluster_0": 7.742, - "file_cluster_1": 6.315, - "file_cluster_2": 7.195, - "file_cluster_3": 8.986, - "file_cluster_4": 8.35, - "file_cluster_5": 7.698, - "file_cluster_6": 8.024, - "file_cluster_7": 6.25, - "file_cluster_8": 4.447, - "file_cluster_9": 7.738, - "file_cluster_10": 9.281, - "file_cluster_11": 8.888, - "file_cluster_12": 8.096, - "file_cluster_13": 7.576, - "file_cluster_14": 12.66, - "file_cluster_15": 8.651, - "file_cluster_16": 7.372, - "file_cluster_17": 7.984 + "file_cluster_0": 14.085, + "file_cluster_1": 14.337, + "file_cluster_2": 14.662, + "file_cluster_3": 15.325, + "file_cluster_4": 14.421, + "file_cluster_5": 15.001, + "file_cluster_6": 14.178, + "file_cluster_7": 14.373, + "file_cluster_8": 13.951, + "file_cluster_9": 14.053, + "file_cluster_10": 15.337, + "file_cluster_11": 14.415, + "file_cluster_12": 14.842, + "file_cluster_13": 14.311, + "file_cluster_14": 17.484, + "file_cluster_15": 14.945, + "file_cluster_16": 14.742, + "file_cluster_17": 14.191 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 31, - "Coding LOC": 7, - "Documentation LOC": 20, - "Structural Magnitude": 13.64, - "Control Flow Ratio": "0.0%", + "Total LOC": 54, + "Coding LOC": 41, + "Documentation LOC": 0, + "Structural Magnitude": 18.62, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.317 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "15.04%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "99.56%", + "Testing Exposure": "2.59%", + "API Exposure": "3.46%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Commented Logic Exposure": "58.26%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "26.09%", + "Documentation Exposure": "57.32%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "DownloadCreditCardNumbers", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 13, + "End Line": 21 + }, + { + "Function Name": "calltoupper", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 23, + "End Line": 29 + }, + { + "Function Name": "_start", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 36, + "End Line": 41 + }, + { + "Function Name": "aftertoupper", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 31, + "End Line": 34 + }, + { + "Function Name": "instr", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 49 + }, + { + "Function Name": "getcreditcards", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 50, + "End Line": 51 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 12, + "Function Parameters": 12, + "Function/Method Declarations": 6, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -422080,26 +424063,26 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 1, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Tab Indentations": 18, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -422124,7 +424107,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -422155,101 +424138,142 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test16_fix_len_segments.cob": { + "assembly/hellosilicon/matrixmultneon.s": { "1. Artifact Identity": { - "Filename": "test16_fix_len_segments.cob", - "Path": "cobol/cobrix/test16_fix_len_segments.cob", - "Language": "Cobol", + "Filename": "matrixmultneon.s", + "Path": "assembly/hellosilicon/matrixmultneon.s", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -51.67, - "Y": 215.68, - "Z": -3515.36 + "X": -235.43, + "Y": 69.48, + "Z": 5765.49 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 5.886, + "Repository Drift (Z-Score)": 12.842, "Repository Fingerprint": { - "file_cluster_0": 8.615, - "file_cluster_1": 7.399, - "file_cluster_2": 8.151, - "file_cluster_3": 9.677, - "file_cluster_4": 9.197, - "file_cluster_5": 8.597, - "file_cluster_6": 8.862, - "file_cluster_7": 7.343, - "file_cluster_8": 5.886, - "file_cluster_9": 8.619, - "file_cluster_10": 9.933, - "file_cluster_11": 9.403, - "file_cluster_12": 7.548, - "file_cluster_13": 8.455, - "file_cluster_14": 13.234, - "file_cluster_15": 9.374, - "file_cluster_16": 8.286, - "file_cluster_17": 8.861 + "file_cluster_0": 13.145, + "file_cluster_1": 13.591, + "file_cluster_2": 13.733, + "file_cluster_3": 14.464, + "file_cluster_4": 13.448, + "file_cluster_5": 14.111, + "file_cluster_6": 13.28, + "file_cluster_7": 13.355, + "file_cluster_8": 12.842, + "file_cluster_9": 13.104, + "file_cluster_10": 14.475, + "file_cluster_11": 13.509, + "file_cluster_12": 13.909, + "file_cluster_13": 13.374, + "file_cluster_14": 16.677, + "file_cluster_15": 14.064, + "file_cluster_16": 13.777, + "file_cluster_17": 13.201 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 33, - "Coding LOC": 14, - "Documentation LOC": 17, - "Structural Magnitude": 15.28, - "Control Flow Ratio": "0.0%", + "Total LOC": 93, + "Coding LOC": 80, + "Documentation LOC": 0, + "Structural Magnitude": 25.9, + "Control Flow Ratio": "34.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.237 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "11.41%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.0%", + "Testing Exposure": "2.5%", + "API Exposure": "3.05%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Commented Logic Exposure": "47.58%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.53%", + "Documentation Exposure": "35.43%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "main", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "26.3%", + "Start Line": 20, + "End Line": 55 + }, + { + "Function Name": "printloop", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "27.8%", + "Start Line": 56, + "End Line": 78 + }, + { + "Function Name": "B", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 86, + "End Line": 89 + }, + { + "Function Name": "A", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 82, + "End Line": 85 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 14, + "Sequential Logic Declarations": 27, + "Function Parameters": 34, + "Function/Method Declarations": 6, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 6, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422258,24 +424282,24 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Preprocessor Macros": 2, + "Pointer Arithmetic & Addressing": 12, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Ad-hoc Print / Debug Statements": 1, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Tab Indentations": 43, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -422330,63 +424354,87 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "cobol/cobrix/test17_hierarchical.cob": { + } + } + }, + "cobol/cobrix": { + "Directory Group Magnitude": 107.92, + "File Count": 9, + "Ecosystem Fingerprint (Archetypes)": { + "file_cluster_8": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "42.21%", + "Error & Exception Exposure": "6.16%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.14%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "1.49%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "93.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "35.48%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "cobol/cobrix/companies_copybook.cpy": { "1. Artifact Identity": { - "Filename": "test17_hierarchical.cob", - "Path": "cobol/cobrix/test17_hierarchical.cob", + "Filename": "companies_copybook.cpy", + "Path": "cobol/cobrix/companies_copybook.cpy", "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -458.05, - "Y": 192.76, - "Z": -3264.12 + "X": -15.93, + "Y": 76.49, + "Z": -3064.62 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 6.13, + "Repository Drift (Z-Score)": 5.827, "Repository Fingerprint": { - "file_cluster_0": 8.78, - "file_cluster_1": 7.594, - "file_cluster_2": 8.328, - "file_cluster_3": 9.817, - "file_cluster_4": 9.354, - "file_cluster_5": 8.764, - "file_cluster_6": 9.021, - "file_cluster_7": 7.54, - "file_cluster_8": 6.13, - "file_cluster_9": 8.785, - "file_cluster_10": 10.069, - "file_cluster_11": 9.53, - "file_cluster_12": 7.596, - "file_cluster_13": 8.622, - "file_cluster_14": 13.344, - "file_cluster_15": 9.52, - "file_cluster_16": 8.457, - "file_cluster_17": 9.024 + "file_cluster_0": 8.575, + "file_cluster_1": 7.352, + "file_cluster_2": 8.109, + "file_cluster_3": 9.643, + "file_cluster_4": 9.159, + "file_cluster_5": 8.557, + "file_cluster_6": 8.823, + "file_cluster_7": 7.296, + "file_cluster_8": 5.827, + "file_cluster_9": 8.579, + "file_cluster_10": 9.901, + "file_cluster_11": 9.373, + "file_cluster_12": 7.539, + "file_cluster_13": 8.415, + "file_cluster_14": 13.208, + "file_cluster_15": 9.339, + "file_cluster_16": 8.245, + "file_cluster_17": 8.822 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 63, - "Coding LOC": 32, - "Documentation LOC": 27, - "Structural Magnitude": 15.64, + "Total LOC": 34, + "Coding LOC": 15, + "Documentation LOC": 17, + "Structural Magnitude": 0.77, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.094 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "79.82%", + "Cognitive Load Exposure": "62.14%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -422397,7 +424445,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.88%", + "Documentation Exposure": "47.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -422425,7 +424473,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422440,7 +424488,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 6, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -422451,7 +424499,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 32, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -422507,73 +424555,73 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test18 special_char.cob": { + "cobol/cobrix/data_types.cpy": { "1. Artifact Identity": { - "Filename": "test18 special_char.cob", - "Path": "cobol/cobrix/test18 special_char.cob", + "Filename": "data_types.cpy", + "Path": "cobol/cobrix/data_types.cpy", "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cob)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -698.56, - "Y": 208.22, - "Z": -3122.8 + "X": -698.74, + "Y": 315.46, + "Z": -3863.36 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 6.13, + "Repository Drift (Z-Score)": 4.657, "Repository Fingerprint": { - "file_cluster_0": 8.78, - "file_cluster_1": 7.594, - "file_cluster_2": 8.328, - "file_cluster_3": 9.817, - "file_cluster_4": 9.354, - "file_cluster_5": 8.764, - "file_cluster_6": 9.021, - "file_cluster_7": 7.54, - "file_cluster_8": 6.13, - "file_cluster_9": 8.785, - "file_cluster_10": 10.069, - "file_cluster_11": 9.53, - "file_cluster_12": 7.596, - "file_cluster_13": 8.622, - "file_cluster_14": 13.344, - "file_cluster_15": 9.52, - "file_cluster_16": 8.457, - "file_cluster_17": 9.024 + "file_cluster_0": 7.67, + "file_cluster_1": 6.454, + "file_cluster_2": 7.23, + "file_cluster_3": 8.973, + "file_cluster_4": 8.243, + "file_cluster_5": 7.552, + "file_cluster_6": 7.976, + "file_cluster_7": 6.294, + "file_cluster_8": 4.657, + "file_cluster_9": 7.709, + "file_cluster_10": 9.251, + "file_cluster_11": 8.735, + "file_cluster_12": 8.091, + "file_cluster_13": 7.528, + "file_cluster_14": 12.673, + "file_cluster_15": 8.597, + "file_cluster_16": 7.382, + "file_cluster_17": 7.951 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 63, - "Coding LOC": 32, - "Documentation LOC": 27, - "Structural Magnitude": 15.64, + "Total LOC": 230, + "Coding LOC": 173, + "Documentation LOC": 39, + "Structural Magnitude": 0.97, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.094 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "79.82%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "55.43%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "13.37%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.88%", + "Documentation Exposure": "13.22%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -422589,19 +424637,19 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 13, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 6, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422616,7 +424664,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 6, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -422627,13 +424675,13 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 32, + "Structural Space Indentations": 171, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 1, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -422683,10 +424731,10 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test19_display_num.cob": { + "cobol/cobrix/multisegment.cob": { "1. Artifact Identity": { - "Filename": "test19_display_num.cob", - "Path": "cobol/cobrix/test19_display_num.cob", + "Filename": "multisegment.cob", + "Path": "cobol/cobrix/multisegment.cob", "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -422696,32 +424744,32 @@ "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": -933.62, - "Y": 230.29, - "Z": -3330.92 + "X": -300.49, + "Y": 53.02, + "Z": -3042.0 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 4.447, + "Repository Drift (Z-Score)": 5.827, "Repository Fingerprint": { - "file_cluster_0": 7.742, - "file_cluster_1": 6.315, - "file_cluster_2": 7.195, - "file_cluster_3": 8.986, - "file_cluster_4": 8.35, - "file_cluster_5": 7.698, - "file_cluster_6": 8.024, - "file_cluster_7": 6.25, - "file_cluster_8": 4.447, - "file_cluster_9": 7.738, - "file_cluster_10": 9.281, - "file_cluster_11": 8.888, - "file_cluster_12": 8.096, - "file_cluster_13": 7.576, - "file_cluster_14": 12.66, - "file_cluster_15": 8.651, - "file_cluster_16": 7.372, - "file_cluster_17": 7.984 + "file_cluster_0": 8.575, + "file_cluster_1": 7.352, + "file_cluster_2": 8.109, + "file_cluster_3": 9.643, + "file_cluster_4": 9.159, + "file_cluster_5": 8.557, + "file_cluster_6": 8.823, + "file_cluster_7": 7.296, + "file_cluster_8": 5.827, + "file_cluster_9": 8.579, + "file_cluster_10": 9.901, + "file_cluster_11": 9.373, + "file_cluster_12": 7.539, + "file_cluster_13": 8.415, + "file_cluster_14": 13.208, + "file_cluster_15": 9.339, + "file_cluster_16": 8.245, + "file_cluster_17": 8.822 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, @@ -422735,10 +424783,10 @@ "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.333 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.89%", + "Cognitive Load Exposure": "73.11%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -422777,7 +424825,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422792,7 +424840,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -422803,7 +424851,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -422859,10 +424907,10 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobrix/test1_copybook.cob": { + "cobol/cobrix/test13a_file_header_footer.cob": { "1. Artifact Identity": { - "Filename": "test1_copybook.cob", - "Path": "cobol/cobrix/test1_copybook.cob", + "Filename": "test13a_file_header_footer.cob", + "Path": "cobol/cobrix/test13a_file_header_footer.cob", "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -422872,66 +424920,66 @@ "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": -460.76, - "Y": 252.47, - "Z": -3883.42 + "X": -633.85, + "Y": 110.33, + "Z": -2829.83 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", - "Repository Drift (Z-Score)": 6.203, + "Repository Drift (Z-Score)": 4.447, "Repository Fingerprint": { - "file_cluster_0": 8.706, - "file_cluster_1": 7.686, - "file_cluster_2": 8.303, - "file_cluster_3": 9.763, - "file_cluster_4": 9.326, - "file_cluster_5": 8.767, - "file_cluster_6": 8.907, - "file_cluster_7": 7.518, - "file_cluster_8": 6.203, - "file_cluster_9": 8.77, - "file_cluster_10": 9.85, - "file_cluster_11": 9.215, - "file_cluster_12": 7.717, - "file_cluster_13": 8.552, - "file_cluster_14": 13.397, - "file_cluster_15": 9.024, - "file_cluster_16": 8.433, - "file_cluster_17": 9.004 + "file_cluster_0": 7.742, + "file_cluster_1": 6.315, + "file_cluster_2": 7.195, + "file_cluster_3": 8.986, + "file_cluster_4": 8.35, + "file_cluster_5": 7.698, + "file_cluster_6": 8.024, + "file_cluster_7": 6.25, + "file_cluster_8": 4.447, + "file_cluster_9": 7.738, + "file_cluster_10": 9.281, + "file_cluster_11": 8.888, + "file_cluster_12": 8.096, + "file_cluster_13": 7.576, + "file_cluster_14": 12.66, + "file_cluster_15": 8.651, + "file_cluster_16": 7.372, + "file_cluster_17": 7.984 }, "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 19, - "Documentation LOC": 17, - "Structural Magnitude": 15.38, - "Control Flow Ratio": "100.0%", + "Total LOC": 31, + "Coding LOC": 7, + "Documentation LOC": 20, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.842 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "59.11%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "42.58%", + "Documentation Exposure": "26.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, + "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, @@ -422953,7 +425001,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -422968,7 +425016,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -422979,7 +425027,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -423024,91 +425072,85 @@ "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "typescript/fp-ts": { - "Directory Group Magnitude": 107.36, - "File Count": 5, - "Ecosystem Fingerprint (Archetypes)": { - "file_cluster_16": "80.0%", - "Static: Literature & Documentation": "20.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "3.05%", - "Error & Exception Exposure": "43.91%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "48.46%", - "API Exposure": "10.47%", - "Concurrency Exposure": "4.28%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", - "Instability Exposure": "40.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.34%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "typescript/fp-ts/package.json": { + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "cobol/cobrix/test16_fix_len_segments.cob": { "1. Artifact Identity": { - "Filename": "package.json", - "Path": "typescript/fp-ts/package.json", - "Language": "Plaintext", + "Filename": "test16_fix_len_segments.cob", + "Path": "cobol/cobrix/test16_fix_len_segments.cob", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Exact Match)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6052.14, - "Y": 181.46, - "Z": -1500.65 + "X": -51.67, + "Y": 215.68, + "Z": -3515.36 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 5.886, + "Repository Fingerprint": { + "file_cluster_0": 8.615, + "file_cluster_1": 7.399, + "file_cluster_2": 8.151, + "file_cluster_3": 9.677, + "file_cluster_4": 9.197, + "file_cluster_5": 8.597, + "file_cluster_6": 8.862, + "file_cluster_7": 7.343, + "file_cluster_8": 5.886, + "file_cluster_9": 8.619, + "file_cluster_10": 9.933, + "file_cluster_11": 9.403, + "file_cluster_12": 7.548, + "file_cluster_13": 8.455, + "file_cluster_14": 13.234, + "file_cluster_15": 9.374, + "file_cluster_16": 8.286, + "file_cluster_17": 8.861 + }, + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 76, - "Coding LOC": 0, - "Documentation LOC": 75, - "Structural Magnitude": 1.52, + "Total LOC": 33, + "Coding LOC": 14, + "Documentation LOC": 17, + "Structural Magnitude": 15.28, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.14%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "93.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "45.53%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -423135,7 +425177,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -423150,7 +425192,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -423161,7 +425203,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -423217,444 +425259,102 @@ }, "9. Extracted Dependencies": [] }, - "typescript/fp-ts/Either.ts": { + "cobol/cobrix/test17_hierarchical.cob": { "1. Artifact Identity": { - "Filename": "Either.ts", - "Path": "typescript/fp-ts/Either.ts", - "Language": "Typescript", + "Filename": "test17_hierarchical.cob", + "Path": "cobol/cobrix/test17_hierarchical.cob", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "_, ReadonlyArray", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6295.82, - "Y": 266.92, - "Z": -1194.24 + "X": -458.05, + "Y": 192.76, + "Z": -3264.12 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_16", - "Repository Drift (Z-Score)": 11.865, + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 6.13, "Repository Fingerprint": { - "file_cluster_0": 13.027, - "file_cluster_1": 13.214, - "file_cluster_2": 12.197, - "file_cluster_3": 13.818, - "file_cluster_4": 13.44, - "file_cluster_5": 13.462, - "file_cluster_6": 13.189, - "file_cluster_7": 12.884, - "file_cluster_8": 12.839, - "file_cluster_9": 13.327, - "file_cluster_10": 13.867, - "file_cluster_11": 12.614, - "file_cluster_12": 13.371, - "file_cluster_13": 12.259, - "file_cluster_14": 15.817, - "file_cluster_15": 12.955, - "file_cluster_16": 11.865, - "file_cluster_17": 12.904 - }, - "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 6.993, - "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 8.159, - "Cluster 1: Async Scripting & I/O Automation": 8.056, - "Cluster 2: Type Definitions & Bypasses": 8.194, - "Cluster 3: UI Frameworks & View Layers": 7.554, - "Cluster 4: Heavily Documented Core Classes": 7.658, - "Cluster 5: Declarative Glue & Inert Types": 7.462, - "Cluster 6: Async Testing & Verification": 9.096, - "Cluster 7: Highly Concurrent State Management": 8.361, - "Cluster 8: Algorithmic Data Processing": 6.993 + "file_cluster_0": 8.78, + "file_cluster_1": 7.594, + "file_cluster_2": 8.328, + "file_cluster_3": 9.817, + "file_cluster_4": 9.354, + "file_cluster_5": 8.764, + "file_cluster_6": 9.021, + "file_cluster_7": 7.54, + "file_cluster_8": 6.13, + "file_cluster_9": 8.785, + "file_cluster_10": 10.069, + "file_cluster_11": 9.53, + "file_cluster_12": 7.596, + "file_cluster_13": 8.622, + "file_cluster_14": 13.344, + "file_cluster_15": 9.52, + "file_cluster_16": 8.457, + "file_cluster_17": 9.024 }, - "Total LOC": 1854, - "Coding LOC": 608, - "Documentation LOC": 1110, - "Structural Magnitude": 30.26, - "Control Flow Ratio": "11.6%", - "Popularity Rank": 3, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 63, + "Coding LOC": 32, + "Documentation LOC": 27, + "Structural Magnitude": 15.64, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.135 + "Raw Cognitive Density": 1.094 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.93%", - "Error & Exception Exposure": "39.87%", + "Cognitive Load Exposure": "79.82%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "12.77%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.27%", + "Documentation Exposure": "24.88%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "getFilterable", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "42.1%", - "Start Line": 281, - "End Line": 320 - }, - { - "Function Name": "getEq", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 228, - "End Line": 231 - }, - { - "Function Name": "getOrElseW", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 87, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "4.8%", - "Start Line": 1050, - "End Line": 1136 - }, - { - "Function Name": "getCompactable", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 260, - "End Line": 273 - }, - { - "Function Name": "elem", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "36.4%", - "Start Line": 1473, - "End Line": 1481 - }, - { - "Function Name": "traverseReadonlyNonEmptyArrayWithIndex", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1581, - "End Line": 1597 - }, - { - "Function Name": "getApplicativeValidation", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 404, - "End Line": 417 - }, - { - "Function Name": "_chainRec", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 193, - "End Line": 214 - }, - { - "Function Name": "toError", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 1458, - "End Line": 1464 - }, - { - "Function Name": "partition", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 289, - "End Line": 295 - }, - { - "Function Name": "filterMap", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 304, - "End Line": 310 - }, - { - "Function Name": "partitionMap", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 312, - "End Line": 318 - }, - { - "Function Name": "alt", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 457, - "End Line": 463 - }, - { - "Function Name": "tryCatch", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1393, - "End Line": 1399 - }, - { - "Function Name": "f", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 71, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1629, - "End Line": 1699 - }, - { - "Function Name": "getAltValidation", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 453, - "End Line": 464 - }, - { - "Function Name": "getSemigroup", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 250, - "End Line": 252 - }, - { - "Function Name": "B", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 651, - "End Line": 663 - }, - { - "Function Name": "stringifyJSON", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 1728, - "End Line": 1735 - }, - { - "Function Name": "f", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "16.7%", - "Start Line": 1606, - "End Line": 1610 - }, - { - "Function Name": "getShow", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 220, - "End Line": 222 - }, - { - "Function Name": "exists", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1497, - "End Line": 1510 - }, - { - "Function Name": "sequence", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 714, - "End Line": 718 - }, - { - "Function Name": "f", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1542, - "End Line": 1543 - }, - { - "Function Name": "getValidation", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1822, - "End Line": 1853 - }, - { - "Function Name": "getWitherable", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 328, - "End Line": 349 - }, - { - "Function Name": "parseJSON", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1717, - "End Line": 1719 - }, - { - "Function Name": "onNone", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1228, - "End Line": 1234 - }, - { - "Function Name": "_traverse", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 181, - "End Line": 186 - }, - { - "Function Name": "f", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1424, - "End Line": 1428 - }, - { - "Function Name": "chainNullableK", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1436, - "End Line": 1441 - }, - { - "Function Name": "_foldMap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 175, - "End Line": 178 - }, - { - "Function Name": "elem", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1469, - "End Line": 1472 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 61, - "Sequential Logic Declarations": 463, - "Function Parameters": 248, - "Function/Method Declarations": 81, - "Class/Entity Declarations": 6, - "Defensive Programming Constructs": 29, - "Type/Safety Bypasses": 11, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 126, - "State Mutations / Variable Reassignments": 8, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 130, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 157, - "Closures and Anonymous Functions": 19, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 424, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 32, + "Metaprogramming & Reflection": 6, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -423664,28 +425364,28 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 3, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 1, + "Explicit Type Casts": 6, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 30, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 149, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 377, + "Structural Space Indentations": 32, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 2, + "Serialization Parsing": 0, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -423696,13 +425396,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 60, - "Design Camel Case": 30, - "Design Snake Case": 23, - "Design Pascal Case": 1, - "Design Upper Case": 5, - "Design Short Vars": 13, - "Design Long Vars": 2, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -423728,158 +425428,108 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 38, - "Direct Downstream (Dependency Blast Radius)": 3, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./Alt", - "./Applicative", - "./Apply", - "./Bifunctor", - "./Chain", - "./ChainRec", - "./Compactable", - "./Eq", - "./Extend", - "./Filterable", - "./Foldable", - "./FromEither", - "./Functor", - "./HKT", - "./Monad", - "./MonadThrow", - "./Monoid", - "./NonEmptyArray", - "./Option", - "./Pointed", - "./Predicate", - "./ReadonlyNonEmptyArray", - "./Refinement", - "./Semigroup", - "./Separated", - "./Show", - "./Traversable", - "./Witherable", - "./function", - "./internal", - "fp-ts/Apply", - "fp-ts/Either", - "fp-ts/Option", - "fp-ts/ReadonlyArray", - "fp-ts/Semigroup", - "fp-ts/function", - "fp-ts/number", - "fp-ts/string" - ] + "9. Extracted Dependencies": [] }, - "typescript/fp-ts/HKT.ts": { + "cobol/cobrix/test18 special_char.cob": { "1. Artifact Identity": { - "Filename": "HKT.ts", - "Path": "typescript/fp-ts/HKT.ts", - "Language": "Typescript", + "Filename": "test18 special_char.cob", + "Path": "cobol/cobrix/test18 special_char.cob", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "HKT, HKT2, HKT3", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6775.44, - "Y": 226.01, - "Z": -1051.95 + "X": -698.56, + "Y": 208.22, + "Z": -3122.8 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_16", - "Repository Drift (Z-Score)": 10.808, + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 6.13, "Repository Fingerprint": { - "file_cluster_0": 12.518, - "file_cluster_1": 12.289, - "file_cluster_2": 11.146, - "file_cluster_3": 13.371, - "file_cluster_4": 12.949, - "file_cluster_5": 12.654, - "file_cluster_6": 12.768, - "file_cluster_7": 11.956, - "file_cluster_8": 11.987, - "file_cluster_9": 12.794, - "file_cluster_10": 13.294, - "file_cluster_11": 12.624, - "file_cluster_12": 12.689, - "file_cluster_13": 12.101, - "file_cluster_14": 15.694, - "file_cluster_15": 12.669, - "file_cluster_16": 10.808, - "file_cluster_17": 12.391 - }, - "File Archetype": "Cluster 2: Type Definitions & Bypasses", - "File Drift (Z-Score)": 10.368, - "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 13.121, - "Cluster 1: Async Scripting & I/O Automation": 13.124, - "Cluster 2: Type Definitions & Bypasses": 10.368, - "Cluster 3: UI Frameworks & View Layers": 12.849, - "Cluster 4: Heavily Documented Core Classes": 10.957, - "Cluster 5: Declarative Glue & Inert Types": 12.798, - "Cluster 6: Async Testing & Verification": 13.558, - "Cluster 7: Highly Concurrent State Management": 12.989, - "Cluster 8: Algorithmic Data Processing": 12.018 + "file_cluster_0": 8.78, + "file_cluster_1": 7.594, + "file_cluster_2": 8.328, + "file_cluster_3": 9.817, + "file_cluster_4": 9.354, + "file_cluster_5": 8.764, + "file_cluster_6": 9.021, + "file_cluster_7": 7.54, + "file_cluster_8": 6.13, + "file_cluster_9": 8.785, + "file_cluster_10": 10.069, + "file_cluster_11": 9.53, + "file_cluster_12": 7.596, + "file_cluster_13": 8.622, + "file_cluster_14": 13.344, + "file_cluster_15": 9.52, + "file_cluster_16": 8.457, + "file_cluster_17": 9.024 }, - "Total LOC": 127, - "Coding LOC": 25, - "Documentation LOC": 82, - "Structural Magnitude": 3.15, - "Control Flow Ratio": "8.5%", - "Popularity Rank": 2, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 63, + "Coding LOC": 32, + "Documentation LOC": 27, + "Structural Magnitude": 15.64, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.16 + "Raw Cognitive Density": 1.094 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.31%", - "Error & Exception Exposure": "99.36%", + "Cognitive Load Exposure": "79.82%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", - "API Exposure": "11.68%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "82.38%", + "Documentation Exposure": "24.88%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 43, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, - "Class/Entity Declarations": 8, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 14, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 16, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 21, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 11, + "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 30, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 6, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -423894,18 +425544,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 6, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 5, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 5, + "Structural Space Indentations": 32, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -423922,11 +425572,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -423955,342 +425605,140 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "typescript/fp-ts/TaskEither.ts": { + "cobol/cobrix/test19_display_num.cob": { "1. Artifact Identity": { - "Filename": "TaskEither.ts", - "Path": "typescript/fp-ts/TaskEither.ts", - "Language": "Typescript", + "Filename": "test19_display_num.cob", + "Path": "cobol/cobrix/test19_display_num.cob", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Task, _", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6524.52, - "Y": 65.42, - "Z": -1602.71 + "X": -933.62, + "Y": 230.29, + "Z": -3330.92 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_16", - "Repository Drift (Z-Score)": 11.9, + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 4.447, "Repository Fingerprint": { - "file_cluster_0": 13.153, - "file_cluster_1": 13.315, - "file_cluster_2": 12.254, - "file_cluster_3": 13.82, - "file_cluster_4": 13.393, - "file_cluster_5": 13.639, - "file_cluster_6": 13.354, - "file_cluster_7": 13.008, - "file_cluster_8": 12.937, - "file_cluster_9": 13.432, - "file_cluster_10": 14.042, - "file_cluster_11": 12.794, - "file_cluster_12": 13.44, - "file_cluster_13": 12.408, - "file_cluster_14": 15.589, - "file_cluster_15": 13.198, - "file_cluster_16": 11.9, - "file_cluster_17": 12.782 - }, - "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 6.994, - "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 8.182, - "Cluster 1: Async Scripting & I/O Automation": 8.096, - "Cluster 2: Type Definitions & Bypasses": 7.98, - "Cluster 3: UI Frameworks & View Layers": 7.535, - "Cluster 4: Heavily Documented Core Classes": 7.515, - "Cluster 5: Declarative Glue & Inert Types": 7.553, - "Cluster 6: Async Testing & Verification": 9.096, - "Cluster 7: Highly Concurrent State Management": 8.551, - "Cluster 8: Algorithmic Data Processing": 6.994 + "file_cluster_0": 7.742, + "file_cluster_1": 6.315, + "file_cluster_2": 7.195, + "file_cluster_3": 8.986, + "file_cluster_4": 8.35, + "file_cluster_5": 7.698, + "file_cluster_6": 8.024, + "file_cluster_7": 6.25, + "file_cluster_8": 4.447, + "file_cluster_9": 7.738, + "file_cluster_10": 9.281, + "file_cluster_11": 8.888, + "file_cluster_12": 8.096, + "file_cluster_13": 7.576, + "file_cluster_14": 12.66, + "file_cluster_15": 8.651, + "file_cluster_16": 7.372, + "file_cluster_17": 7.984 }, - "Total LOC": 1882, - "Coding LOC": 662, - "Documentation LOC": 1053, - "Structural Magnitude": 22.98, - "Control Flow Ratio": "2.5%", + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 34, + "Coding LOC": 15, + "Documentation LOC": 17, + "Structural Magnitude": 15.3, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.13 + "Raw Cognitive Density": 0.333 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.87%", - "Error & Exception Exposure": "33.76%", + "Cognitive Load Exposure": "15.89%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "13.29%", - "Concurrency Exposure": "21.39%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "40.62%", + "Documentation Exposure": "47.39%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "traverseReadonlyNonEmptyArrayWithIndexSeq", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "18.2%", - "Start Line": 1624, - "End Line": 1639 - }, - { - "Function Name": "f", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "16.7%", - "Start Line": 1612, - "End Line": 1616 - }, - { - "Function Name": "f", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "16.7%", - "Start Line": 1651, - "End Line": 1655 - }, - { - "Function Name": "_alt", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 436, - "End Line": 472 - }, - { - "Function Name": "async", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 251, - "End Line": 257 - }, - { - "Function Name": "taskify", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "14.3%", - "Start Line": 1482, - "End Line": 1491 - }, - { - "Function Name": "f", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1561, - "End Line": 1562 - }, - { - "Function Name": "onLeft", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1771, - "End Line": 1799 - }, - { - "Function Name": "getFilterable", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 744, - "End Line": 763 - }, - { - "Function Name": "release", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1517, - "End Line": 1529 - }, - { - "Function Name": "getTaskValidation", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1862, - "End Line": 1881 - }, - { - "Function Name": "partitionMap", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 761, - "End Line": 772 - }, - { - "Function Name": "getApplicativeTaskValidation", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 696, - "End Line": 705 - }, - { - "Function Name": "onLeft", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 347, - "End Line": 359 - }, - { - "Function Name": "f", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1312, - "End Line": 1323 - }, - { - "Function Name": "getAltTaskValidation", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 716, - "End Line": 724 - }, - { - "Function Name": "getCompactable", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 730, - "End Line": 738 - }, - { - "Function Name": "onNone", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1179, - "End Line": 1185 - }, - { - "Function Name": "fromTaskOptionK", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 393, - "End Line": 398 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, - "Sequential Logic Declarations": 590, - "Function Parameters": 311, - "Function/Method Declarations": 76, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 49, - "Type/Safety Bypasses": 16, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 154, - "State Mutations / Variable Reassignments": 5, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 158, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 6, - "UI / View Layer Components": 220, - "Closures and Anonymous Functions": 15, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 616, - "Collection Iterators / Comprehensions": 6, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 32, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 3, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 1, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 28, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 168, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 359, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 1, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -424300,13 +425748,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 46, - "Design Camel Case": 24, - "Design Snake Case": 13, - "Design Pascal Case": 2, - "Design Upper Case": 7, - "Design Short Vars": 8, - "Design Long Vars": 5, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -424332,952 +425780,109 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 40, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./Alt", - "./Applicative", - "./Apply", - "./Bifunctor", - "./Chain", - "./Compactable", - "./Either", - "./EitherT", - "./Filterable", - "./FromEither", - "./FromIO", - "./FromTask", - "./Functor", - "./IO", - "./IOEither", - "./Monad", - "./MonadIO", - "./MonadTask", - "./MonadThrow", - "./Monoid", - "./NonEmptyArray", - "./Option", - "./Pointed", - "./Predicate", - "./ReadonlyNonEmptyArray", - "./Refinement", - "./Semigroup", - "./Task", - "./TaskOption", - "./function", - "./internal", - "fp-ts/Console", - "fp-ts/Either", - "fp-ts/ReadonlyArray", - "fp-ts/Semigroup", - "fp-ts/Task", - "fp-ts/TaskEither", - "fp-ts/function", - "fp-ts/string", - "fs" - ] + "9. Extracted Dependencies": [] }, - "typescript/fp-ts/pipeable.ts": { + "cobol/cobrix/test1_copybook.cob": { "1. Artifact Identity": { - "Filename": "pipeable.ts", - "Path": "typescript/fp-ts/pipeable.ts", - "Language": "Typescript", + "Filename": "test1_copybook.cob", + "Path": "cobol/cobrix/test1_copybook.cob", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "PipeableFunctor, PipeableFunctor1, PipeableFunctor2", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "typescript", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .cob)" }, "2. Topological Coordinates": { - "X": 6521.3, - "Y": 177.34, - "Z": -1505.68 + "X": -460.76, + "Y": 252.47, + "Z": -3883.42 }, "3. Architectural Profile": { - "Repository Archetype": "file_cluster_16", - "Repository Drift (Z-Score)": 11.017, + "Repository Archetype": "file_cluster_8", + "Repository Drift (Z-Score)": 6.203, "Repository Fingerprint": { - "file_cluster_0": 12.67, - "file_cluster_1": 12.54, - "file_cluster_2": 12.119, - "file_cluster_3": 13.608, - "file_cluster_4": 13.141, - "file_cluster_5": 13.0, - "file_cluster_6": 12.92, - "file_cluster_7": 12.308, - "file_cluster_8": 12.03, - "file_cluster_9": 12.95, - "file_cluster_10": 13.618, - "file_cluster_11": 12.614, - "file_cluster_12": 13.006, - "file_cluster_13": 12.214, - "file_cluster_14": 16.013, - "file_cluster_15": 13.017, - "file_cluster_16": 11.017, - "file_cluster_17": 12.734 - }, - "File Archetype": "Cluster 8: Algorithmic Data Processing", - "File Drift (Z-Score)": 6.722, - "File Fingerprint": { - "Cluster 0: The God Nodes (Universal Dependencies)": 7.559, - "Cluster 1: Async Scripting & I/O Automation": 7.711, - "Cluster 2: Type Definitions & Bypasses": 8.182, - "Cluster 3: UI Frameworks & View Layers": 6.916, - "Cluster 4: Heavily Documented Core Classes": 7.232, - "Cluster 5: Declarative Glue & Inert Types": 6.737, - "Cluster 6: Async Testing & Verification": 8.94, - "Cluster 7: Highly Concurrent State Management": 8.723, - "Cluster 8: Algorithmic Data Processing": 6.722 + "file_cluster_0": 8.706, + "file_cluster_1": 7.686, + "file_cluster_2": 8.303, + "file_cluster_3": 9.763, + "file_cluster_4": 9.326, + "file_cluster_5": 8.767, + "file_cluster_6": 8.907, + "file_cluster_7": 7.518, + "file_cluster_8": 6.203, + "file_cluster_9": 8.77, + "file_cluster_10": 9.85, + "file_cluster_11": 9.215, + "file_cluster_12": 7.717, + "file_cluster_13": 8.552, + "file_cluster_14": 13.397, + "file_cluster_15": 9.024, + "file_cluster_16": 8.433, + "file_cluster_17": 9.004 }, - "Total LOC": 2612, - "Coding LOC": 1772, - "Documentation LOC": 701, - "Structural Magnitude": 49.45, - "Control Flow Ratio": "5.4%", + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 37, + "Coding LOC": 19, + "Documentation LOC": 17, + "Structural Magnitude": 15.38, + "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.072 + "Raw Cognitive Density": 0.842 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.12%", - "Error & Exception Exposure": "46.57%", + "Cognitive Load Exposure": "59.11%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "14.61%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "90.42%", + "Documentation Exposure": "42.58%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "f", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1968, - "End Line": 1998 - }, - { - "Function Name": "f", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2019, - "End Line": 2049 - }, - { - "Function Name": "f", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1922, - "End Line": 1948 - }, - { - "Function Name": "f", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1900, - "End Line": 1924 - }, - { - "Function Name": "f", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1946, - "End Line": 1970 - }, - { - "Function Name": "f", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1996, - "End Line": 2021 - }, - { - "Function Name": "f", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1854, - "End Line": 1880 - }, - { - "Function Name": "f", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1811, - "End Line": 1835 - }, - { - "Function Name": "f", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1878, - "End Line": 1902 - }, - { - "Function Name": "f", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1791, - "End Line": 1813 - }, - { - "Function Name": "f", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1833, - "End Line": 1856 - }, - { - "Function Name": "f", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2047, - "End Line": 2058 - }, - { - "Function Name": "g", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1449, - "End Line": 1463 - }, - { - "Function Name": "f", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1985, - "End Line": 1994 - }, - { - "Function Name": "f", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2036, - "End Line": 2045 - }, - { - "Function Name": "f", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1326, - "End Line": 1339 - }, - { - "Function Name": "f", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1397, - "End Line": 1410 - }, - { - "Function Name": "g", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2103, - "End Line": 2114 - }, - { - "Function Name": "partition", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 638, - "End Line": 647 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 824, - "End Line": 833 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 834, - "End Line": 843 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 844, - "End Line": 853 - }, - { - "Function Name": "foldMapWithIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 484, - "End Line": 491 - }, - { - "Function Name": "partition", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 648, - "End Line": 655 - }, - { - "Function Name": "partition", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 656, - "End Line": 663 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 735, - "End Line": 742 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 854, - "End Line": 861 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 862, - "End Line": 869 - }, - { - "Function Name": "mapWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 191, - "End Line": 195 - }, - { - "Function Name": "bimap", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 275, - "End Line": 279 - }, - { - "Function Name": "foldMap", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 388, - "End Line": 393 - }, - { - "Function Name": "reduceWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 451, - "End Line": 455 - }, - { - "Function Name": "reduceRightWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 520, - "End Line": 524 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 559, - "End Line": 564 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 565, - "End Line": 570 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 571, - "End Line": 576 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 582 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 583, - "End Line": 588 - }, - { - "Function Name": "filter", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 589, - "End Line": 594 - }, - { - "Function Name": "partition", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 664, - "End Line": 669 - }, - { - "Function Name": "partition", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 670, - "End Line": 675 - }, - { - "Function Name": "partition", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 676, - "End Line": 681 - }, - { - "Function Name": "partition", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 686, - "End Line": 690 - }, - { - "Function Name": "partitionMap", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 723, - "End Line": 727 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 743, - "End Line": 748 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 749, - "End Line": 754 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 755, - "End Line": 760 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 761, - "End Line": 766 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 767, - "End Line": 772 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 773, - "End Line": 778 - }, - { - "Function Name": "filterWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 779, - "End Line": 783 - }, - { - "Function Name": "filterMapWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 812, - "End Line": 816 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 870, - "End Line": 875 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 876, - "End Line": 881 - }, - { - "Function Name": "partitionWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 886 - }, - { - "Function Name": "partitionMapWithIndex", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 921, - "End Line": 925 - }, - { - "Function Name": "promap", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 951, - "End Line": 955 - }, - { - "Function Name": "map", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 133 - }, - { - "Function Name": "contramap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 160, - "End Line": 162 - }, - { - "Function Name": "ap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 220, - "End Line": 222 - }, - { - "Function Name": "chain", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 247, - "End Line": 249 - }, - { - "Function Name": "mapLeft", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 303, - "End Line": 305 - }, - { - "Function Name": "extend", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 332, - "End Line": 334 - }, - { - "Function Name": "reduce", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 359, - "End Line": 361 - }, - { - "Function Name": "reduceRight", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 420, - "End Line": 422 - }, - { - "Function Name": "alt", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 549, - "End Line": 551 - }, - { - "Function Name": "filter", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 595, - "End Line": 598 - }, - { - "Function Name": "filter", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 599, - "End Line": 601 - }, - { - "Function Name": "filterMap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 628, - "End Line": 630 - }, - { - "Function Name": "partition", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 682, - "End Line": 685 - }, - { - "Function Name": "compose", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 979, - "End Line": 981 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2314, - "End Line": 2315 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2344, - "End Line": 2345 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2374, - "End Line": 2375 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2404, - "End Line": 2405 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2433, - "End Line": 2434 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2463, - "End Line": 2464 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2490, - "End Line": 2491 - }, - { - "Function Name": "pipeable", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2520, - "End Line": 2520 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 128, - "Sequential Logic Declarations": 2243, - "Function Parameters": 1193, - "Function/Method Declarations": 250, - "Class/Entity Declarations": 108, - "Defensive Programming Constructs": 20, - "Type/Safety Bypasses": 17, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 313, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 260, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 110, - "Closures and Anonymous Functions": 2, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 3138, - "Collection Iterators / Comprehensions": 3, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 24, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -425291,18 +425896,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 4, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 138, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 279, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1072, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -425319,9 +425924,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 20, - "Design Camel Case": 18, - "Design Snake Case": 2, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -425351,37 +425956,12 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 24, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./Alt", - "./Apply", - "./Bifunctor", - "./Chain", - "./Compactable", - "./Contravariant", - "./Either", - "./Extend", - "./Filterable", - "./FilterableWithIndex", - "./Foldable", - "./FoldableWithIndex", - "./Functor", - "./FunctorWithIndex", - "./HKT", - "./MonadThrow", - "./Monoid", - "./Option", - "./Predicate", - "./Profunctor", - "./Refinement", - "./Semigroupoid", - "./Separated", - "./function" - ] + "9. Extracted Dependencies": [] } } }, @@ -438550,9 +439130,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 3045.8, + "X": 3045.87, "Y": 219.52, - "Z": -5817.64 + "Z": -5817.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -438731,9 +439311,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3527.34, + "X": 3527.42, "Y": 77.93, - "Z": -5536.14 + "Z": -5536.26 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -438888,9 +439468,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3728.81, + "X": 3728.88, "Y": 117.24, - "Z": -5560.85 + "Z": -5560.96 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -439045,9 +439625,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3672.61, + "X": 3672.69, "Y": 156.7, - "Z": -5864.16 + "Z": -5864.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -439826,9 +440406,9 @@ "Identity Proof": "Metadata Anchor (pom.xml)" }, "2. Topological Coordinates": { - "X": 4065.91, + "X": 4065.98, "Y": -44.32, - "Z": -5401.09 + "Z": -5401.19 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -440026,9 +440606,9 @@ "Identity Proof": "Metadata Anchor (pom.xml)" }, "2. Topological Coordinates": { - "X": 5011.68, + "X": 5011.79, "Y": -82.68, - "Z": 4165.64 + "Z": 4165.74 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", @@ -442394,9 +442974,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 7042.45, + "X": 7044.72, "Y": -96.74, - "Z": -1112.69 + "Z": -1113.02 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -442551,9 +443131,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 6909.9, + "X": 6912.17, "Y": -88.78, - "Z": -902.67 + "Z": -903.01 }, "3. Architectural Profile": { "Repository Archetype": "file_cluster_8", diff --git a/tests/ruff_audit_baseline.json b/tests/ruff_audit_baseline.json index c33dc7491..56327e582 100644 --- a/tests/ruff_audit_baseline.json +++ b/tests/ruff_audit_baseline.json @@ -9,8 +9,8 @@ "gitgalaxy/core/aperture.py:514: SIM102": "Use a single `if` statement instead of nested `if` statements", "gitgalaxy/core/detector.py:2112: SIM102": "Use a single `if` statement instead of nested `if` statements", "gitgalaxy/core/detector.py:2119: SIM102": "Use a single `if` statement instead of nested `if` statements", - "gitgalaxy/core/detector.py:2767: SIM108": "Use ternary operator `line_end = len(safe_code) if next_nl == -1 else next_nl + 1` instead of `if`-`else`-block", - "gitgalaxy/core/detector.py:3984: C403": "Unnecessary list comprehension (rewrite as a set comprehension)", + "gitgalaxy/core/detector.py:2834: SIM108": "Use ternary operator `line_end = len(safe_code) if next_nl == -1 else next_nl + 1` instead of `if`-`else`-block", + "gitgalaxy/core/detector.py:4051: C403": "Unnecessary list comprehension (rewrite as a set comprehension)", "gitgalaxy/core/detector.py:812: SIM102": "Use a single `if` statement instead of nested `if` statements", "gitgalaxy/core/guidestar_lens.py:139: C401": "Unnecessary generator (rewrite as a set comprehension)", "gitgalaxy/galaxyscope.py:1041: SIM102": "Use a single `if` statement instead of nested `if` statements",