Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.

unpingable/agent_governor

https://github.com/unpingable/agent_governor · scanned 2026-06-16 00:46 UTC (2 months, 1 week ago)

235 raw signals (0 security + 235 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 218 actionable findings from 1 signal source. 17 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 69.6/100 with 100.0% coverage. It contains 28057 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 235 findings — concentrated in quality (187), software (27), security (14). Risk profile is high: 0 critical, 8 high, 17 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 170 of 218 actionable findings. 235 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/rules/cli-reference.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
.claude/rules/cli-reference.md:297 SecretsClaude instruction
high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/rules/feature-history.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
.claude/rules/feature-history.md:91 SecretsClaude instruction
high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/rules/file-structure.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
.claude/rules/file-structure.md:186 SecretsClaude instruction
high System graph security security conf 1.00 Insecure pattern 'eval_used' in src/governor/cli.py:398
Found a known-risky pattern (eval_used). Review and replace if possible.
src/governor/cli.py:398 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in src/governor/security.py:142
Found a known-risky pattern (eval_used). Review and replace if possible.
src/governor/security.py:142 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in src/governor/cli.py:6490
Found a known-risky pattern (exec_used). Review and replace if possible.
src/governor/cli.py:6490 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in src/governor/security.py:143
Found a known-risky pattern (exec_used). Review and replace if possible.
src/governor/security.py:143 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in src/governor/verify.py:120
Found a known-risky pattern (exec_used). Review and replace if possible.
src/governor/verify.py:120 Exec used
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/rules/vscode-extension.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/rules/vscode-extension.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: contrib/claude-code-plugin/.mcp.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
contrib/claude-code-plugin/.mcp.json VerificationMcp config
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
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.
Mock dataCritical flowGenerated repo pattern
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in src/governor/security.py:151
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
src/governor/security.py:151 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in govlab/static/index.html:424
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
govlab/static/index.html:424 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in src/governor/security.py:141
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
src/governor/security.py:141 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in src/ops_governor/policy.py:145
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
src/ops_governor/policy.py:145 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in src/governor/security.py:176
Found a known-risky pattern (weak_hash). Review and replace if possible.
src/governor/security.py:176 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — contrib/demo_guardrail.py:62
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — contrib/demo_session.py:82
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — govlab/serve.py:49
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — src/governor/ci.py:233
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — src/governor/cli.py:368
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — src/governor/git_governance.py:312
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — src/governor/hooks.py:52
`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.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — src/governor/wrapper.py:275
`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.
runtime safetyRobustness
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 43 placeholder/mock markers across 19 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 707 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph cicd CI/CD security conf 1.00 5 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/setup-python@v5 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
lines 30, 35, 67, 84, 106
.github/workflows/ci.yml:30, 35, 67, 84, 106 (5 hits)
CI/CD securitySupply chainGithub actions
low System graph security security conf 1.00 Insecure pattern 'document_write' in src/governor/security.py:149
Found a known-risky pattern (document_write). Review and replace if possible.
src/governor/security.py:149 Document write
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 10 places
Functions with the same first-5-line body hash: libs/receipt_v1/src/receipt_v1/types.py:to_dict, libs/receipt_v1/src/receipt_v1/types.py:to_dict, libs/receipt_v1/src/receipt_v1/types.py:to_dict, libs/receipt_v1/src/receipt_v1/types.py:to_dict This is *the* AI-coder failure mode (4× more duplicatio…
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 12 places
Functions with the same first-5-line body hash: src/fiction_governor/guardrails.py:to_dict, src/fiction_governor/guardrails.py:to_dict, src/fiction_governor/guardrails.py:to_dict, src/fiction_governor/guardrails.py:to_dict This is *the* AI-coder failure mode (4× more duplication in vibe-coded repo…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 12 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: libs/receipt_kernel/src/receipt_kernel/invariants/run_shape.py:evaluate, libs/receipt_kernel/src/receipt_kernel/invariants/run_shape.py:evaluate This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-…
12 occurrences
repo-level (12 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: libs/receipt_v1/src/receipt_v1/sinks.py:write, libs/receipt_v1/src/receipt_v1/sinks.py:write, libs/receipt_v1/src/receipt_v1/sinks.py:write This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygie…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: libs/receipt_kernel/src/receipt_kernel/types.py:to_dict, libs/receipt_kernel/src/receipt_kernel/types.py:to_dict, libs/receipt_kernel/src/receipt_kernel/types.py:to_dict, libs/receipt_kernel/src/receipt_kernel/types.py:to_dict This is *the* AI-coder …
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: src/fiction_governor/context_drift.py:to_dict, src/fiction_governor/context_drift.py:to_dict, src/fiction_governor/context_drift.py:to_dict, src/fiction_governor/context_drift.py:to_dict This is *the* AI-coder failure mode (4× more duplication in vib…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 7 places
Functions with the same first-5-line body hash: libs/receipt_kernel/src/receipt_kernel/invariants/tool_trace_consistency.py:evaluate, libs/receipt_kernel/src/receipt_kernel/invariants/confidence_sanity.py:evaluate, libs/receipt_kernel/src/receipt_kernel/invariants/claims_evidence_binding.py:evaluat…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_emit_receipt_v1` in src/governor/evidence_gate.py:837
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_format_legacy` in src/governor/docket.py:443
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ag2_instrument_v1` in src/governor/instrument.py:753
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ag2_instrument_v1` in tests/test_instrument.py:749
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `cooldown_key_v2` in src/governor/lanes.py:240
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ev_old` in tests/test_epistemic.py:794
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `evidence_gate_v1` in tests/test_oracle_pytest.py:341
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `files_copy` in tests/test_contract_adapters.py:606
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `gov_old` in tests/test_signals_provenance.py:295
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `governor_core_v1` in src/governor/policy_ir.py:222
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `has_backup` in src/governor/hooks.py:319
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `initialized_v1` in tests/test_state_cmd.py:19
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `inputs_copy` in tests/test_signals_replay_harness.py:1176
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ledgers_v2` in src/governor/__init__.py:16
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ledgers_v2` in tests/test_ledgers_v2.py:14
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `loo_influence_v1` in src/governor/signals/posterior_shift.py:11
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `loo_influence_v1` in tests/test_signals_posterior_shift.py:10
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `prose_v1` in bench/run_ab.py:284
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `prose_v1` in tests/test_policy_ir.py:264
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/mcp_governor/src/mcp_governor/gateway.py:20
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/mcp_governor/src/mcp_governor/receipt_emitter.py:18
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/mcp_governor/src/mcp_governor/sinks.py:17
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/mcp_governor/tests/test_demos.py:17
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/mcp_governor/tests/test_gateway.py:540
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/mcp_governor/tests/test_receipt_emitter.py:6
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/mcp_governor/tests/test_sinks.py:10
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/src/receipt_v1/__init__.py:11
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/src/receipt_v1/receipt.py:14
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/src/receipt_v1/resources.py:4
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/src/receipt_v1/sinks.py:17
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/src/receipt_v1/store.py:22
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/src/receipt_v1/verify.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/tests/test_canonical.py:10
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/tests/test_examples.py:7
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/tests/test_receipt.py:8
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/tests/test_sinks.py:9
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/tests/test_store.py:2
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/tests/test_types.py:8
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in libs/receipt_v1/tests/test_verify.py:6
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in src/governor/daemon.py:631
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in src/governor/gate_receipt.py:491
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in src/governor/receipt_v1_bridge.py:2
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in tests/test_cli_receipts_v1.py:38
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in tests/test_receipt_v1_bridge.py:2
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in tests/test_scale.py:36
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipt_v1` in tests/test_upgrade_path.py:213
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `receipts_v1` in tests/test_daemon.py:949
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `S4_lite_v1` in src/governor/drill_runner.py:887
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `S4_lite_v1` in src/governor/linear_accountant_client.py:414
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `S4_lite_v1` in src/governor/standing_client.py:249
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `S4_lite_v1` in src/governor/standing_spendability.py:305
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `S4_lite_v1` in src/governor/wicket_client.py:333
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `store_v1` in tests/test_lanes.py:2091
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_cleanup_old` in tests/test_context_compact.py:484
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_cli_receipts_v1` in tests/test_why_command.py:21
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_dt_aware_first_call_uses_legacy` in tests/test_control_theory.py:1138
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_format_legacy` in tests/test_docket.py:496
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_format_no_backup` in tests/test_writing_puppet.py:1087
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_from_dict_accepts_missing_schema_version_as_v1` in tests/test_plan_review.py:585
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_get_dependents_returns_list_copy` in tests/test_premise_rules.py:320
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_history_is_copy` in tests/test_strict.py:755
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_restores_backup` in tests/test_hooks.py:371
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_schema_constants_contain_v1` in tests/test_policy_engine.py:150
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_schema_version_is_v2` in tests/test_viewmodel.py:746
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_v1_db_migrates_to_v2` in tests/test_evidence_store.py:576
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `token_jaccard_v1` in src/governor/taint.py:52
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `token_jaccard_v1` in tests/test_taint.py:47
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `use_v2` in src/governor/cli.py:287
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_character_add
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:75
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_character_anti
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:117
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_character_show
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:151
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_character_trait
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:101
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_character_voice
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:131
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_rule_add
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:234
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_rule_list
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:254
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_show
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:315
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_tone_set
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:281
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_tone_show
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:302
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_trope_ban
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:173
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_trope_list
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:199
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_bible_trope_unban
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:222
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_canon_event_add
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:324
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_canon_relationship_set
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:346
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_canon_show
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:368
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_init
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:37
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_state_belief_add
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:477
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_state_belief_invalidate
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:550
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_state_belief_list
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:512
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_state_motivation_add
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:386
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_state_motivation_conflict
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:465
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_state_motivation_list
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:419
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_state_motivation_resolve
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/fiction_governor/cli.py:450
low System graph software Dead code conf 1.00 Possibly dead Python function: do_GET
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
govlab/serve.py:116
low System graph software Dead code conf 1.00 Possibly dead Python function: do_POST
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
govlab/serve.py:142
low System graph software Dead code conf 1.00 Possibly dead Python function: hash_json
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
libs/r2wire/src/r2wire/canonical.py:61
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph quality Complexity conf 1.00 Very large file: src/fiction_governor/cli.py (2127 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/__init__.py (2460 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/auto_tuning.py (1493 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/chat_bridge.py (1995 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/cli.py (20366 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/convergence_tuning.py (2017 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/cooked_context_orchestrator.py (1165 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/daemon.py (3733 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/drill_runner.py (2169 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/epistemic.py (2207 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/evidence_gate.py (1514 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/instrument.py (1970 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/lanes.py (2381 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/mcp_server.py (1432 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/routing.py (1679 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/scars.py (1372 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/semantic_stability.py (2295 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/tasks.py (1487 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/telemetry.py (1576 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/governor/writing_puppet.py (1637 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_audit.py (1596 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_auto_tuning.py (1395 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_chat_bridge.py (2881 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_claim_diff.py (1355 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_continuity.py (1491 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_convergence_tuning.py (1542 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_cooked_context_orchestrator.py (1206 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_correlator_telemetry.py (1837 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_daemon.py (4939 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_fiction_governor.py (1815 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_golden_files.py (1816 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_instrument.py (2189 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_lanes.py (2686 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_quorum.py (1314 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_scars.py (1902 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_scope.py (1872 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_semantic_stability.py (3052 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_signal_store.py (1620 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_signals_replay_harness.py (1721 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/11ce4ce1-5323-4cfb-9743-9dd261e2d2f1/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/11ce4ce1-5323-4cfb-9743-9dd261e2d2f1/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.