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.

chrishadley1983/discord-messenger

https://github.com/chrishadley1983/discord-messenger · scanned 2026-06-17 01:49 UTC (1 month, 1 week ago)

266 raw signals (0 security + 266 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -5.6 (diff) · 248 actionable findings from 1 signal source. 18 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
Scan summary Repository scanned at 71.1/100 with 88.9% coverage. It contains 5607 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 266 findings — concentrated in quality (124), security (68), api (51). Risk profile is high: 1 critical, 68 high, 53 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 233 of 248 actionable findings. 266 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.

critical System graph security Secrets conf 1.00 Possible secret in domains/peterbot/wsl_config/skills/security-monitor/SKILL.md
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
domains/peterbot/wsl_config/skills/security-monitor/SKILL.md:202
high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: domains/peterbot/wsl_config/skills/healthera-prescriptions/SKILL.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.
domains/peterbot/wsl_config/skills/healthera-prescriptions/SKILL.md:134 SecretsSkill file
high System graph quality Integrity conf 1.00 Blocking `httpx.get(...)` inside `async def check_and_send_alerts` — domains/peterbot/japan_alerts.py:309
Sync I/O inside an async function blocks the event loop. While `httpx.get(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
domains/peterbot/japan_alerts.py:309 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `httpx.get(...)` inside `async def check_and_send_alerts` — domains/peterbot/japan_alerts.py:494
Sync I/O inside an async function blocks the event loop. While `httpx.get(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
domains/peterbot/japan_alerts.py:494 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `httpx.get(...)` inside `async def check_and_send_alerts` — domains/peterbot/japan_alerts.py:503
Sync I/O inside an async function blocks the event loop. While `httpx.get(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
domains/peterbot/japan_alerts.py:503 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `httpx.get(...)` inside `async def check_and_send_alerts` — domains/peterbot/japan_alerts.py:512
Sync I/O inside an async function blocks the event loop. While `httpx.get(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
domains/peterbot/japan_alerts.py:512 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def _keepa_get` — mcp_servers/keepa_mcp.py:82
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
mcp_servers/keepa_mcp.py:82 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def restart_service_endpoint` — peter_dashboard/app.py:1067
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
peter_dashboard/app.py:1067 Sync io in asyncPerformance
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/hadley/proxy/openapi.json (peter_dashboard/static/js/api-explorer.js:157)
`peter_dashboard/static/js/api-explorer.js:157` calls `GET /api/hadley/proxy/openapi.json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/hadley/proxy/openapi.json` If this points at an external API, prefix it with …
Dangling fetchFetch
high System graph security auth conf 1.00 FastAPI DELETE `delete_card` without auth dependency — hadley_api/vault_routes.py:167
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/vault_routes.py:167 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_category` without auth dependency — hadley_api/task_routes.py:315
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:315 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_subscription` without auth dependency — peter_dashboard/api/subscriptions.py:454
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
peter_dashboard/api/subscriptions.py:454 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_task` without auth dependency — hadley_api/task_routes.py:706
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:706 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_comment` without auth dependency — hadley_api/task_routes.py:868
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:868 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_expense` without auth dependency — hadley_api/japan_routes.py:1055
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:1055 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_sentences` without auth dependency — hadley_api/spelling_routes.py:128
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spelling_routes.py:128 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_spellings` without auth dependency — hadley_api/spelling_routes.py:40
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spelling_routes.py:40 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `bulk_reorder_tasks` without auth dependency — hadley_api/task_routes.py:988
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:988 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `change_task_status` without auth dependency — hadley_api/task_routes.py:725
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:725 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `check_purchase_allowed` without auth dependency — hadley_api/browser_routes.py:183
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/browser_routes.py:183 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `claude_extract` without auth dependency — hadley_api/claude_routes.py:119
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/claude_routes.py:119 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_category` without auth dependency — hadley_api/task_routes.py:238
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:238 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_task` without auth dependency — hadley_api/task_routes.py:582
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:582 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `end_browser_session` without auth dependency — hadley_api/browser_routes.py:257
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/browser_routes.py:257 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute_action` without auth dependency — hadley_api/browser_routes.py:314
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/browser_routes.py:314 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pause` without auth dependency — hadley_api/spotify_routes.py:111
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:111 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `photobook_diary` without auth dependency — hadley_api/japan_routes.py:899
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:899 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `photobook_highlight` without auth dependency — hadley_api/japan_routes.py:861
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:861 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `photobook_upload` without auth dependency — hadley_api/japan_routes.py:785
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:785 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `play_playlist` without auth dependency — hadley_api/spotify_routes.py:262
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:262 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `play_similar` without auth dependency — hadley_api/spotify_routes.py:220
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:220 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `play_uri` without auth dependency — hadley_api/spotify_routes.py:88
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:88 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `play` without auth dependency — hadley_api/spotify_routes.py:66
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:66 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `previous` without auth dependency — hadley_api/spotify_routes.py:138
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:138 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `queue` without auth dependency — hadley_api/spotify_routes.py:97
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:97 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `refresh_cache` without auth dependency — hadley_api/brain_routes.py:259
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/brain_routes.py:259 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reorder_task` without auth dependency — hadley_api/task_routes.py:968
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:968 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `resume` without auth dependency — hadley_api/spotify_routes.py:120
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:120 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `save_card` without auth dependency — hadley_api/vault_routes.py:92
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/vault_routes.py:92 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `schedule_heartbeat` without auth dependency — hadley_api/task_routes.py:793
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:793 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `seek` without auth dependency — hadley_api/spotify_routes.py:156
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:156 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `send_alerts_now` without auth dependency — hadley_api/japan_routes.py:1043
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:1043 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `send_digest` without auth dependency — hadley_api/japan_routes.py:583
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:583 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_repeat` without auth dependency — hadley_api/spotify_routes.py:174
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:174 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_shuffle` without auth dependency — hadley_api/spotify_routes.py:165
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:165 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_sim_date` without auth dependency — hadley_api/japan_routes.py:692
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:692 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_sim_time` without auth dependency — hadley_api/japan_routes.py:983
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:983 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_volume` without auth dependency — hadley_api/spotify_routes.py:147
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:147 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `skip` without auth dependency — hadley_api/spotify_routes.py:129
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:129 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `start_browser_session` without auth dependency — hadley_api/browser_routes.py:201
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/browser_routes.py:201 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `test_alerts` without auth dependency — hadley_api/japan_routes.py:995
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:995 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `transfer` without auth dependency — hadley_api/spotify_routes.py:192
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/spotify_routes.py:192 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `trigger_job_run` without auth dependency — peter_dashboard/api/jobs.py:805
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
peter_dashboard/api/jobs.py:805 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upsert_subscription` without auth dependency — peter_dashboard/api/subscriptions.py:414
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
peter_dashboard/api/subscriptions.py:414 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `voice_converse` without auth dependency — hadley_api/voice_routes.py:129
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/voice_routes.py:129 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `voice_listen` without auth dependency — hadley_api/voice_routes.py:87
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/voice_routes.py:87 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `voice_speak` without auth dependency — hadley_api/voice_routes.py:108
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/voice_routes.py:108 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `whatsapp_webhook` without auth dependency — hadley_api/whatsapp_webhook.py:402
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/whatsapp_webhook.py:402 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `whatsapp_webhook` without auth dependency — hadley_api/whatsapp_webhook.py:403
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/whatsapp_webhook.py:403 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_category` without auth dependency — hadley_api/task_routes.py:280
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:280 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_day_plan` without auth dependency — hadley_api/japan_routes.py:135
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/japan_routes.py:135 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_subscription` without auth dependency — peter_dashboard/api/subscriptions.py:432
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
peter_dashboard/api/subscriptions.py:432 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_task_categories` without auth dependency — hadley_api/task_routes.py:931
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:931 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_task` without auth dependency — hadley_api/task_routes.py:654
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hadley_api/task_routes.py:654 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'eval_used' in hadley_api/main.py:5176
Found a known-risky pattern (eval_used). Review and replace if possible.
hadley_api/main.py:5176 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in openapi.json:1
Found a known-risky pattern (eval_used). Review and replace if possible.
openapi.json:1 Eval used
high System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in domains/second_brain/audit_report.py:691
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
domains/second_brain/audit_report.py:691 Subprocess shell true
high System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in hadley_api/claude_routes.py:180
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
hadley_api/claude_routes.py:180 Subprocess shell true
high System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in hadley_api/japan_train_status.py:35
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
hadley_api/japan_train_status.py:35 Subprocess shell true
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — peter-channel/src/index.ts:166
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — peter_dashboard/static/js/app.js:6257
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/build-feature.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/commands/build-feature.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/code-review.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/commands/code-review.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/tech-debt.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/commands/tech-debt.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/verify-done.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/commands/verify-done.md VerificationClaude instruction
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: docs/phase8a/skills/schedule-today/SKILL.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.
docs/phase8a/skills/schedule-today/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: docs/phase8b/phase8b/skills/ev-charging/SKILL.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.
docs/phase8b/phase8b/skills/ev-charging/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: docs/phase8b/phase8b/skills/smart-home/SKILL.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.
docs/phase8b/phase8b/skills/smart-home/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: docs/phase8b/phase8b/skills/traffic-check/SKILL.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.
docs/phase8b/phase8b/skills/traffic-check/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: docs/phase8b/phase8b/skills/weather-forecast/SKILL.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.
docs/phase8b/phase8b/skills/weather-forecast/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: docs/phase8b/phase8b/skills/weather/SKILL.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.
docs/phase8b/phase8b/skills/weather/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/amazon-purchases/SKILL.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.
domains/peterbot/wsl_config/skills/amazon-purchases/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/book-recommender/SKILL.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.
domains/peterbot/wsl_config/skills/book-recommender/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/chrome-cdp/SKILL.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.
domains/peterbot/wsl_config/skills/chrome-cdp/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/cost-digest/SKILL.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.
domains/peterbot/wsl_config/skills/cost-digest/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/daily-batch/SKILL.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.
domains/peterbot/wsl_config/skills/daily-batch/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/daily-thoughts/SKILL.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.
domains/peterbot/wsl_config/skills/daily-thoughts/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/directions/SKILL.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.
domains/peterbot/wsl_config/skills/directions/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/drive-search/SKILL.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.
domains/peterbot/wsl_config/skills/drive-search/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/ev-charging/SKILL.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.
domains/peterbot/wsl_config/skills/ev-charging/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/fitness-dashboard/SKILL.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.
domains/peterbot/wsl_config/skills/fitness-dashboard/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/fitness-program-start/SKILL.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.
domains/peterbot/wsl_config/skills/fitness-program-start/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/flight-prices/SKILL.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.
domains/peterbot/wsl_config/skills/flight-prices/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/hb-add-inventory/SKILL.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.
domains/peterbot/wsl_config/skills/hb-add-inventory/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/heartbeat/SKILL.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.
domains/peterbot/wsl_config/skills/heartbeat/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/instagram-processing/SKILL.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.
domains/peterbot/wsl_config/skills/instagram-processing/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/life-admin-dashboard/SKILL.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.
domains/peterbot/wsl_config/skills/life-admin-dashboard/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/meal-plan-generator/SKILL.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.
domains/peterbot/wsl_config/skills/meal-plan-generator/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/morning-briefing/SKILL.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.
domains/peterbot/wsl_config/skills/morning-briefing/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/pocket-money-weekly/SKILL.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.
domains/peterbot/wsl_config/skills/pocket-money-weekly/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/property-valuation/SKILL.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.
domains/peterbot/wsl_config/skills/property-valuation/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/schedule-today/SKILL.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.
domains/peterbot/wsl_config/skills/schedule-today/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/school-pickup/SKILL.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.
domains/peterbot/wsl_config/skills/school-pickup/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/school-run/SKILL.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.
domains/peterbot/wsl_config/skills/school-run/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: domains/peterbot/wsl_config/skills/tutor-email-parser/SKILL.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.
domains/peterbot/wsl_config/skills/tutor-email-parser/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license, ci, lockfile. 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.
Repo hardeningGenerated repo pattern
medium System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci, lockfile. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
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 'direct_innerhtml_assignment' in hadley_api/main.py:8317
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
hadley_api/main.py:8317 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in peter_dashboard/app.py:4925
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
peter_dashboard/app.py:4925 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in peter_dashboard/static/js/api-explorer.js:48
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
peter_dashboard/static/js/api-explorer.js:48 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in peter_dashboard/static/js/app.js:385
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
peter_dashboard/static/js/app.js:385 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in peter_dashboard/static/js/mind-map.js:120
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
peter_dashboard/static/js/mind-map.js:120 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in peter_dashboard/static/js/app.js:4096
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
peter_dashboard/static/js/app.js:4096 Insert adjacent html
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — domains/claude_code/tools.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 — domains/peterbot/wsl_config/sync.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 — domains/prolific/chrome.py:3
`subprocess.Popen(...)` 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 — hadley_api/voice_engine.py:52
`urllib.request.urlretrieve(...)` 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 — peter_dashboard/service_manager.py:488
`subprocess.Popen(...)` 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 — start_single.py:74
`subprocess.Popen(...)` 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 55 placeholder/mock markers across 15 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 Integrity conf 1.00 99 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `AI_USAGE_SERVICE_KEY`, `ANTHROPIC_ADMIN_KEY`, `APPDATA`, `AUDIBLE_AUTH_FILE`, `AUDIBLE_MCP_DIR`, `BACKFILL_DAYS`, `CHRIS_WHATSAPP_INSTANCE`, `CLAUDE_MEM_DB` + 91 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't bre…
config drift
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 973 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 quality Tests conf 1.00 Low test-to-source ratio
60 tests / 343 src (ratio 0.17).
low System graph quality Integrity conf 1.00 17 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: mcp_servers/financial_data_mcp.py:manage_subscription_add, mcp_servers/financial_data/subscriptions.py:add_subscription This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or …
17 occurrences
repo-level (17 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: hadley_api/main.py:extract_text, hadley_api/main.py:extract_text, hadley_api/main.py:extract_text This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're s…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: extract-channel/package.json
`package.json` declares dependencies, but no same-directory npm/pnpm/yarn/bun lockfile was found. Generated projects without lockfiles are less reproducible and harder to secure-scan precisely.
extract-channel/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: jobs-channel-sonnet/package.json
`package.json` declares dependencies, but no same-directory npm/pnpm/yarn/bun lockfile was found. Generated projects without lockfiles are less reproducible and harder to secure-scan precisely.
jobs-channel-sonnet/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_send_to_claude_code_v2` in domains/peterbot/scheduler.py:823
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 `drive_copy` in hadley_api/main.py:4384
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 `pr_old` in domains/peterbot/morning_quality_report.py:149
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 `router_v2` in bot.py:45
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 `router_v2` in domains/peterbot/__init__.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 `router_v2` in domains/peterbot/config.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 quality Integrity conf 1.00 Old/deprecated-named symbol `router_v2` in domains/peterbot/costs.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 `router_v2` in domains/peterbot/data_fetchers.py:4015
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 `router_v2` in domains/peterbot/fallback_stats.py:1
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 `router_v2` in domains/peterbot/kimi_provider.py:27
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 `router_v2` in domains/peterbot/memory.py:5
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 `router_v2` in domains/peterbot/reminders/executor.py:90
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 `Router_v2` in domains/peterbot/response/sanitiser.py:3
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 `router_v2` in domains/second_brain/seed/adapters/channel_conversations.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 `router_v2` in hadley_api/cost_routes.py:1
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 `router_v2` in hadley_api/peter_routes/attachment_download.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 `router_v2` in hadley_api/peter_routes/build_context.py:5
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 `router_v2` in hadley_api/peter_routes/cost_log.py:3
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 `router_v2` in peter-channel/src/index.ts:454
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 `router_v2` in peter_dashboard/app.py:104
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 `router_v2` in whatsapp-channel/src/index.ts:330
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: accept_price_change
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/subscriptions.py:176
low System graph software Dead code conf 1.00 Possibly dead Python function: add_subscription
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/subscriptions.py:37
low System graph software Dead code conf 1.00 Possibly dead Python function: balance_monitor
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
jobs/balance_monitor.py:408
low System graph software Dead code conf 1.00 Possibly dead Python function: cancel_subscription
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/subscriptions.py:140
low System graph software Dead code conf 1.00 Possibly dead Python function: dismiss_recurring_alert
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/subscriptions.py:148
low System graph software Dead code conf 1.00 Possibly dead Python function: executor_wrapper
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
bot.py:1295
low System graph software Dead code conf 1.00 Possibly dead Python function: finance_count
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/supabase_client.py:86
low System graph software Dead code conf 1.00 Possibly dead Python function: health_check_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
jobs/claude_code_health.py:396
low System graph software Dead code conf 1.00 Possibly dead Python function: incremental_seed_import
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
jobs/incremental_seed.py:280
low System graph software Dead code conf 1.00 Possibly dead Python function: list_subscriptions
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/subscriptions.py:184
low System graph software Dead code conf 1.00 Possibly dead Python function: month_range
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/config.py:94
low System graph software Dead code conf 1.00 Possibly dead Python function: post_busy
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
bot.py:1049
low System graph software Dead code conf 1.00 Possibly dead Python function: post_interim
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
bot.py:1019
low System graph software Dead code conf 1.00 Possibly dead Python function: public_count
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/supabase_client.py:92
low System graph software Dead code conf 1.00 Possibly dead Python function: public_rpc
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
mcp_servers/financial_data/supabase_client.py:77
low System graph software Dead code conf 1.00 Possibly dead Python function: register_health_check
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
jobs/claude_code_health.py:389
low System graph software Dead code conf 1.00 Possibly dead Python function: school_pickup_report
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
jobs/school_run.py:508
low System graph software Dead code conf 1.00 Possibly dead Python function: token_updated_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
setup_ring_auth.py:17
low System graph software Dead code conf 1.00 Possibly dead Python function: youtube_feed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
jobs/youtube_feed.py:322
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — peter_dashboard/static/js/app.js:239
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scripts/check_memory_queue.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — tests/test_amazon_flow.js:40
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — tests/test_healthera.js:68
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /goals/{goal_id}
`hadley_api/accountability_routes.py` declares `DELETE /goals/{goal_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /recipients/groups/{name}
`hadley_api/whatsapp_webhook.py` declares `DELETE /recipients/groups/{name}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /routes/{route_id}
`hadley_api/flight_routes.py` declares `DELETE /routes/{route_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /collections
`hadley_api/vinted_routes.py` declares `GET /collections` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /dashboard
`hadley_api/fitness_routes.py` declares `GET /dashboard` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /deals
`hadley_api/flight_routes.py` declares `GET /deals` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /domains
`hadley_api/browser_routes.py` declares `GET /domains` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /fetch
`hadley_api/browser_routes.py` declares `GET /fetch` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /goals
`hadley_api/accountability_routes.py` declares `GET /goals` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /goals/{goal_id}
`hadley_api/accountability_routes.py` declares `GET /goals/{goal_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /goals/{goal_id}/milestones
`hadley_api/accountability_routes.py` declares `GET /goals/{goal_id}/milestones` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes i…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /goals/{goal_id}/progress
`hadley_api/accountability_routes.py` declares `GET /goals/{goal_id}/progress` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /habit
`hadley_api/accountability_routes.py` declares `GET /habit` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /history
`hadley_api/flight_routes.py` declares `GET /history` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /journal
`hadley_api/accountability_routes.py` declares `GET /journal` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /journal/history
`hadley_api/accountability_routes.py` declares `GET /journal/history` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /limits
`hadley_api/browser_routes.py` declares `GET /limits` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /mood
`hadley_api/accountability_routes.py` declares `GET /mood` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /mood/history
`hadley_api/accountability_routes.py` declares `GET /mood/history` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /prices
`hadley_api/flight_routes.py` declares `GET /prices` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /programme
`hadley_api/fitness_routes.py` declares `GET /programme` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /recipients
`hadley_api/whatsapp_webhook.py` declares `GET /recipients` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /report
`hadley_api/accountability_routes.py` declares `GET /report` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /routes
`hadley_api/flight_routes.py` declares `GET /routes` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /screenshot
`hadley_api/browser_routes.py` declares `GET /screenshot` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /session/{session_id}
`hadley_api/browser_routes.py` declares `GET /session/{session_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /summary
`hadley_api/flight_routes.py` declares `GET /summary` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /text
`hadley_api/browser_routes.py` declares `GET /text` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /today
`hadley_api/fitness_routes.py` declares `GET /today` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /weekly-review
`hadley_api/fitness_routes.py` declares `GET /weekly-review` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PATCH /goals/{goal_id}
`hadley_api/accountability_routes.py` declares `PATCH /goals/{goal_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /action
`hadley_api/browser_routes.py` declares `POST /action` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /auto-update
`hadley_api/accountability_routes.py` declares `POST /auto-update` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /check-now
`hadley_api/flight_routes.py` declares `POST /check-now` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /goals
`hadley_api/accountability_routes.py` declares `POST /goals` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /goals/{goal_id}/milestones
`hadley_api/accountability_routes.py` declares `POST /goals/{goal_id}/milestones` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /goals/{goal_id}/progress
`hadley_api/accountability_routes.py` declares `POST /goals/{goal_id}/progress` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /habit
`hadley_api/accountability_routes.py` declares `POST /habit` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /journal
`hadley_api/accountability_routes.py` declares `POST /journal` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /limits/check
`hadley_api/browser_routes.py` declares `POST /limits/check` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /mood
`hadley_api/accountability_routes.py` declares `POST /mood` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /recipients/groups
`hadley_api/whatsapp_webhook.py` declares `POST /recipients/groups` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /routes
`hadley_api/flight_routes.py` declares `POST /routes` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /scan-month
`hadley_api/flight_routes.py` declares `POST /scan-month` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /send
`hadley_api/whatsapp_webhook.py` declares `POST /send` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /send-voice
`hadley_api/whatsapp_webhook.py` declares `POST /send-voice` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /session/end
`hadley_api/browser_routes.py` declares `POST /session/end` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /session/start
`hadley_api/browser_routes.py` declares `POST /session/start` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /webhook
`hadley_api/whatsapp_webhook.py` declares `POST /webhook` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /webhook/{event_type:path}
`hadley_api/whatsapp_webhook.py` declares `POST /webhook/{event_type:path}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: bot.py (1648 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compile_tabelog.py (1156 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: domains/peterbot/data_fetchers.py (4758 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: domains/peterbot/scheduler.py (1835 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: domains/second_brain/seed/adapters/travel.py (1292 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: hadley_api/japan_routes.py (1243 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: hadley_api/main.py (9978 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: peter_dashboard/app.py (7434 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: peter_dashboard/static/js/app.js (9996 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/5e212db3-5a6f-48e4-937a-9478d3b7fa38/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/5e212db3-5a6f-48e4-937a-9478d3b7fa38/

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.