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.
186 of your 286 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 28.8s · analysis 12.39s · 28.5 MB · GitHub API rate-limit (preflight)

bytedance/deer-flow

https://github.com/bytedance/deer-flow · scanned 2026-06-05 08:31 UTC (5 days, 19 hours ago) · 10 languages

964 raw signals (266 security + 698 graph) 11/13 scanners ran 68th percentile · Python · large (100-500K LoC) System graph score 51 (higher by 30)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 19 hours ago · v2 · 421 actionable findings from 2 signal sources. 193 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 40.0 0.15 6.00
security_score 100.0 0.25 25.00
testing_score 100.0 0.20 20.00
documentation_score 100.0 0.15 15.00
practices_score 65.0 0.15 9.75
code_quality 57.0 0.10 5.70
Overall 1.00 81.5
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade A- (82/100). Dimensions: security 100, maintainability 40. 266 findings (52 security). 167,631 lines analyzed.

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

high Security checks quality Quality conf 1.00 ✓ Repobility 7 occurrences [MINED107] Missing import: `http` used but not imported: The file uses `http.something(...)` but never imports `http`. This raises NameError at runtime the first time the line executes.
Add `import http` at the top of the file.
7 files, 7 locations
backend/app/channels/manager.py:1076
backend/packages/harness/deerflow/agents/memory/summarization_hook.py:27
backend/packages/harness/deerflow/agents/middlewares/loop_detection_middleware.py:316
backend/packages/harness/deerflow/agents/middlewares/memory_middleware.py:101
backend/packages/harness/deerflow/agents/middlewares/uploads_middleware.py:242
skills/public/skill-creator/eval-viewer/generate_review.py:343
skills/public/video-generation/scripts/generate.py:54
critical Security checks security Crypto conf 1.00 [SEC039] Plaintext-equivalent password hash — unsalted single-pass digest: Single-pass digest of a password is cryptographically strong as a hash, but is rainbow-table-attackable when used for passwords: there's no salt and no key-stretching. Attackers with the hash database can crack 90%+ of common passwords offline in hours. CWE-916 (use of password hash without computational effort).
Use a purpose-built password hash: - Python: passlib.hash.argon2.hash(password) - Python: bcrypt.hashpw(password.encode(), bcrypt.gensalt()) - Python: hashlib.pbkdf2_hmac('sha256', password, salt, 600000) - PHP: password_hash($password, PASSWORD_ARGON2ID) - Node.js: argon2.hash(password) …
backend/app/gateway/auth/password.py:29
critical Security checks cicd CI/CD security conf 0.98 Compose service mounts the Docker socket
Avoid mounting docker.sock. Use a narrow proxy, rootless build service, or provider-native deployment credentials.
docker/docker-compose.yaml:64 CI/CD securitycontainers
critical System graph security Secrets conf 1.00 4 occurrences Possible secret in frontend/src/core/i18n/locales/en-US.ts
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 488, 489, 490, 496
frontend/src/core/i18n/locales/en-US.ts:488, 489, 490, 496 (4 hits)
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /threads/:thread_id/artifacts/::...artifact_path/route.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
frontend/src/app/mock/api/threads/[thread_id]/artifacts/[[...artifact_path]]/route.ts:6
low Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
3 files, 3 locations
backend/app/channels/store.py:67
backend/packages/harness/deerflow/tools/builtins/update_agent_tool.py:58
scripts/setup_wizard.py:159
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED012] Curl Pipe Bash: curl ... | sh / bash — runs unverified network code.
Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context.
scripts/check.sh:47
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self._get` used but never assigned in __init__: Method `get_repo_info` of class `GitHubAPI` reads `self._get`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self._get = <default>` in __init__, or add a class-level default.
2 files, 25 locations
skills/public/github-deep-research/scripts/github_api.py:90, 95, 107, 111, 117, 126, 130, 149, +12 more (20 hits)
skills/public/skill-creator/eval-viewer/generate_review.py:333, 344, 345, 346, 347 (5 hits)
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED110] Blocking call `input` inside async function `main`: `input` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making progress.
Use the async equivalent: `aiohttp` instead of `requests`, `asyncio.sleep` instead of `time.sleep`, `aiofiles` instead of `open`.
backend/debug.py:125
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED110] Blocking call `time.sleep` inside async function `create_sandbox`: `time.sleep` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making progress.
Use the async equivalent: `aiohttp` instead of `requests`, `asyncio.sleep` instead of `time.sleep`, `aiofiles` instead of `open`.
docker/provisioner/app.py:491
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /api/sandboxes/{sandbox_id} has no auth: Handler `destroy_sandbox` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
docker/provisioner/app.py:506
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /memory has no auth: Handler `clear_memory` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/memory.py:182
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /{thread_id}/runs/{run_id}/feedback has no auth: Handler `delete_run_feedback` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/feedback.py:94
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI DELETE /{thread_id}/runs/{run_id}/feedback/{feedback_id} has no auth: Handler `delete_feedback` is registered with router/app.delete(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/feedback.py:171
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /api/sandboxes has no auth: Handler `create_sandbox` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
docker/provisioner/app.py:434
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /change-password has no auth: Handler `change_password` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/auth.py:334
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /initialize has no auth: Handler `initialize_admin` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/auth.py:464
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /logout has no auth: Handler `logout` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/auth.py:327
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /memory/facts has no auth: Handler `create_memory_fact_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/memory.py:199
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /memory/reload has no auth: Handler `reload_memory` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/memory.py:162
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /register has no auth: Handler `register` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/auth.py:306
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /stream has no auth: Handler `stateless_stream` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/runs.py:36
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /wait has no auth: Handler `stateless_wait` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/runs.py:61
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /{thread_id}/runs/{run_id}/feedback has no auth: Handler `create_feedback` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/feedback.py:114
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI PUT /mcp/config has no auth: Handler `update_mcp_configuration` is registered with router/app.put(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/mcp.py:198
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI PUT /{thread_id}/runs/{run_id}/feedback has no auth: Handler `upsert_feedback` is registered with router/app.put(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
backend/app/gateway/routers/feedback.py:63
high Security checks software dependencies conf 0.90 ✓ Repobility 5 occurrences [MINED118] Dockerfile FROM `python:3.12-slim-bookworm` not pinned by digest: `FROM python:3.12-slim-bookworm` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM python:3.12-slim-bookworm@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
3 files, 5 locations
backend/Dockerfile:11, 73 (2 hits)
frontend/Dockerfile:10, 38 (2 hits)
docker/provisioner/Dockerfile:1
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 42 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
10 files, 42 locations
.github/workflows/container.yaml:22, 50, 69, 97 (8 hits)
.github/workflows/e2e-tests.yml:30, 33, 58 (6 hits)
.github/workflows/lint-check.yml:16, 19, 38, 41 (6 hits)
.github/workflows/pr-triage.yml:32, 108, 133 (6 hits)
.github/workflows/backend-blocking-io-tests.yml:30, 33 (4 hits)
.github/workflows/backend-unit-tests.yml:24, 27 (4 hits)
.github/workflows/frontend-unit-tests.yml:24, 27 (3 hits)
.github/workflows/label-sync.yml:29 (2 hits)
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 8 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `astral-sh/setup-uv` pinned to mutable ref `@v3`: `uses: astral-sh/setup-uv@v3` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA …
4 files, 8 locations
.github/workflows/backend-blocking-io-tests.yml:38 (2 hits)
.github/workflows/backend-unit-tests.yml:32 (2 hits)
.github/workflows/label-sync.yml:32 (2 hits)
.github/workflows/lint-check.yml:24 (2 hits)
CI/CD securitySupply chainGitHub Actions
high Security checks security auth conf 0.83 Secret-like setting is echoed into a password input value
Never prefill secret fields with stored values. Show a masked status such as configured/not configured, require explicit rotation to replace the value, and return the raw key only once at creation time.
frontend/src/app/(auth)/login/page.tsx:168
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def create_sandbox` — docker/provisioner/app.py:491
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
docker/provisioner/app.py:491 Sync io in asyncPerformance
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/auth/me (frontend/src/core/auth/AuthProvider.tsx:64)
`frontend/src/core/auth/AuthProvider.tsx:64` calls `GET /api/v1/auth/me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/me` If this points at an external API, prefix it with `https://` so the matcher skips i…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/auth/setup-status (frontend/src/app/(auth)/login/page.tsx:74)
`frontend/src/app/(auth)/login/page.tsx:74` calls `GET /api/v1/auth/setup-status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/setup-status` If this points at an external API, prefix it with `https://` so …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/auth/setup-status (frontend/src/app/(auth)/setup/page.tsx:39)
`frontend/src/app/(auth)/setup/page.tsx:39` calls `GET /api/v1/auth/setup-status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/setup-status` If this points at an external API, prefix it with `https://` so …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/auth/change-password (frontend/src/app/(auth)/setup/page.tsx:116)
`frontend/src/app/(auth)/setup/page.tsx:116` calls `POST /api/v1/auth/change-password` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/change-password` 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/v1/auth/change-password (frontend/src/components/workspace/settings/account-settings-page.tsx:41)
`frontend/src/components/workspace/settings/account-settings-page.tsx:41` calls `POST /api/v1/auth/change-password` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/change-password` If this points at an extern…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/auth/initialize (frontend/src/app/(auth)/setup/page.tsx:75)
`frontend/src/app/(auth)/setup/page.tsx:75` calls `POST /api/v1/auth/initialize` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/initialize` 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/v1/auth/logout (frontend/src/core/auth/AuthProvider.tsx:101)
`frontend/src/core/auth/AuthProvider.tsx:101` calls `POST /api/v1/auth/logout` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/logout` If this points at an external API, prefix it with `https://` so the match…
Dangling fetchFetch
high System graph security auth conf 1.00 FastAPI DELETE `clear_memory` without auth dependency — backend/app/gateway/routers/memory.py:175
`@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/gateway/routers/memory.py:175 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_agent` without auth dependency — backend/app/gateway/routers/agents.py:410
`@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/gateway/routers/agents.py:410 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_custom_skill` without auth dependency — backend/app/gateway/routers/skills.py:191
`@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/gateway/routers/skills.py:191 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_feedback` without auth dependency — backend/app/gateway/routers/feedback.py:169
`@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/gateway/routers/feedback.py:169 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_memory_fact_endpoint` without auth dependency — backend/app/gateway/routers/memory.py:216
`@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/gateway/routers/memory.py:216 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_run_feedback` without auth dependency — backend/app/gateway/routers/feedback.py:92
`@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/gateway/routers/feedback.py:92 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_thread_data` without auth dependency — backend/app/gateway/routers/threads.py:212
`@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/gateway/routers/threads.py:212 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_uploaded_file` without auth dependency — backend/app/gateway/routers/uploads.py:355
`@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/gateway/routers/uploads.py:355 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `destroy_sandbox` without auth dependency — docker/provisioner/app.py:505
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
docker/provisioner/app.py:505 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `patch_thread` without auth dependency — backend/app/gateway/routers/threads.py:348
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/gateway/routers/threads.py:348 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_memory_fact_endpoint` without auth dependency — backend/app/gateway/routers/memory.py:235
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/gateway/routers/memory.py:235 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_run` without auth dependency — backend/app/gateway/routers/thread_runs.py:224
`@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/gateway/routers/thread_runs.py:224 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `change_password` without auth dependency — backend/app/gateway/routers/auth.py:333
`@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/gateway/routers/auth.py:333 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_agent_endpoint` without auth dependency — backend/app/gateway/routers/agents.py:191
`@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/gateway/routers/agents.py:191 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_feedback` without auth dependency — backend/app/gateway/routers/feedback.py:112
`@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/gateway/routers/feedback.py:112 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_memory_fact_endpoint` without auth dependency — backend/app/gateway/routers/memory.py:192
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/gateway/routers/memory.py:192 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_run` without auth dependency — backend/app/gateway/routers/thread_runs.py:139
`@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/gateway/routers/thread_runs.py:139 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_sandbox` without auth dependency — docker/provisioner/app.py:433
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
docker/provisioner/app.py:433 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_thread` without auth dependency — backend/app/gateway/routers/threads.py:246
`@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/gateway/routers/threads.py:246 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_suggestions` without auth dependency — backend/app/gateway/routers/suggestions.py:98
`@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/gateway/routers/suggestions.py:98 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `get_thread_history` without auth dependency — backend/app/gateway/routers/threads.py:577
`@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/gateway/routers/threads.py:577 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `import_memory` without auth dependency — backend/app/gateway/routers/memory.py:275
`@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/gateway/routers/memory.py:275 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `initialize_admin` without auth dependency — backend/app/gateway/routers/auth.py:463
`@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/gateway/routers/auth.py:463 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `install_skill` without auth dependency — backend/app/gateway/routers/skills.py:103
`@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/gateway/routers/skills.py:103 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reload_memory` without auth dependency — backend/app/gateway/routers/memory.py:155
`@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/gateway/routers/memory.py:155 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `restart_channel` without auth dependency — backend/app/gateway/routers/channels.py:37
`@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/gateway/routers/channels.py:37 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `rollback_custom_skill` without auth dependency — backend/app/gateway/routers/skills.py:234
`@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/gateway/routers/skills.py:234 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `search_assistants` without auth dependency — backend/app/gateway/routers/assistants_compat.py:88
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/gateway/routers/assistants_compat.py:88 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `search_threads` without auth dependency — backend/app/gateway/routers/threads.py:311
`@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/gateway/routers/threads.py:311 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stateless_stream` without auth dependency — backend/app/gateway/routers/runs.py:35
`@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/gateway/routers/runs.py:35 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stateless_wait` without auth dependency — backend/app/gateway/routers/runs.py:60
`@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/gateway/routers/runs.py:60 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stream_existing_run` without auth dependency — backend/app/gateway/routers/thread_runs.py:287
`@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/gateway/routers/thread_runs.py:287 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stream_run` without auth dependency — backend/app/gateway/routers/thread_runs.py:147
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
backend/app/gateway/routers/thread_runs.py:147 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `update_thread_state` without auth dependency — backend/app/gateway/routers/threads.py:487
`@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/gateway/routers/threads.py:487 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_files` without auth dependency — backend/app/gateway/routers/uploads.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.
backend/app/gateway/routers/uploads.py:189 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `wait_run` without auth dependency — backend/app/gateway/routers/thread_runs.py:175
`@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/gateway/routers/thread_runs.py:175 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_agent` without auth dependency — backend/app/gateway/routers/agents.py:259
`@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/gateway/routers/agents.py:259 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_custom_skill` without auth dependency — backend/app/gateway/routers/skills.py:154
`@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/gateway/routers/skills.py:154 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_mcp_configuration` without auth dependency — backend/app/gateway/routers/mcp.py:192
`@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/gateway/routers/mcp.py:192 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_skill` without auth dependency — backend/app/gateway/routers/skills.py:304
`@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/gateway/routers/skills.py:304 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_user_profile` without auth dependency — backend/app/gateway/routers/agents.py:382
`@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/gateway/routers/agents.py:382 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `upsert_feedback` without auth dependency — backend/app/gateway/routers/feedback.py:61
`@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/gateway/routers/feedback.py:61 securityAuth fastapi unauth mutation
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them.
high Security checks security auth conf 0.74 [AUC002] Low visible authorization coverage in route inventory: Only 11.1% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence.
Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes.
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /memory/:...path/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/memory/[...path]/route.ts:43
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /memory/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/memory/route.ts:33
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /memory/:...path/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/memory/[...path]/route.ts:29
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /memory/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/memory/route.ts:29
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /threads/:thread_id/artifacts/::...artifact_path/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/mock/api/threads/[thread_id]/artifacts/[[...artifact_path]]/route.ts:6
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: PATCH /memory/:...path/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/memory/[...path]/route.ts:50
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /memory/:...path/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/api/memory/[...path]/route.ts:36
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /threads/search/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
frontend/src/app/mock/api/threads/search/route.ts:16
low Security checks quality Error handling conf 1.00 3 occurrences [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
3 files, 3 locations
backend/app/channels/slack.py:145
backend/packages/harness/deerflow/runtime/serialization.py:30
backend/packages/harness/deerflow/tools/builtins/invoke_acp_agent_tool.py:197
medium Security checks software Open redirect conf 1.00 [SEC046] Client-side open redirect — window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030.
Validate the URL is same-origin or on an explicit allowlist before assignment: const u = new URL(serverUrl, location.href); if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return; location.assign(u); Even better: have the server return a path (/checkout/done) instead of a full …
frontend/src/core/api/fetcher.ts:84
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
backend/packages/harness/deerflow/tools/sync.py:27
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
backend/app/gateway/routers/suggestions.py:50
high Security checks quality Quality conf 0.72 Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
docker/docker-compose.yaml:7
low Security checks quality Error handling conf 0.55 ✓ Repobility 25 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
7 files, 25 locations
scripts/doctor.py:68, 229, 242, 269, 280, 334, 375, 437, +3 more (11 hits)
skills/public/github-deep-research/scripts/github_api.py:98, 121, 260, 270, 282, 325 (6 hits)
skills/public/skill-creator/scripts/init_skill.py:217, 232, 259 (3 hits)
backend/debug.py:89, 160 (2 hits)
scripts/wizard/writer.py:264
skills/public/skill-creator/scripts/package_skill.py:106
skills/public/skill-creator/scripts/run_eval.py:223
Error handlingquality
high Security checks quality Quality conf 0.74 Codex auth.json is read or copied without visible secret-file hardening
Use the platform credential store where possible. If auth files must be touched, enforce 0600 permissions, avoid backups in the repo/workspace, redact logs, and document rotation if the file is exposed.
backend/packages/harness/deerflow/models/credential_loader.py:9
high Security checks cicd CI/CD security conf 0.82 3 occurrences Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
3 files, 3 locations
backend/Dockerfile:73
docker/provisioner/Dockerfile:1
frontend/Dockerfile:38
CI/CD securitycontainers
high Security checks quality Quality conf 0.74 15 occurrences Frontend API reference is not matched by discovered backend routes
Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore.
8 files, 15 locations
frontend/next.config.js:37, 48, 56 (3 hits)
frontend/src/app/(auth)/login/page.tsx:74, 97, 98 (3 hits)
frontend/src/app/(auth)/setup/page.tsx:39, 75, 116 (3 hits)
frontend/src/app/api/memory/route.ts:30, 34 (2 hits)
frontend/scripts/save-demo.js:11
frontend/src/app/workspace/layout.tsx:46
frontend/src/components/workspace/settings/account-settings-page.tsx:41
frontend/src/core/auth/AuthProvider.tsx:64
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
backend/packages/harness/deerflow/agents/middlewares/sandbox_audit_middleware.py:32
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — frontend/src/components/ai-elements/code-block.tsx:115
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 — frontend/scripts/save-demo.js:14
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 — frontend/src/app/(auth)/login/page.tsx:107
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 — frontend/src/app/api/memory/[...path]/route.ts:17
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 — frontend/src/app/api/memory/route.ts:17
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 — frontend/src/app/workspace/chats/[thread_id]/page.tsx: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 Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — frontend/src/components/workspace/input-box.tsx:408
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 — frontend/src/core/agents/api.ts:39
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 — frontend/src/core/api/feedback.ts:17
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 — frontend/src/core/api/fetcher.ts:50
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 — frontend/src/core/artifacts/loader.ts:22
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 — frontend/src/core/mcp/api.ts:7
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 — frontend/src/core/memory/api.ts:84
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 — frontend/src/core/models/api.ts: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 — frontend/src/core/skills/api.ts:7
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 — frontend/src/core/threads/hooks.ts:915
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 — frontend/src/core/threads/static-demo.ts:56
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 — frontend/src/core/uploads/api.ts:54
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 — skills/public/chart-visualization/scripts/generate.js:46
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 hardware Security conf 1.00 Dockerfile runs as root: backend/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: docker/provisioner/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: frontend/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 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/container.yaml CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in frontend/src/components/ai-elements/code-block.tsx:115
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
frontend/src/components/ai-elements/code-block.tsx:115 Dangerous innerhtml
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — backend/packages/harness/deerflow/community/infoquest/infoquest_client.py:167
`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 — scripts/sync_labels.py:59
`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 — skills/public/image-generation/scripts/generate.py:68
`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 — skills/public/skill-creator/scripts/run_eval.py:85
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — skills/public/video-generation/scripts/generate.py:36
`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
low Security checks cicd CI/CD security conf 0.72 .dockerignore misses sensitive defaults
Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.56 3 occurrences Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
lines 45, 64, 118
docker/docker-compose.yaml:45, 64, 118 (3 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 3 occurrences Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
lines 45, 64, 118
docker/docker-compose.yaml:45, 64, 118 (3 hits)
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.72 Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
backend/Dockerfile:27 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 11 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
11 files, 11 locations
backend/app/gateway/routers/thread_runs.py:115
backend/packages/harness/deerflow/agents/middlewares/todo_middleware.py:253
backend/packages/harness/deerflow/community/firecrawl/tools.py:32
backend/packages/harness/deerflow/runtime/journal.py:77
backend/packages/harness/deerflow/runtime/runs/store/base.py:67
frontend/src/app/api/memory/route.ts:1
frontend/src/app/blog/tags/[tag]/page.tsx:29
frontend/src/app/workspace/chats/[thread_id]/page.tsx:76
duplicationquality
low System graph quality Integrity conf 1.00 57 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANTHROPIC_AUTH_TOKEN`, `ANTHROPIC_BILLING_HEADER`, `AUTH_JWT_SECRET`, `AUTH_TRUSTED_PROXIES`, `CI`, `CLAUDE_CODE_CREDENTIALS_PATH`, `CLAUDE_CODE_CUSTOM_OAUTH_URL`, `CLAUDE_CODE_OAUTH_TOKEN` + 49 more. Add them (with a placeholder/comment) to .env.…
config drift
low System graph quality Maintenance conf 1.00 65 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 2 occurrences Docker base image is tag-pinned but not digest-pinned: node: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.
lines 10, 38
frontend/Dockerfile:10, 38 (2 hits)
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 3 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.12-slim-bookworm
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
2 files, 3 locations
backend/Dockerfile:11, 73 (2 hits)
docker/provisioner/Dockerfile:1
containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/eslint.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/playwright.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/postcss.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/prettier.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/public/demo/threads/7cfa5f8f-a2f8-47ad-acbd-da7137baf990/user-data/outputs/script.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/components/ai-elements/connection.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/components/ui/aurora-text.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/components/ui/spotlight-card.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/components/workspace/chats/chat-box.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/components/workspace/settings/about-content.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/en/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/en/application/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/en/harness/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/en/introduction/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/en/posts/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/en/reference/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/en/reference/model-providers/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/en/tutorials/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/zh/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/zh/application/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/zh/harness/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/zh/introduction/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/zh/posts/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/zh/reference/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/zh/reference/model-providers/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/content/zh/tutorials/_meta.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/core/models/types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/src/env.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/e2e/agent-chat.spec.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/e2e/chat.spec.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/e2e/landing.spec.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/e2e/sidebar.spec.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/e2e/thread-history-mermaid.spec.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/e2e/thread-history.spec.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/api/stream-mode.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/artifacts/preview.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/clipboard.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/messages/usage-model.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/messages/usage.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/reasoning-trigger.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/settings/local.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/streamdown/mermaid.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/streamdown/plugins.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/tasks/subtask-result.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/threads/api.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/threads/token-usage.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/threads/utils.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/uploads/file-validation.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/tests/unit/core/uploads/prompt-input-files.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: frontend/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 15 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: scripts/sandbox_memory_profile.py:collect_process_samples, scripts/sandbox_memory_profile.py:collect 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'r…
15 occurrences
repo-level (15 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: backend/packages/harness/deerflow/config/tracing_config.py:is_configured, backend/packages/harness/deerflow/config/tracing_config.py:is_configured, backend/packages/harness/deerflow/config/tracing_config.py:is_configured This is *the* AI-coder failur…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: backend/packages/harness/deerflow/community/infoquest/tools.py:web_search_tool, backend/packages/harness/deerflow/community/tavily/tools.py:web_search_tool, backend/packages/harness/deerflow/community/exa/tools.py:web_search_tool, backend/packages/har…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: backend/packages/harness/deerflow/community/infoquest/tools.py:web_fetch_tool, backend/packages/harness/deerflow/community/tavily/tools.py:web_fetch_tool, backend/packages/harness/deerflow/community/exa/tools.py:web_fetch_tool, backend/packages/harnes…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_pre_hash_v2` in backend/app/gateway/auth/password.py:27
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `aiplatform_v1` in backend/packages/harness/deerflow/agents/middlewares/safety_termination_detectors.py:156
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 `config_copy` in backend/tests/test_custom_agent.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 `core_v1` in docker/provisioner/app.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 `fact_old` in backend/tests/test_memory_updater.py:703
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `files_upload_v2` in backend/app/channels/slack.py:165
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 `legacy_backup` in backend/scripts/migrate_user_isolation.py:153
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/app/gateway/routers/mcp.py:79
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/packages/harness/deerflow/agents/middlewares/loop_detection_middleware.py:488
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/packages/harness/deerflow/agents/middlewares/safety_finish_reason_middleware.py:155
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/packages/harness/deerflow/agents/middlewares/token_usage_middleware.py:311
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/packages/harness/deerflow/agents/middlewares/tool_call_metadata.py:50
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/packages/harness/deerflow/agents/middlewares/tool_output_budget_middleware.py:316
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/packages/harness/deerflow/models/mindie_provider.py:56
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/packages/harness/deerflow/models/patched_mimo.py:47
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/packages/harness/deerflow/models/patched_minimax.py:95
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/tests/test_mcp_config_secrets.py:295
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in backend/tests/test_safety_finish_reason_middleware.py:356
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 `no_backup` in scripts/load_memory_sample.py:64
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 `register_p2_im_message_receive_v1` in backend/app/channels/feishu.py:184
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 `stored_old` in backend/tests/test_run_manager.py:630
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_needs_rehash_returns_false_for_v2` in backend/tests/test_auth.py:76
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_serialize_pydantic_v2` in backend/tests/test_serialization.py:67
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_snapshot_returns_copy` in backend/tests/test_subagent_token_collector.py:106
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_thread_dir_no_user_id_falls_back_to_legacy` in backend/tests/test_paths_user_isolation.py:108
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: bind_tools
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/scripts/e2e_safety_termination_demo.py:45
low System graph software Dead code conf 1.00 Possibly dead Python function: bind_tools
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/packages/harness/deerflow/models/openai_codex_provider.py:418
low System graph software Dead code conf 1.00 Possibly dead Python function: call_with_persistent_session
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/packages/harness/deerflow/mcp/tools.py:130
low System graph software Dead code conf 1.00 Possibly dead Python function: decorator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/gateway/authz.py:237
low System graph software Dead code conf 1.00 Possibly dead Python function: dep
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/gateway/deps.py:191
low System graph software Dead code conf 1.00 Possibly dead Python function: do_GET
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/public/skill-creator/eval-viewer/generate_review.py:332
low System graph software Dead code conf 1.00 Possibly dead Python function: do_POST
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/public/skill-creator/eval-viewer/generate_review.py:361
low System graph software Dead code conf 1.00 Possibly dead Python function: down_load
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/channels/feishu.py:389
low System graph software Dead code conf 1.00 Possibly dead Python function: fake_create_chat_model
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/scripts/e2e_safety_termination_demo.py:101
low System graph software Dead code conf 1.00 Possibly dead Python function: log_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/public/skill-creator/eval-viewer/generate_review.py:382
low System graph software Dead code conf 1.00 Possibly dead Python function: peek_current_app_config
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/packages/harness/deerflow/config/app_config.py:439
low System graph software Dead code conf 1.00 Possibly dead Python function: print_error
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/wizard/ui.py:78
low System graph software Dead code conf 1.00 Possibly dead Python function: print_section
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/wizard/ui.py:64
low System graph software Dead code conf 1.00 Possibly dead Python function: reset_extensions_config
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/packages/harness/deerflow/config/extensions_config.py:264
low System graph software Dead code conf 1.00 Possibly dead Python function: run_single_query
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/public/skill-creator/scripts/run_eval.py:35
low System graph software Dead code conf 1.00 Possibly dead Python function: search_issues
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/public/github-deep-research/scripts/github_api.py:192
low System graph software Dead code conf 1.00 Possibly dead Python function: set_memory_config
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/packages/harness/deerflow/config/memory_config.py:74
low System graph software Dead code conf 1.00 Possibly dead Python function: set_stream_bridge_config
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/packages/harness/deerflow/config/stream_bridge_config.py:37
low System graph software Dead code conf 1.00 Possibly dead Python function: set_summarization_config
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/packages/harness/deerflow/config/summarization_config.py:84
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/public/demo/threads/5aa47db1-d0cb-4eb9-aea5-3dac1b371c5a/user-data/outputs/jiangsu-football/js/main.js:531
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 — frontend/src/core/api/api-client.ts:88
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 — frontend/src/core/config/index.ts:22
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 — skills/public/chart-visualization/scripts/generate.js:149
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 `create` (body is just `pass`/`return`) — backend/packages/harness/deerflow/persistence/thread_meta/base.py:29
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 `put` (body is just `pass`/`return`) — backend/packages/harness/deerflow/runtime/runs/store/base.py:19
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: DELETE /api/sandboxes/{sandbox_id}
`docker/provisioner/app.py` declares `DELETE /api/sandboxes/{sandbox_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /memory
`backend/app/gateway/routers/memory.py` declares `DELETE /memory` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /memory/facts/{fact_id}
`backend/app/gateway/routers/memory.py` declares `DELETE /memory/facts/{fact_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /skills/custom/{skill_name}
`backend/app/gateway/routers/skills.py` declares `DELETE /skills/custom/{skill_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 consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /{thread_id}
`backend/app/gateway/routers/threads.py` declares `DELETE /{thread_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /{thread_id}/runs/{run_id}/feedback
`backend/app/gateway/routers/feedback.py` declares `DELETE /{thread_id}/runs/{run_id}/feedback` 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…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /{thread_id}/runs/{run_id}/feedback/{feedback_id}
`backend/app/gateway/routers/feedback.py` declares `DELETE /{thread_id}/runs/{run_id}/feedback/{feedback_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/sandboxes
`docker/provisioner/app.py` declares `GET /api/sandboxes` 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 /api/sandboxes/{sandbox_id}
`docker/provisioner/app.py` declares `GET /api/sandboxes/{sandbox_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /callback/{provider}
`backend/app/gateway/routers/auth.py` declares `GET /callback/{provider}` 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 /mcp/config
`backend/app/gateway/routers/mcp.py` declares `GET /mcp/config` 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 /me
`backend/app/gateway/routers/auth.py` declares `GET /me` 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 /memory
`backend/app/gateway/routers/memory.py` declares `GET /memory` 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 /memory/config
`backend/app/gateway/routers/memory.py` declares `GET /memory/config` 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 /memory/export
`backend/app/gateway/routers/memory.py` declares `GET /memory/export` 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 /memory/status
`backend/app/gateway/routers/memory.py` declares `GET /memory/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 documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /oauth/{provider}
`backend/app/gateway/routers/auth.py` declares `GET /oauth/{provider}` 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 /setup-status
`backend/app/gateway/routers/auth.py` declares `GET /setup-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 documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /skills
`backend/app/gateway/routers/skills.py` declares `GET /skills` 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 /skills/custom
`backend/app/gateway/routers/skills.py` declares `GET /skills/custom` 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 /skills/custom/{skill_name}
`backend/app/gateway/routers/skills.py` declares `GET /skills/custom/{skill_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…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /skills/custom/{skill_name}/history
`backend/app/gateway/routers/skills.py` declares `GET /skills/custom/{skill_name}/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 …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /skills/{skill_name}
`backend/app/gateway/routers/skills.py` declares `GET /skills/{skill_name}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{run_id}/feedback
`backend/app/gateway/routers/runs.py` declares `GET /{run_id}/feedback` 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 /{run_id}/messages
`backend/app/gateway/routers/runs.py` declares `GET /{run_id}/messages` 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 /{thread_id}/runs/{run_id}/feedback
`backend/app/gateway/routers/feedback.py` declares `GET /{thread_id}/runs/{run_id}/feedback` 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 wh…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{thread_id}/runs/{run_id}/feedback/stats
`backend/app/gateway/routers/feedback.py` declares `GET /{thread_id}/runs/{run_id}/feedback/stats` 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 document…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PATCH /memory/facts/{fact_id}
`backend/app/gateway/routers/memory.py` declares `PATCH /memory/facts/{fact_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes i…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PATCH /{thread_id}
`backend/app/gateway/routers/threads.py` declares `PATCH /{thread_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /
`backend/app/gateway/routers/threads.py` declares `POST /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/sandboxes
`docker/provisioner/app.py` declares `POST /api/sandboxes` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /change-password
`backend/app/gateway/routers/auth.py` declares `POST /change-password` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /initialize
`backend/app/gateway/routers/auth.py` declares `POST /initialize` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /login/local
`backend/app/gateway/routers/auth.py` declares `POST /login/local` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /logout
`backend/app/gateway/routers/auth.py` declares `POST /logout` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /memory/facts
`backend/app/gateway/routers/memory.py` declares `POST /memory/facts` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /memory/import
`backend/app/gateway/routers/memory.py` declares `POST /memory/import` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /memory/reload
`backend/app/gateway/routers/memory.py` declares `POST /memory/reload` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /register
`backend/app/gateway/routers/auth.py` declares `POST /register` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /search
`backend/app/gateway/routers/threads.py` declares `POST /search` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /skills/custom/{skill_name}/rollback
`backend/app/gateway/routers/skills.py` declares `POST /skills/custom/{skill_name}/rollback` 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 wh…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /skills/install
`backend/app/gateway/routers/skills.py` declares `POST /skills/install` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /stream
`backend/app/gateway/routers/runs.py` declares `POST /stream` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /threads/{thread_id}/suggestions
`backend/app/gateway/routers/suggestions.py` declares `POST /threads/{thread_id}/suggestions` 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 w…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /wait
`backend/app/gateway/routers/runs.py` declares `POST /wait` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /{thread_id}/runs/{run_id}/feedback
`backend/app/gateway/routers/feedback.py` declares `POST /{thread_id}/runs/{run_id}/feedback` 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 w…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PUT /mcp/config
`backend/app/gateway/routers/mcp.py` declares `PUT /mcp/config` 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: PUT /skills/custom/{skill_name}
`backend/app/gateway/routers/skills.py` declares `PUT /skills/custom/{skill_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…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PUT /skills/{skill_name}
`backend/app/gateway/routers/skills.py` declares `PUT /skills/{skill_name}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PUT /{thread_id}/runs/{run_id}/feedback
`backend/app/gateway/routers/feedback.py` declares `PUT /{thread_id}/runs/{run_id}/feedback` 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 wh…
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: backend/app/channels/wechat.py (1370 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: backend/packages/harness/deerflow/client.py (1317 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: backend/packages/harness/deerflow/sandbox/tools.py (1804 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: backend/tests/test_channels.py (3159 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: backend/tests/test_client.py (3234 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: backend/tests/test_dingtalk_channel.py (1554 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: backend/tests/test_sandbox_tools_security.py (1341 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.

Showing first 300 of 302. 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/1fdceb83-a5ff-4bdd-8861-e896a260c55c/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/1fdceb83-a5ff-4bdd-8861-e896a260c55c/

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.