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.

welshDog/HyperCode-V2.4

https://github.com/welshDog/HyperCode-V2.4 · scanned 2026-06-16 00:57 UTC (2 months, 1 week ago)

588 raw signals (0 security + 588 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 371 actionable findings from 1 signal source. 217 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 34.9/100 with 100.0% coverage. It contains 9394 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 588 findings — concentrated in cicd (136), security (123), quality (103). Risk profile is high: 8 critical, 132 high, 160 medium. Recommended next step: open the cicd layer findings first — that's where the highest-impact wins live.

Showing 344 of 371 actionable findings. 588 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 k8s/README.md
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
k8s/README.md:180
critical System graph security Secrets conf 1.00 3 occurrences Possible secret in reports/security/bandit-report-fixed.json
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 6496, 6541, 7065
reports/security/bandit-report-fixed.json:6496, 6541, 7065 (3 hits)
critical System graph security Secrets conf 1.00 3 occurrences Possible secret in reports/security/bandit-report.json
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 6536, 6581, 7105
reports/security/bandit-report.json:6536, 6581, 7105 (3 hits)
critical System graph security Secrets conf 1.00 Possible secret in scripts/link_discord_user.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
scripts/link_discord_user.py:152
high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/skills/hypercode-hyperfocus-builder/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.
.claude/skills/hypercode-hyperfocus-builder/SKILL.md:225 SecretsClaude instruction
high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/skills/hypercode-mcp-gateway/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.
.claude/skills/hypercode-mcp-gateway/SKILL.md:53 SecretsClaude instruction
high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/skills/hypercode-supabase/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.
.claude/skills/hypercode-supabase/SKILL.md:38 SecretsClaude instruction
high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/skills/technical-skills-audit/security-guide.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
.claude/skills/technical-skills-audit/security-guide.md:37 SecretsClaude instruction
high System graph quality Integrity conf 1.00 Blocking `httpx.get(...)` inside `async def poll_memstream_and_throttle` — agents/throttle-agent/main.py:381
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…
agents/throttle-agent/main.py:381 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `httpx.post(...)` inside `async def poll_memstream_and_throttle` — agents/throttle-agent/main.py:394
Sync I/O inside an async function blocks the event loop. While `httpx.post(...)` 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…
agents/throttle-agent/main.py:394 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `requests.get(...)` inside `async def process` — backend/app/agents/pulse.py:20
Sync I/O inside an async function blocks the event loop. While `requests.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_th…
backend/app/agents/pulse.py:20 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def check_http_health` — hyperlaunch.py:328
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` 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 asy…
hyperlaunch.py:328 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def trigger_agent_x_pipeline_scan` — hyperlaunch.py:480
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` 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 asy…
hyperlaunch.py:480 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def trigger_crew_registration_check` — hyperlaunch.py:491
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` 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 asy…
hyperlaunch.py:491 Sync io in asyncPerformance
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/broski (agents/dashboard/components/views/BROskiPulseView.tsx:23)
`agents/dashboard/components/views/BROskiPulseView.tsx:23` calls `GET /api/broski` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/broski` If this points at an external API, prefix it with `https://` so the matcher s…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/healer${path} (agents/dashboard/hooks/useHealerTelemetry.ts:48)
`agents/dashboard/hooks/useHealerTelemetry.ts:48` calls `GET /api/healer${path}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/healer/<p>` If this points at an external API, prefix it with `https://` so the matcher…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/healer/health (agents/dashboard/components/views/HealthView.tsx:74)
`agents/dashboard/components/views/HealthView.tsx:74` calls `GET /api/healer/health` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/healer/health` If this points at an external API, prefix it with `https://` so the …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/mcp/health (agents/dashboard/components/views/MCPGatewayView.tsx:20)
`agents/dashboard/components/views/MCPGatewayView.tsx:20` calls `GET /api/mcp/health` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/mcp/health` If this points at an external API, prefix it with `https://` so the ma…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/metrics/resources (dashboard/src/hooks/useResourceMetrics.ts:36)
`dashboard/src/hooks/useResourceMetrics.ts:36` calls `GET /api/metrics/resources` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/metrics/resources` If this points at an external API, prefix it with `https://` so the…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/orchestrator (agents/dashboard/components/views/HealthView.tsx:69)
`agents/dashboard/components/views/HealthView.tsx:69` calls `GET /api/orchestrator` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/orchestrator` If this points at an external API, prefix it with `https://` so the ma…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/queue/stats (agents/dashboard/hooks/useTaskVelocity.ts:29)
`agents/dashboard/hooks/useTaskVelocity.ts:29` calls `GET /api/queue/stats` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/queue/stats` If this points at an external API, prefix it with `https://` so the matcher ski…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/queue/stats (dashboard/src/hooks/useTaskVelocity.ts:29)
`dashboard/src/hooks/useTaskVelocity.ts:29` calls `GET /api/queue/stats` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/queue/stats` If this points at an external API, prefix it with `https://` so the matcher skips …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/wallet/broski/${userId} (agents/dashboard/hooks/useWallet.ts:26)
`agents/dashboard/hooks/useWallet.ts:26` calls `GET /api/wallet/broski/${userId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/wallet/broski/<p>` If this points at an external API, prefix it with `https://` so the…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/wallet/broski/${userId} (dashboard/src/hooks/useWallet.ts:26)
`dashboard/src/hooks/useWallet.ts:26` calls `GET /api/wallet/broski/${userId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/wallet/broski/<p>` If this points at an external API, prefix it with `https://` so the ma…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://hypercode-core:8000/docker/containers (dashboard-rebuild/app/components/dashboard/DockerZone.tsx:25)
`dashboard-rebuild/app/components/dashboard/DockerZone.tsx:25` calls `GET http://hypercode-core:8000/docker/containers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:8000/docker/containers` If …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://hypercode-core:8000/docker/containers (dashboard-rebuild/app/components/dashboard/DockerZone.tsx:48)
`dashboard-rebuild/app/components/dashboard/DockerZone.tsx:48` calls `GET http://hypercode-core:8000/docker/containers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:8000/docker/containers` If …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://hypercode-core:8000/docker/containers (dashboard-rebuild/app/components/dashboard/DockerZone.tsx:64)
`dashboard-rebuild/app/components/dashboard/DockerZone.tsx:64` calls `GET http://hypercode-core:8000/docker/containers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:8000/docker/containers` If …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://hypercode-core:8000/mcp/tools (dashboard-rebuild/app/components/dashboard/MCPToolBrowser.tsx:34)
`dashboard-rebuild/app/components/dashboard/MCPToolBrowser.tsx:34` calls `GET http://hypercode-core:8000/mcp/tools` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:8000/mcp/tools` If this points …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://hypercode-core:8000/missions/tasks (dashboard-rebuild/app/components/dashboard/MissionTimeline.tsx:23)
`dashboard-rebuild/app/components/dashboard/MissionTimeline.tsx:23` calls `GET http://hypercode-core:8000/missions/tasks` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:8000/missions/tasks` If t…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/mcp/tools/call (agents/dashboard/components/views/IDEView.tsx:114)
`agents/dashboard/components/views/IDEView.tsx:114` calls `POST /api/mcp/tools/call` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/mcp/tools/call` If this points at an external API, prefix it with `https://` so the…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/mcp/tools/call (agents/dashboard/components/views/IDEView.tsx:61)
`agents/dashboard/components/views/IDEView.tsx:61` calls `POST /api/mcp/tools/call` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/mcp/tools/call` If this points at an external API, prefix it with `https://` so the …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/orchestrator (agents/dashboard/components/views/IDEView.tsx:149)
`agents/dashboard/components/views/IDEView.tsx:149` calls `POST /api/orchestrator` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/orchestrator` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/orchestrator (agents/dashboard/components/views/TasksView.tsx:279)
`agents/dashboard/components/views/TasksView.tsx:279` calls `POST /api/orchestrator` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/orchestrator` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/planning (agents/dashboard/components/views/PlanningView.tsx:49)
`agents/dashboard/components/views/PlanningView.tsx:49` calls `POST /api/planning` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/planning` If this points at an external API, prefix it with `https://` so the matcher…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/user/sensory-profile (agents/dashboard/hooks/useSensoryProfile.ts:19)
`agents/dashboard/hooks/useSensoryProfile.ts:19` calls `POST /api/user/sensory-profile` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/user/sensory-profile` If this points at an external API, prefix it with `https:/…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/user/sensory-profile (dashboard/src/hooks/useSensoryProfile.ts:24)
`dashboard/src/hooks/useSensoryProfile.ts:24` calls `POST /api/user/sensory-profile` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/user/sensory-profile` If this points at an external API, prefix it with `https://` …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST http://hypercode-core:8000/docker/containers/${containerId}/restart (dashboard-rebuild/app/components/dashboard/DockerZone.tsx:60)
`dashboard-rebuild/app/components/dashboard/DockerZone.tsx:60` calls `POST http://hypercode-core:8000/docker/containers/${containerId}/restart` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:800…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST http://hypercode-core:8000/docker/containers/${containerId}/stop (dashboard-rebuild/app/components/dashboard/DockerZone.tsx:44)
`dashboard-rebuild/app/components/dashboard/DockerZone.tsx:44` calls `POST http://hypercode-core:8000/docker/containers/${containerId}/stop` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:8000/d…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST http://hypercode-core:8000/execution/execute-hc (dashboard-rebuild/app/components/dashboard/HyperCodeIDE.tsx:20)
`dashboard-rebuild/app/components/dashboard/HyperCodeIDE.tsx:20` calls `POST http://hypercode-core:8000/execution/execute-hc` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:8000/execution/execut…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST http://hypercode-core:8000/mcp/tools/${selectedTool.name}/call (dashboard-rebuild/app/components/dashboard/MCPToolBrowser.tsx:58)
`dashboard-rebuild/app/components/dashboard/MCPToolBrowser.tsx:58` calls `POST http://hypercode-core:8000/mcp/tools/${selectedTool.name}/call` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/hypercode-core:8000…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST http://localhost:8080/approvals/respond (archive/legacy/agents-dashboard-legacy/components/approval_widget.js:51)
`archive/legacy/agents-dashboard-legacy/components/approval_widget.js:51` calls `POST http://localhost:8080/approvals/respond` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:8080/approvals/respond` I…
Dangling fetchFetch
high System graph security auth conf 1.00 FastAPI DELETE `cancel_task` without auth dependency — backend/app/routes/tasks.py:193
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/routes/tasks.py:193 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_check` without auth dependency — services/hyperhealth/main.py:178
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/hyperhealth/main.py:178 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_video` without auth dependency — hyperstudio-platform/api-main.py:434
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hyperstudio-platform/api-main.py:434 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_alert_rule` without auth dependency — agents/hyper-agents/observer/main.py:276
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/observer/main.py:276 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_step` without auth dependency — agents/hyper-agents/architect/main.py:123
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/architect/main.py:123 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `agent_ping` without auth dependency — agents/agent-registry/agent_registry.py:471
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-registry/agent_registry.py:471 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `alert_webhook` without auth dependency — agents/healer/main.py:716
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/healer/main.py:716 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `alerts` without auth dependency — monitoring/alert-webhook/app.py:19
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
monitoring/alert-webhook/app.py:19 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `award_xp` without auth dependency — agents/broski-pets-bridge/main.py:557
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-pets-bridge/main.py:557 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `bind_token` without auth dependency — agents/broski-pets-bridge/main.py:566
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-pets-bridge/main.py:566 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `broski_actions` without auth dependency — agents/super-hyper-broski-agent/main.py:468
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/super-hyper-broski-agent/main.py:468 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `chat_with_agent` without auth dependency — services/agent-training/main.py:159
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/agent-training/main.py:159 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `check_and_create_error_task` without auth dependency — backend/app/routes/tasks.py:214
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/routes/tasks.py:214 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `checkout` without auth dependency — backend/app/routes/stripe.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.
backend/app/routes/stripe.py:40 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `complete_step` without auth dependency — agents/hyper-agents/architect/main.py:150
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/architect/main.py:150 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_check` without auth dependency — services/hyperhealth/app/main.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.
services/hyperhealth/app/main.py:40 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_check` without auth dependency — services/hyperhealth/main.py:154
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/hyperhealth/main.py:154 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_goal` without auth dependency — agents/hyper-agents/architect/main.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.
agents/hyper-agents/architect/main.py:92 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_task` without auth dependency — backend/app/routes/tasks.py:133
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/routes/tasks.py:133 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `design_code` without auth dependency — agents/agent-x/main.py:522
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-x/main.py:522 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `design_spec` without auth dependency — agents/agent-x/main.py:506
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-x/main.py:506 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `diagnose_service` without auth dependency — agents/healer/intelligence_endpoints.py:47
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/healer/intelligence_endpoints.py:47 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `drain_queue` without auth dependency — agents/hyper-agents/worker/main.py:217
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/worker/main.py:217 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `energy_boost` without auth dependency — agents/super-hyper-broski-agent/main.py:422
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/super-hyper-broski-agent/main.py:422 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `enqueue_task` without auth dependency — agents/hyper-agents/worker/main.py:189
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/worker/main.py:189 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `evolve_agent` without auth dependency — agents/agent-x/main.py:368
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-x/main.py:368 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute_fix` without auth dependency — agents/coderabbit-webhook/main.py:196
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/coderabbit-webhook/main.py:196 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute_smoke` without auth dependency — agents/crew-orchestrator/main.py:885
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/crew-orchestrator/main.py:885 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute` without auth dependency — agents/agent-x/main.py:185
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-x/main.py:185 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute` without auth dependency — agents/hyper-agents/architect/main.py:86
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/architect/main.py:86 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute` without auth dependency — agents/hyper-agents/observer/main.py:229
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/observer/main.py:229 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute` without auth dependency — agents/hyper-agents/worker/main.py:146
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/worker/main.py:146 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `fail_step` without auth dependency — agents/hyper-agents/architect/main.py:157
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/architect/main.py:157 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_plan` without auth dependency — backend/app/api/v1/endpoints/planning.py:33
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/v1/endpoints/planning.py:33 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_video` without auth dependency — hyperstudio-platform/api-main.py:240
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
hyperstudio-platform/api-main.py:240 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `keep_alive_agent` without auth dependency — backend/app/main.py:428
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/main.py:428 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `log_event` without auth dependency — agents/hyper-agents/observer/main.py:322
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/observer/main.py:322 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `manual_restart` without auth dependency — agents/agent-registry/agent_registry.py:481
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-registry/agent_registry.py:481 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `multi_agent_request` without auth dependency — services/agent-training/main.py:278
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/agent-training/main.py:278 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pet_brain_feed` without auth dependency — agents/broski-pets-bridge/main.py:944
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-pets-bridge/main.py:944 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pet_chat` without auth dependency — agents/broski-pets-bridge/main.py:744
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-pets-bridge/main.py:744 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pet_feed` without auth dependency — agents/broski-pets-bridge/main.py:864
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-pets-bridge/main.py:864 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `provision` without auth dependency — agents/broski-pets-bridge/main.py:516
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-pets-bridge/main.py:516 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `rebuild_agent` without auth dependency — agents/agent-x/main.py:435
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-x/main.py:435 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `receive_coderabbit_webhook` without auth dependency — agents/coderabbit-webhook/main.py:83
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/coderabbit-webhook/main.py:83 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `receive_github_webhook` without auth dependency — agents/coderabbit-webhook/main.py:164
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/coderabbit-webhook/main.py:164 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `record_metric` without auth dependency — agents/hyper-agents/observer/main.py:235
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/observer/main.py:235 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `record_metrics_batch` without auth dependency — agents/hyper-agents/observer/main.py:249
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/observer/main.py:249 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `redeem_reward` without auth dependency — agents/broski-bot/src/api/routes/economy.py:39
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-bot/src/api/routes/economy.py:39 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reset_agent` without auth dependency — agents/agent-registry/agent_registry.py:495
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-registry/agent_registry.py:495 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reset_circuit_breaker` without auth dependency — agents/healer/main.py:701
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/healer/main.py:701 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reset_circuit_breaker` without auth dependency — archive/legacy/new-fix-0.1/FIX_2_healer_main_improved.py:349
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
archive/legacy/new-fix-0.1/FIX_2_healer_main_improved.py:349 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `resolve_incident` without auth dependency — services/hyperhealth/main.py:299
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/hyperhealth/main.py:299 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `route_task` without auth dependency — agents/hyper-auto-assistant/main.py:121
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-auto-assistant/main.py:121 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `run_pipeline` without auth dependency — agents/agent-x/main.py:457
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-x/main.py:457 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `run_task` without auth dependency — agents/hyper-agents/worker/main.py:152
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-agents/worker/main.py:152 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `scan_agents` without auth dependency — agents/agent-x/main.py:484
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-x/main.py:484 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `scan` without auth dependency — agents/nemoclaw-agent/main.py:115
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/nemoclaw-agent/main.py:115 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `shutdown_agent` without auth dependency — backend/app/main.py:451
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/main.py:451 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `snapshot` without auth dependency — agents/session-snapshot/main.py:63
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/session-snapshot/main.py:63 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `spawn_agent` without auth dependency — agents/agent-factory/main.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.
agents/agent-factory/main.py:156 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `spawn_agent` without auth dependency — agents/agent-x/main.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.
agents/agent-x/main.py:314 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `spawn_agent` without auth dependency — backend/app/main.py:392
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/main.py:392 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `split_task` without auth dependency — agents/hyper-split-agent/main.py:79
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/hyper-split-agent/main.py:79 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stop_agent` without auth dependency — agents/agent-factory/main.py:242
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/agent-factory/main.py:242 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `streak_commit` without auth dependency — agents/broski-pets-bridge/main.py:600
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-pets-bridge/main.py:600 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stripe_webhook` without auth dependency — backend/app/routes/stripe.py:99
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/routes/stripe.py:99 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `throttle_state_post` without auth dependency — agents/healer/main.py:737
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/healer/main.py:737 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `throttle_tier` without auth dependency — agents/throttle-agent/main.py:967
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/throttle-agent/main.py:967 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `toggle_party_mode` without auth dependency — agents/super-hyper-broski-agent/main.py:444
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/super-hyper-broski-agent/main.py:444 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `tools_call` without auth dependency — services/mcp-rest-adapter/app.py:361
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/mcp-rest-adapter/app.py:361 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `train_agent` without auth dependency — services/agent-training/main.py:182
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/agent-training/main.py:182 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `transfer_tokens` without auth dependency — agents/broski-bot/src/api/routes/economy.py:67
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/broski-bot/src/api/routes/economy.py:67 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `trigger_graduation` without auth dependency — backend/app/api/v1/endpoints/graduate.py:71
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/api/v1/endpoints/graduate.py:71 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `trigger_heal` without auth dependency — agents/healer/main.py:710
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/healer/main.py:710 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `trigger_heal` without auth dependency — archive/legacy/new-fix-0.1/FIX_2_healer_main_improved.py:357
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
archive/legacy/new-fix-0.1/FIX_2_healer_main_improved.py:357 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `ultra_mode` without auth dependency — agents/super-hyper-broski-agent/main.py:562
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
agents/super-hyper-broski-agent/main.py:562 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_task` without auth dependency — backend/app/routes/tasks.py:163
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/routes/tasks.py:163 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 Flask mutation route `api_conversion_estimate` without `@login_required` — agents/broski-bot/_archive/Python files/mintme_integration_dashboard.py:344
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
agents/broski-bot/_archive/Python files/mintme_integration_dashboard.py:344 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_conversion_estimate` without `@login_required` — agents/broski-bot/src/integrations/mintme.py:344
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
agents/broski-bot/src/integrations/mintme.py:344 securityAuth flask unauth route
high System graph cicd CI/CD security conf 1.00 11 occurrences GitHub Action tracks a moving branch
trufflesecurity/trufflehog@main can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
9 files, 11 locations
.github/workflows/ci.yml:127, 147 (2 hits)
.github/workflows/security-comprehensive.yml:135, 147 (2 hits)
.claude/broski-discord-bot-skill/.github/workflows/ci-cd.yml:58
.github/workflows/ci-cd.yml:95
.github/workflows/docker-build.yml:117
.github/workflows/hyper-agents-ci.yml:185
.github/workflows/iac-scan.yml:67
.github/workflows/tests.yml:118
CI/CD securitySupply chainGithub actions
high System graph security security conf 1.00 Insecure pattern 'tls_verify_false' in reports/security/bandit-report.json:6506
Found a known-risky pattern (tls_verify_false). Review and replace if possible.
reports/security/bandit-report.json:6506 Tls verify false
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — archive/ide-dashboard-0.1/src/app/components/CodeEditor.tsx:75
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — archive/ide-dashboard-0.1/src/app/components/ui/chart.tsx:83
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — reports/e2e-html/trace/assets/defaultSettingsView-CJSZINFr.js:50
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — agents/01-frontend-specialist/components/UserProfile.tsx:16
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 — agents/dashboard/components/views/TasksView.tsx:215
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 — agents/dashboard/hooks/useHealerTelemetry.ts:48
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 — agents/dashboard/lib/api.ts:13
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 — agents/dashboard/scripts/verify-standalone.mjs:64
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 — dashboard-rebuild/app/lib/api-client.ts:9
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 — hyper-mission-system/client/src/main.jsx:29
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 — hyperfocus-Zone-Support-Hub-main/hyperfocuszone.com-Support-Hub--main/sw.js:68
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 — reports/e2e-html/trace/assets/defaultSettingsView-CJSZINFr.js:2
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 — reports/e2e-html/trace/index.BDwrLSGN.js:1
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 — reports/e2e-html/trace/sw.bundle.js:3
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 — reports/e2e-html/trace/uiMode.CQJ9SCIQ.js:3
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 — supabase/functions/graduate-student/index.ts:38
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/skills/hyper-context-restore/evals/evals.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/skills/hyper-context-restore/evals/evals.json VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/hypercode-agent-spawner/AGENT_TEAMS.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/skills/hypercode-agent-spawner/AGENT_TEAMS.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/hypercode-docker-ops/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.
.claude/skills/hypercode-docker-ops/SKILL.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/hypercode-frontend/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.
.claude/skills/hypercode-frontend/SKILL.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/hypercode-hypersync/EVALS.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/skills/hypercode-hypersync/EVALS.json VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/hypercode-mcp-gateway/TOOLS.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/skills/hypercode-mcp-gateway/TOOLS.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/hypercode-redis-pubsub/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.
.claude/skills/hypercode-redis-pubsub/SKILL.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/hypercode-self-improver/EVAL_EXAMPLES.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/skills/hypercode-self-improver/EVAL_EXAMPLES.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/otlp-tempo-tracing/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.
.claude/skills/otlp-tempo-tracing/SKILL.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/phase-10-tracker/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.
.claude/skills/phase-10-tracker/SKILL.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/railway-master/references/cli-cheatsheet.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/skills/railway-master/references/cli-cheatsheet.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/taste-skill/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.
.claude/skills/taste-skill/SKILL.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/technical-skills-audit/data-architecture.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/skills/technical-skills-audit/data-architecture.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/technical-skills-audit/observability-guide.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/skills/technical-skills-audit/observability-guide.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: mcp-server/mcp.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
mcp-server/mcp.json VerificationMcp config
medium System graph security Agent instructions conf 1.00 Agent instruction contains unpinned remote install: .claude/skills/railway-master/references/patterns.md
Remote install commands in agent instructions are a supply-chain risk, especially when an agent can execute shell commands.
.claude/skills/railway-master/references/patterns.md:156 Supply chainClaude instruction
medium System graph security Agent instructions conf 1.00 Agent instruction contains unpinned remote install: .claude/skills/railway-master/SKILL.md
Remote install commands in agent instructions are a supply-chain risk, especially when an agent can execute shell commands.
.claude/skills/railway-master/SKILL.md:193 Supply chainClaude instruction
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 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 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 frontend Frontend quality conf 1.00 Custom React Flow node registered without explicit width/height — agents/dashboard/components/canvas/HyperCanvas.tsx:54
When you register a custom node type via `nodeTypes`, the RFNode object you build must include `width` and `height` props. Without them, MiniMap renders ZERO mini-nodes for that type and `fitView` underestimates the bounds (cuts off lane labels, etc.). Add `width: …, height: …` to the node object. …
Fq rfnode no dims
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: agent-base:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
agents/coder/Dockerfile:2 containersPinned dependencies
medium System graph hardware Security conf 1.00 Dockerfile runs as root: discord-bot/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docs/notes/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: hyper-mission-system/client/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: hyper-mission-system/server/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: hyperstudio-platform/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: quantum-compiler/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: services/agent-spawner/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: services/hypercode-mcp-server/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: services/hyperhealth/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: services/mcp-rest-adapter/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: services/model-gateway/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: templates/mcp-plugin-python/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: tools/roundtrip-worker/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 62 occurrences GitHub Action is tag-pinned rather than SHA-pinned
docker/setup-buildx-action@v3 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 60 locations
.github/workflows/docker-push.yml:26, 29, 36, 48, 71, 74, 81, 101, +4 more (12 hits)
.github/workflows/docker.yml:47, 55, 63, 67, 79, 96, 108, 137, +1 more (9 hits)
.github/workflows/ci-cd.yml:54, 57, 65, 76, 104, 119, 144 (7 hits)
.github/workflows/docker-build.yml:23, 26, 47, 50, 68, 71, 125 (7 hits)
.github/workflows/ci.yml:104, 107, 116, 139, 159 (5 hits)
.github/workflows/iac-scan.yml:27, 37, 78, 176 (4 hits)
.github/workflows/security-comprehensive.yml:57, 78, 157, 163 (4 hits)
.github/workflows/tests.yml:70, 127, 140, 143 (4 hits)
CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 4 occurrences 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.
4 files, 4 locations
.github/workflows/ci-cd.yml
.github/workflows/docker-build.yml
.github/workflows/docker-push.yml
.github/workflows/docker.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in hyper-mission-system/server/server.js:88
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
hyper-mission-system/server/server.js:88 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in quantum-compiler/main.go:113
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
quantum-compiler/main.go:113 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in quantum-compiler/server.js:91
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
quantum-compiler/server.js:91 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in reports/e2e-html/trace/sw.bundle.js:1
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
reports/e2e-html/trace/sw.bundle.js:1 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in archive/ide-dashboard-0.1/src/app/components/CodeEditor.tsx:75
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
archive/ide-dashboard-0.1/src/app/components/CodeEditor.tsx:75 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in archive/ide-dashboard-0.1/src/app/components/ui/chart.tsx:83
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
archive/ide-dashboard-0.1/src/app/components/ui/chart.tsx:83 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in reports/e2e-html/index.html:58
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
reports/e2e-html/index.html:58 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in reports/e2e-html/trace/assets/defaultSettingsView-CJSZINFr.js:50
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
reports/e2e-html/trace/assets/defaultSettingsView-CJSZINFr.js:50 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in archive/legacy/agents-dashboard-legacy/components/approval_widget.js:86
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
archive/legacy/agents-dashboard-legacy/components/approval_widget.js:86 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in archive/legacy/agents-dashboard-legacy/index.html:299
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
archive/legacy/agents-dashboard-legacy/index.html:299 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in broski-business-agents/BROski Business Agents.html:872
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
broski-business-agents/BROski Business Agents.html:872 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in broski-command-centre.html:1035
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
broski-command-centre.html:1035 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in quantum-compiler/index.html:296
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
quantum-compiler/index.html:296 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in reports/e2e-html/index.html:57
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
reports/e2e-html/index.html:57 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in reports/e2e-html/trace/assets/codeMirrorModule-a5XoALAZ.js:31
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
reports/e2e-html/trace/assets/codeMirrorModule-a5XoALAZ.js:31 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in reports/e2e-html/trace/assets/defaultSettingsView-CJSZINFr.js:49
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
reports/e2e-html/trace/assets/defaultSettingsView-CJSZINFr.js:49 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in reports/e2e-html/trace/index.html:35
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
reports/e2e-html/trace/index.html:35 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in agents/dashboard/scripts/start-standalone.mjs:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
agents/dashboard/scripts/start-standalone.mjs:1 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in agents/dashboard/scripts/verify-standalone.mjs:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
agents/dashboard/scripts/verify-standalone.mjs:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in scripts/e2e/start-dashboard.mjs:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
scripts/e2e/start-dashboard.mjs:1 Node child process
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in k8s/patch_deployments.py:6
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
k8s/patch_deployments.py:6 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in scripts/comprehensive_health_check.py:8
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
scripts/comprehensive_health_check.py:8 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in scripts/health_check_controller.py:19
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
scripts/health_check_controller.py:19 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in reports/security/bandit-report.json:6158
Found a known-risky pattern (weak_hash). Review and replace if possible.
reports/security/bandit-report.json:6158 Weak hash
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in reports/security/trivy-super-hyper-broski-agent.json:7306
Found a known-risky pattern (weak_hash). Review and replace if possible.
reports/security/trivy-super-hyper-broski-agent.json:7306 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — .github/scripts/prom-regression.py:9
`urllib.request.urlopen(...)` 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 — agents/broski-bot/_archive/Python files/broski_main.py:123
`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 — agents/broski-bot/src/main.py:126
`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 — agents/session-snapshot/snapshot_writer.py:12
`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 — agents/shared/tools/deployer.py:60
`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 — backend/app/core/agent_spawner.py:61
`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 — cli/main.py:62
`requests.post(...)` 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 — hyperlaunch.py:583
`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 — hyperstudio-platform/core-video-generator.py:286
`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 — k8s/patch_deployments.py:55
`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/link_discord_user.py:57
`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_test.py:23
`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 — tools/precommit_duplicate_check.py:11
`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 80 placeholder/mock markers across 43 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph network Security conf 1.00 Privileged port 2 in use
Port 2 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/workflows/ci-security.yml Ports
medium System graph network Security conf 1.00 Privileged port 3 in use
Port 3 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/workflows/security-comprehensive.yml Ports
medium System graph network Security conf 1.00 Privileged port 6 in use
Port 6 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/workflows/trivy-weekly.yml Ports
low System graph quality Integrity conf 1.00 236 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `AGENTS_COMPOSE`, `AGENT_API_KEY`, `AGENT_API_KEY_FILE`, `AGENT_DESCRIPTION`, `AGENT_HEALTH_THRESHOLD`, `AGENT_MAX_ITER`, `AGENT_MODEL`, `AGENT_NAME` + 228 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 787 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 hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: alpine:3.19
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
tools/roundtrip-worker/Dockerfile:11 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: alpine:3.20
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
quantum-compiler/Dockerfile:5 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: golang:1.21-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
tools/roundtrip-worker/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: golang:1.22-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
quantum-compiler/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: nginx:1.27-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
hyper-mission-system/client/Dockerfile:10 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 7 occurrences Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
4 files, 7 locations
agents/dashboard/Dockerfile:4, 10, 25 (3 hits)
agents/architect/Dockerfile:5, 19 (2 hits)
hyper-mission-system/client/Dockerfile:2
hyper-mission-system/server/Dockerfile:1
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 2 occurrences Docker base image is tag-pinned but not digest-pinned: node:20.20.2-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
lines 1, 18
dashboard-rebuild/Dockerfile:1, 18 (2 hits)
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
hyperstudio-platform/Dockerfile:4 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 47 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.11-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
12 files, 24 locations
agents/01-frontend-specialist/Dockerfile:7, 29 (2 hits)
agents/02-backend-specialist/Dockerfile:7, 29 (2 hits)
agents/03-database-architect/Dockerfile:7, 29 (2 hits)
agents/04-qa-engineer/Dockerfile:7, 29 (2 hits)
agents/05-devops-engineer/Dockerfile:7, 29 (2 hits)
agents/06-security-engineer/Dockerfile:7, 29 (2 hits)
agents/07-system-architect/Dockerfile:7, 29 (2 hits)
agents/08-project-strategist/Dockerfile:7, 29 (2 hits)
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.11-slim-bullseye
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
services/model-gateway/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 6 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.11-slim-trixie
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
3 files, 6 locations
agents/hyper-agents/architect/Dockerfile:2, 19 (2 hits)
agents/hyper-agents/observer/Dockerfile:2, 19 (2 hits)
agents/hyper-agents/worker/Dockerfile:2, 19 (2 hits)
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 2 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.11.8-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
lines 6, 26
templates/agent-python/Dockerfile:6, 26 (2 hits)
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 7 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.12-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
5 files, 7 locations
Hyper-Agents-Box/hyper-agents-box/docker/Dockerfile:4, 18 (2 hits)
backend/Dockerfile:2, 37 (2 hits)
agents/base-agent/Dockerfile:3
services/agent-spawner/Dockerfile:1
services/hyperhealth/Dockerfile:1
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.13-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
templates/mcp-plugin-python/Dockerfile:1 containersPinned dependencies
low System graph cicd CI/CD security conf 1.00 58 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 43 locations
.github/workflows/hyper-agents-gate2-e2e.yml:45, 63, 96, 136, 156, 208, 223 (7 hits)
.github/workflows/hyper-agents-ci.yml:31, 88, 149, 171, 200 (5 hits)
.github/workflows/trivy-weekly.yml:80, 103, 118, 121, 176 (5 hits)
.github/workflows/accessibility.yml:16, 19, 24, 84 (4 hits)
.github/workflows/ci-js.yml:40, 43, 87, 102 (4 hits)
.github/workflows/quality-gate.yml:78, 119, 135, 154 (4 hits)
.github/workflows/iac-scan.yml:54, 96, 221 (3 hits)
.github/workflows/security-comprehensive.yml:63, 84, 118 (3 hits)
CI/CD securitySupply chainGithub actions
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 11 places
Functions with the same first-5-line body hash: agents/01-frontend-specialist/base_agent.py:create, agents/09-tips-tricks-writer/base_agent.py:create, agents/03-database-architect/base_agent.py:create, agents/base-agent/agent.py:create This is *the* AI-coder failure mode (4× more duplication in vi…
duplicatesduplication
low System graph quality Integrity conf 1.00 8 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: hypercode.py:get_token, backend/hypercode.py:get_token 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 separate.
8 occurrences
repo-level (8 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 11 occurrences Near-duplicate function bodies in 8 places
Functions with the same first-5-line body hash: agents/01-frontend-specialist/base_agent.py:info, agents/09-tips-tricks-writer/base_agent.py:info, agents/03-database-architect/base_agent.py:info, agents/06-security-engineer/base_agent.py:info This is *the* AI-coder failure mode (4× more duplicatio…
11 occurrences
repo-level (11 hits)
duplicatesduplication
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: dashboard-source/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.
dashboard-source/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `list_objects_v2` in backend/app/core/storage.py:102
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 `list_objects_v2` in backend/verify_minio.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 `test_apiVersion_is_v2` in k8s/helm/tests/test_helm_chart.py:119
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_chart_api_version_is_v2` in k8s/tests/test_helm_chart.py:73
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 `unstable_legacy` in reports/e2e-html/trace/assets/defaultSettingsView-CJSZINFr.js: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 cicd CI/CD security conf 1.00 package.json defines install-time lifecycle scripts
preinstall/install/postinstall/prepare scripts execute during dependency installation. Review them carefully for network calls, obfuscation, shell execution, or credential access.
package.json CI/CD securitySupply chainNpm
low System graph software Dead code conf 1.00 Possibly dead Python function: add_intelligence_endpoints
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agents/healer/intelligence_endpoints.py:34
low System graph software Dead code conf 1.00 Possibly dead Python function: heal_task
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agents/healer/main.py:492
low System graph software Dead code conf 1.00 Possibly dead Python function: load_all
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agents/healer/life_plans.py:67
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_bandit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/scan/generate-dashboard.py:26
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_coverage
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/scan/generate-dashboard.py:209
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_gitleaks
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/scan/generate-dashboard.py:82
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_licenses
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/scan/generate-dashboard.py:186
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_npm_audit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/scan/generate-dashboard.py:137
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_pip_audit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/scan/generate-dashboard.py:108
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_semgrep
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/scan/generate-dashboard.py:55
low System graph software Dead code conf 1.00 Possibly dead Python function: parse_trivy
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/scan/generate-dashboard.py:156
low System graph software Dead code conf 1.00 Possibly dead Python function: record_decision
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agents/shared/project_memory.py:40
low System graph software Dead code conf 1.00 Possibly dead Python function: record_training
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
trae-agent-bridge.py:210
low System graph software Dead code conf 1.00 Possibly dead Python function: setup_mcp_routes
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agents/shared/mcp_mixin.py:21
low System graph software Dead code conf 1.00 Possibly dead Python function: start_mape_k
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agents/healer/mape_k_bootstrap.py:25
low System graph software Dead code conf 1.00 Possibly dead Python function: step_briefing_generation
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ops/hyper_brain_ops.py:163
low System graph software Dead code conf 1.00 Possibly dead Python function: step_discord_report
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ops/hyper_brain_ops.py:269
low System graph software Dead code conf 1.00 Possibly dead Python function: step_github_sync
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ops/hyper_brain_ops.py:106
low System graph software Dead code conf 1.00 Possibly dead Python function: step_health_check
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ops/hyper_brain_ops.py:65
low System graph software Dead code conf 1.00 Possibly dead Python function: step_vault_commit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ops/hyper_brain_ops.py:210
low System graph software Dead code conf 1.00 Possibly dead Python function: template_agent_registry_story
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/jira/templates.py:4
low System graph software Dead code conf 1.00 Possibly dead Python function: template_architect_epic
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/jira/templates.py:33
low System graph software Dead code conf 1.00 Possibly dead Python function: template_bug_example
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/jira/templates.py:47
low System graph software Dead code conf 1.00 Possibly dead Python function: template_event_bus_task
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/jira/templates.py:19
low System graph software Dead code conf 1.00 Possibly dead Python function: update_tech_stack
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agents/shared/project_memory.py:13
low System graph software Dead code conf 1.00 Possibly dead Python function: upload_design_file
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/python_connection_code.py:39
low System graph frontend Frontend quality conf 1.00 React Flow <Controls> without dark theming — agents/dashboard/components/canvas/HyperCanvas.tsx:96
`<Controls>` ships with white buttons. Override `.react-flow__controls` and `.react-flow__controls-button` in your stylesheet or pass a styled wrapper. Why: P1 in CHECKLIST.md — vendor defaults bleed light through. Rule id: fq.controls.no-bg
Fq controls no bg
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 frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — agents/architect/src/main.ts:8
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 — agents/dashboard/components/ApprovalModal.tsx:39
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 — agents/dashboard/components/CognitiveUplink.tsx:138
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 — archive/legacy/agents-dashboard-legacy/components/approval_widget.js:19
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 — cli/index.js:81
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 — dashboard/tests/e2e/dashboard.spec.ts:87
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 — hyper-mission-system/server/server.js:447
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 — hyperfocus-Zone-Support-Hub-main/hyperfocuszone.com-Support-Hub--main/js/main.js:16
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 — hyperfocus-Zone-Support-Hub-main/hyperfocuszone.com-Support-Hub--main/sw.js:19
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 — memstream/src/logger.ts:71
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 — memstream/src/memstream.ts:193
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 — quantum-compiler/server.js:187
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 — reports/e2e-html/trace/sw.bundle.js:1
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 — reports/e2e-html/trace/uiMode.CQJ9SCIQ.js:4
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 — supabase/functions/provision-access/index.ts:140
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 — supabase/functions/sync-tokens-to-v24/index.ts:119
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/e2e/accessibility.spec.ts:15
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 quality Integrity conf 1.00 Stub function `new_feature` (body is just `pass`/`return`) — agents/crew-orchestrator/langgraph_state_management.py:228
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 `setup_logging` (body is just `pass`/`return`) — agents/base-agent/agent.py:28
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 `setup_logging` (body is just `pass`/`return`) — agents/business/project-strategist/src/base_agent.py:77
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: GET /
`hyperfocus_dashboard.py` declares `GET /` 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 /agents/health
`Hyper-Agents-Box/hyper-agents-box/main.py` declares `GET /agents/health` 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 /alerts
`agents/hyper-agents/observer/main.py` declares `GET /alerts` 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 /alerts/history
`agents/hyper-agents/observer/main.py` declares `GET /alerts/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 /all-metrics
`agents/healer/intelligence_endpoints.py` declares `GET /all-metrics` 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 /capabilities
`agents/coderabbit-webhook/main.py` declares `GET /capabilities` 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 /circuit-breaker/status
`archive/legacy/new-fix-0.1/FIX_2_healer_main_improved.py` declares `GET /circuit-breaker/status` 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 documenti…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /circuit-breaker/{agent_name}
`agents/healer/main.py` declares `GET /circuit-breaker/{agent_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

Showing first 300 of 344. Refine filters or use the findings page for deep search.

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/9a9895ab-0fb4-4600-8c1a-10d7c7977f54/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/9a9895ab-0fb4-4600-8c1a-10d7c7977f54/

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.