{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "scanner-47cda43707a9a6b4", "name": "Possibly dead Python function: origin_of", "shortDescription": {"text": "Possibly dead Python function: origin_of"}, "fullDescription": {"text": "No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler."}, "properties": {"scanner": "scanner-primary", "layer": "software", "severity": "low", "confidence": 1.0}}, {"id": "scanner-9710c8d059e53154", "name": "No frontend routes/components detected", "shortDescription": {"text": "No frontend routes/components detected"}, "fullDescription": {"text": "No React/Vue/Next routes were found. This is fine for backend-only repos."}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "info", "confidence": 1.0}}, {"id": "scanner-3b5d597422fd3b12", "name": "Insecure pattern 'subprocess_shell_true' in README.md:150", "shortDescription": {"text": "Insecure pattern 'subprocess_shell_true' in README.md:150"}, "fullDescription": {"text": "Found a known-risky pattern (subprocess_shell_true). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-5ec64a92635ae92d", "name": "Insecure pattern 'subprocess_shell_true' in CLAUDE.md:18", "shortDescription": {"text": "Insecure pattern 'subprocess_shell_true' in CLAUDE.md:18"}, "fullDescription": {"text": "Found a known-risky pattern (subprocess_shell_true). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-7efbda965f283c17", "name": "GitHub Action is tag-pinned rather than SHA-pinned", "shortDescription": {"text": "GitHub Action is tag-pinned rather than SHA-pinned"}, "fullDescription": {"text": "actions/setup-python@v5 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA."}, "properties": {"scanner": "scanner-primary", "layer": "cicd", "severity": "low", "confidence": 1.0}}, {"id": "scanner-141b30a41e03817b", "name": "No license file detected", "shortDescription": {"text": "No license file detected"}, "fullDescription": {"text": "No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 11 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-2d0c7b7ab8f8aacf", "name": "Critical user flow still appears backed by mock or placeholder data", "shortDescription": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "fullDescription": {"text": "A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-749d4bc1bd66df5f", "name": "Agent instructions exist but release-hardening basics are missing", "shortDescription": {"text": "Agent instructions exist but release-hardening basics are missing"}, "fullDescription": {"text": "AI-coder instruction files were found, but the repo is missing license. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-ea8f3013f588db25", "name": "Shallow git history limits provenance confidence", "shortDescription": {"text": "Shallow git history limits provenance confidence"}, "fullDescription": {"text": "The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-8424db9c75e04ba4", "name": "Very short observed git history", "shortDescription": {"text": "Very short observed git history"}, "fullDescription": {"text": "The repo has multiple source files but two or fewer visible commits. This is not a failure by itself, but it lowers confidence in evolution-based diagnosis."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-24f2ea4bd14badc1", "name": "Agent instruction contains unpinned remote install: CLAUDE.md", "shortDescription": {"text": "Agent instruction contains unpinned remote install: CLAUDE.md"}, "fullDescription": {"text": "Remote install commands in agent instructions are a supply-chain risk, especially when an agent can execute shell commands."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-58a0098c0a29e700", "name": "Commented-code block (7 lines) in src/codesync/config.py:20", "shortDescription": {"text": "Commented-code block (7 lines) in src/codesync/config.py:20"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-591ac63d87363fda", "name": "Network/subprocess call without timeout or try/except \u2014 src/codesync/auth.py:16", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/auth.py:16"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-5c76adfa0fa29c64", "name": "Commented-code block (6 lines) in src/codesync/updater.py:25", "shortDescription": {"text": "Commented-code block (6 lines) in src/codesync/updater.py:25"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-219605785d003774", "name": "Network/subprocess call without timeout or try/except \u2014 src/codesync/updater.py:110", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/updater.py:110"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-e3ad3fa181e525b9", "name": "Commented-code block (5 lines) in src/codesync/sync.py:120", "shortDescription": {"text": "Commented-code block (5 lines) in src/codesync/sync.py:120"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-51d6bd5407799f5e", "name": "Commented-code block (5 lines) in src/codesync/delete.py:126", "shortDescription": {"text": "Commented-code block (5 lines) in src/codesync/delete.py:126"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-06732754a6946a70", "name": "Network/subprocess call without timeout or try/except \u2014 src/codesync/delete.py:41", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/delete.py:41"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-49729a32ad7d5cc0", "name": "Network/subprocess call without timeout or try/except \u2014 src/codesync/fork_setup.py:36", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/fork_setup.py:36"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-71f312384b9b4d71", "name": "Commented-code block (5 lines) in src/codesync/cli.py:122", "shortDescription": {"text": "Commented-code block (5 lines) in src/codesync/cli.py:122"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-b10d16da5949b3d8", "name": "Network/subprocess call without timeout or try/except \u2014 src/codesync/publish.py:148", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/publish.py:148"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6dc634eccc2f0eb9", "name": "Network/subprocess call without timeout or try/except \u2014 src/codesync/git_ops.py:181", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/git_ops.py:181"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-de0703aa4d68bbeb", "name": "Network/subprocess call without timeout or try/except \u2014 src/codesync/rename.py:43", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/rename.py:43"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-4e0a6c137935d493", "name": "Commented-code block (8 lines) in src/codesync/github_auto.py:127", "shortDescription": {"text": "Commented-code block (8 lines) in src/codesync/github_auto.py:127"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-52eb9a82b6c920c7", "name": "Network/subprocess call without timeout or try/except \u2014 src/codesync/github_auto.py:87", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/github_auto.py:87"}, "fullDescription": {"text": "`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}]}}, "automationDetails": {"id": "repobility/21328"}, "properties": {"repository": "tinyvane/dev-tools", "repoUrl": "https://github.com/tinyvane/dev-tools", "branch": "main"}, "results": [{"ruleId": "scanner-47cda43707a9a6b4", "level": "note", "message": {"text": "Possibly dead Python function: origin_of"}, "properties": {"repobilityId": "24da31460d291b88", "scanner": "scanner-primary", "fingerprint": "47cda43707a9a6b4", "layer": "software", "severity": "low", "confidence": 1.0, "tags": ["dead-code"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/codesync/git_ops.py:180"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-9710c8d059e53154", "level": "none", "message": {"text": "No frontend routes/components detected"}, "properties": {"repobilityId": "44ca61485762e494", "scanner": "scanner-primary", "fingerprint": "9710c8d059e53154", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-3b5d597422fd3b12", "level": "warning", "message": {"text": "Insecure pattern 'subprocess_shell_true' in README.md:150"}, "properties": {"repobilityId": "1ba10447fdc2a3a2", "scanner": "scanner-primary", "fingerprint": "3b5d597422fd3b12", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "subprocess_shell_true"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "README.md"}, "region": {"startLine": 150}}}]}, {"ruleId": "scanner-5ec64a92635ae92d", "level": "warning", "message": {"text": "Insecure pattern 'subprocess_shell_true' in CLAUDE.md:18"}, "properties": {"repobilityId": "44fdc3c4fb44a0a6", "scanner": "scanner-primary", "fingerprint": "5ec64a92635ae92d", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "subprocess_shell_true"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "CLAUDE.md"}, "region": {"startLine": 18}}}]}, {"ruleId": "scanner-7efbda965f283c17", "level": "note", "message": {"text": "GitHub Action is tag-pinned rather than SHA-pinned"}, "properties": {"repobilityId": "cd843b74d3963b06", "scanner": "scanner-primary", "fingerprint": "7efbda965f283c17", "layer": "cicd", "severity": "low", "confidence": 1.0, "tags": ["supply-chain", "github-actions", "pinned-dependencies"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 29}}}]}, {"ruleId": "scanner-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "befc46bd57e1ca9c", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-3ab5d313dda8e5f9", "level": "note", "message": {"text": "Debug logging residue appears in source files"}, "properties": {"repobilityId": "aa7521a52fcf8845", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-2d0c7b7ab8f8aacf", "level": "warning", "message": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "properties": {"repobilityId": "d49a6e576353631b", "scanner": "scanner-primary", "fingerprint": "2d0c7b7ab8f8aacf", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "critical-flow", "generated-repo-pattern"]}}, {"ruleId": "scanner-749d4bc1bd66df5f", "level": "warning", "message": {"text": "Agent instructions exist but release-hardening basics are missing"}, "properties": {"repobilityId": "576d3834966237ad", "scanner": "scanner-primary", "fingerprint": "749d4bc1bd66df5f", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "3e2488152a97ff71", "scanner": "scanner-primary", "fingerprint": "ea8f3013f588db25", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-8424db9c75e04ba4", "level": "none", "message": {"text": "Very short observed git history"}, "properties": {"repobilityId": "1aeff094c35bc97d", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-24f2ea4bd14badc1", "level": "warning", "message": {"text": "Agent instruction contains unpinned remote install: CLAUDE.md"}, "properties": {"repobilityId": "0f6049734704e537", "scanner": "scanner-primary", "fingerprint": "24f2ea4bd14badc1", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "supply-chain", "claude_instruction"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "CLAUDE.md"}, "region": {"startLine": 177}}}]}, {"ruleId": "scanner-58a0098c0a29e700", "level": "none", "message": {"text": "Commented-code block (7 lines) in src/codesync/config.py:20"}, "properties": {"repobilityId": "69565af4bdcadd79", "scanner": "scanner-primary", "fingerprint": "58a0098c0a29e700", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-591ac63d87363fda", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/auth.py:16"}, "properties": {"repobilityId": "55e79cd4d0be535b", "scanner": "scanner-primary", "fingerprint": "591ac63d87363fda", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-5c76adfa0fa29c64", "level": "none", "message": {"text": "Commented-code block (6 lines) in src/codesync/updater.py:25"}, "properties": {"repobilityId": "99ac089c826fc97a", "scanner": "scanner-primary", "fingerprint": "5c76adfa0fa29c64", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-219605785d003774", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/updater.py:110"}, "properties": {"repobilityId": "c011bbfa8d628e72", "scanner": "scanner-primary", "fingerprint": "219605785d003774", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-e3ad3fa181e525b9", "level": "none", "message": {"text": "Commented-code block (5 lines) in src/codesync/sync.py:120"}, "properties": {"repobilityId": "1e308cfe12de36b5", "scanner": "scanner-primary", "fingerprint": "e3ad3fa181e525b9", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-51d6bd5407799f5e", "level": "none", "message": {"text": "Commented-code block (5 lines) in src/codesync/delete.py:126"}, "properties": {"repobilityId": "5b4d6cffe058c427", "scanner": "scanner-primary", "fingerprint": "51d6bd5407799f5e", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-06732754a6946a70", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/delete.py:41"}, "properties": {"repobilityId": "0902ecbb8e53a342", "scanner": "scanner-primary", "fingerprint": "06732754a6946a70", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-49729a32ad7d5cc0", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/fork_setup.py:36"}, "properties": {"repobilityId": "240bf59320111b3a", "scanner": "scanner-primary", "fingerprint": "49729a32ad7d5cc0", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-71f312384b9b4d71", "level": "none", "message": {"text": "Commented-code block (5 lines) in src/codesync/cli.py:122"}, "properties": {"repobilityId": "35bfb6dd3390deed", "scanner": "scanner-primary", "fingerprint": "71f312384b9b4d71", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-b10d16da5949b3d8", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/publish.py:148"}, "properties": {"repobilityId": "c33e270835344134", "scanner": "scanner-primary", "fingerprint": "b10d16da5949b3d8", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-6dc634eccc2f0eb9", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/git_ops.py:181"}, "properties": {"repobilityId": "b073eba2ac17aba8", "scanner": "scanner-primary", "fingerprint": "6dc634eccc2f0eb9", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-de0703aa4d68bbeb", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/rename.py:43"}, "properties": {"repobilityId": "9ae98528d71a60aa", "scanner": "scanner-primary", "fingerprint": "de0703aa4d68bbeb", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-4e0a6c137935d493", "level": "none", "message": {"text": "Commented-code block (8 lines) in src/codesync/github_auto.py:127"}, "properties": {"repobilityId": "4bb5de3b5dfe027f", "scanner": "scanner-primary", "fingerprint": "4e0a6c137935d493", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-52eb9a82b6c920c7", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 src/codesync/github_auto.py:87"}, "properties": {"repobilityId": "7302ab219224fe43", "scanner": "scanner-primary", "fingerprint": "52eb9a82b6c920c7", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}]}]}