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.

ThreeMoonsLab/agents-shipgate

https://github.com/ThreeMoonsLab/agents-shipgate · scanned 2026-06-16 00:36 UTC (2 months, 2 weeks ago)

228 raw signals (0 security + 228 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 2 weeks ago · v1 · 208 actionable findings from 1 signal source. 20 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 82.0/100 with 77.8% coverage. It contains 6727 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 228 findings — concentrated in quality (194), software (30), cicd (3). Risk profile is low: 0 critical, 0 high, 12 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 108 of 208 actionable findings. 228 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.

medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: CLAUDE.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.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: examples/codex/AGENTS.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.
examples/codex/AGENTS.md VerificationAgents md
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 cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/release.yml CI/CD securitySupply chainGithub actions
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — benchmark/miner/candidates.py:32
`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 — harness/__main__.py:114
`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 — harness/adoption/drivers/codex.py:301
`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 — harness/adoption/workspace.py:31
`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 — scripts/run_benchmarks.py:102
`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/agents_shipgate/cli/bootstrap.py:116
`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/agents_shipgate/triggers.py:480
`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 32 placeholder/mock markers across 16 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 81 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 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/upload-artifact@v7 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
lines 68, 75
.github/workflows/adoption-harness.yml:68, 75 (2 hits)
CI/CD securitySupply chainGithub actions
low System graph quality Agent instructions conf 1.00 Multiple root agent instruction files without precedence
The repo has multiple top-level AI-coder instruction files. Without precedence rules, different agents may follow different policies.
Governance
low System graph quality Integrity conf 1.00 20 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: benchmark/repos/openai-agents-sdk/agents/refund_agent.py:send_email_preview, samples/support_refund_agent/agents/refund_agent.py:send_email_preview This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-co…
20 occurrences
repo-level (20 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_finish_fixture_copy` in src/agents_shipgate/cli/fixture.py:134
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 `agent_result_v1` in scripts/generate_schemas.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 `agent_result_v1` in src/agents_shipgate/ci/agent_result.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 `agent_result_v1` in src/agents_shipgate/cli/agent_result.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 `agent_result_v1` in src/agents_shipgate/cli/discovery/agent_instructions/renderers/agents_md.py:40
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 `agent_result_v1` in src/agents_shipgate/cli/discovery/agent_instructions/renderers/claude_md.py:33
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 `agent_result_v1` in src/agents_shipgate/cli/discovery/agent_instructions/renderers/cursor.py:59
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 `agent_result_v1` in src/agents_shipgate/cli/main.py:59
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 `agent_result_v1` in src/agents_shipgate/cli/mcp.py:29
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 `agent_result_v1` in src/agents_shipgate/cli/self_check.py:131
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 `agent_result_v1` in src/agents_shipgate/core/boundary_diff.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 `agent_result_v1` in src/agents_shipgate/core/codex_boundary.py:37
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 `agent_result_v1` in src/agents_shipgate/core/host_boundary.py:44
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 `agent_result_v1` in src/agents_shipgate/schemas/agent_result_v1.py:138
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 `agent_result_v1` in tests/integration/github_action/test_agent_result.py:62
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 `agent_result_v1` in tests/test_agent_mode.py:208
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 `agent_result_v1` in tests/test_agent_protocol.py:12
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 `agent_result_v1` in tests/test_mcp_server.py:54
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 `capability_request_v1` in src/agents_shipgate/schemas/preflight.py:88
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 `fp_legacy` in tests/test_baseline_status.py:188
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 `fp_old` in tests/test_tool_surface_diff.py:140
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 `known_check_ids_with_legacy` in src/agents_shipgate/checks/registry.py:44
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 `known_check_ids_with_legacy` in src/agents_shipgate/core/check_ids.py:42
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 `mcp_audit_v1` in tests/test_mcp_audit.py:40
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 `model_copy` in src/agents_shipgate/cli/detect.py:57
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 `model_copy` in src/agents_shipgate/cli/scan/inspect.py:58
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 `model_copy` in src/agents_shipgate/cli/scan/prepare.py:31
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 `model_copy` in src/agents_shipgate/cli/scan/source_loading.py:303
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 `model_copy` in src/agents_shipgate/core/baseline.py:103
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 `model_copy` in src/agents_shipgate/core/lenses/action_surface.py:593
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 `model_copy` in src/agents_shipgate/core/privacy.py:219
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 `model_copy` in src/agents_shipgate/core/risk_hints.py:117
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 `model_copy` in src/agents_shipgate/inputs/_python_framework.py:242
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 `model_copy` in src/agents_shipgate/inputs/codex_plugin.py:573
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 `model_copy` in src/agents_shipgate/skill/config.py:77
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 `model_copy` in tests/test_action_surface_diff.py:709
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 `model_copy` in tests/test_adapter_registry.py:208
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 `model_copy` in tests/test_capability_change_schema_hash_parity.py:206
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 `model_copy` in tests/test_capability_delta.py:190
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 `model_copy` in tests/test_capability_domain.py:101
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 `model_copy` in tests/test_capability_lock.py:129
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 `model_copy` in tests/test_findings.py:60
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 `model_copy` in tests/test_patches_model.py:129
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 `model_copy` in tests/test_source_provenance.py:465
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 `model_copy` in tests/test_validation_evidence.py:231
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 `report_copy` in src/agents_shipgate/cli/capability.py:49
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 `run_legacy` in tests/test_baseline_integrity.py:192
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_action_yml_status_output_marked_legacy` in tests/test_public_surface_contract.py:2058
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_canonical_risk_tags_matches_legacy` in tests/test_action_scope_domain.py:237
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_fixture_copy` in tests/test_fixture.py:106
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: build_slide_01
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:215
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_02
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:242
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_03
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:343
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_04
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:391
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_05
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:425
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_06
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:460
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_07
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:526
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_08
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:572
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_09
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:581
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_10
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:589
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_11
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:597
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_12
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:649
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_13
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:734
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_14
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:778
low System graph software Dead code conf 1.00 Possibly dead Python function: build_slide_15
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_pptx_native.py:833
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_01_cover
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:206
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_02_inflection
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:231
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_03_new_release_problem
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:305
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_04_godel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:352
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_05_fep
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:414
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_06_thesis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:489
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_07_wedge
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:545
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_08_declared
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:679
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_09_detected
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:780
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_10_workflow
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:933
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_11_phase23
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:1031
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_12_compounding
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:1097
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_13_validating
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:1178
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_14_north_star
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:1257
low System graph software Dead code conf 1.00 Possibly dead Python function: slide_15_looking_for
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
docs/decks/vc-thesis/build_deck.py:1312
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 Integrity conf 1.00 Stub function `guard_support_actions` (body is just `pass`/`return`) — benchmark/repos/adk-dynamic-toolset/agent.py:9
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `guard_support_actions` (body is just `pass`/`return`) — samples/google_adk_agent/agent.py:9
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: docs/decks/vc-thesis/build_deck.py (1429 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: harness/adoption/scorer/rules.py (1593 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: scripts/generate_schemas.py (1479 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/agents_shipgate/core/codex_boundary.py (1836 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/agents_shipgate/core/lenses/action_surface.py (1416 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_adapter_static_only.py (1364 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_evidence_packet.py (1848 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_n8n.py (1869 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_public_surface_contract.py (2127 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/ebe7b331-f652-40c0-8a51-ba27556246fb/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/ebe7b331-f652-40c0-8a51-ba27556246fb/

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.