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.

Scan timing: clone 13.24s · analysis 10.88s · 27.8 MB · GitHub API rate-limit (preflight)

ArcReel/ArcReel

https://github.com/ArcReel/ArcReel · scanned 2026-05-31 01:24 UTC (1 week, 6 days ago) · 10 languages

1042 raw signals (253 security + 789 graph) 11/13 scanners ran 97th percentile · Python · large (100-500K LoC) System graph score 54 (higher by 38)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 week, 6 days ago · v2 · last Δ +0.1 (diff) · 486 actionable findings from 2 signal sources. 177 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 85.0 0.15 12.75
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 94.0 0.15 14.10
code_quality 60.0 0.10 6.00
Overall 1.00 92.8
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 (93/100). Dimensions: security 100, maintainability 85. 253 findings (74 security). 173,639 lines analyzed.

Showing 374 of 486 actionable findings. 663 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 10 occurrences [MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes.
Add `import warnings` at the top of the file.
10 files, 10 locations
lib/data_validator.py:276
lib/generation_queue_client.py:61
server/agent_runtime/sdk_tools/enqueue_assets.py:50
server/agent_runtime/session_manager.py:223
server/routers/generate.py:278
server/routers/grids.py:289
server/routers/reference_videos.py:347
server/routers/tasks.py:59
critical System graph security Secrets conf 1.00 Possible secret in scripts/probe_smoke.py
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
scripts/probe_smoke.py:70
critical System graph security Secrets conf 1.00 Possible secret in server/auth.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
server/auth.py:250
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: DELETE /episodes/{episode}/units/{unit_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/reference_videos.py:271
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 /projects/{project_name}/versions/{resource_type}/{resource_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/versions.py:129
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 /tasks/{task_id}/cancel-preview.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/tasks.py:159
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: PATCH /episodes/{episode}/units/{unit_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/reference_videos.py:233
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: PATCH /projects/{name}/script-scenes/{scene_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/projects.py:777
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: PATCH /projects/{name}/segments/{segment_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/projects.py:855
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: PATCH /{asset_id}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/assets.py:170
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: POST /projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/versions.py:165
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: POST /tasks/{task_id}/cancel.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/tasks.py:169
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: POST /{asset_id}/image.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
server/routers/assets.py:211
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
server/agent_runtime/session_actor.py:84
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED106] Phantom test coverage: test_vidu_connection: Test function `test_vidu_connection` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
Add an explicit assertion that captures the test's intent, or remove the test.
lib/vidu_shared.py:206
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self._calculate_custom_cost` used but never assigned in __init__: Method `calculate_cost` of class `CostCalculator` reads `self._calculate_custom_cost`, 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._calculate_custom_cost = <default>` in __init__, or add a class-level default.
3 files, 25 locations
lib/data_validator.py:150, 223, 229, 293, 298, 313, 329, 336, +6 more (14 hits)
lib/media_generator.py:139, 140, 178, 179, 316, 317, 363, 364, +2 more (10 hits)
lib/cost_calculator.py:56
high Security checks software dependencies conf 0.90 ✓ Repobility 2 occurrences [MINED118] Dockerfile FROM `node:22-slim` not pinned by digest: `FROM node:22-slim` 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 node:22-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
lines 4, 25
Dockerfile:4, 25 (2 hits)
high Security checks cicd CI/CD security conf 0.90 Database service has no persistent data volume
Mount the database data directory to a named Docker volume or managed persistent disk, and document backup and restore testing.
deploy/production/docker-compose.yml:1 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 25 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `dorny/paths-filter` pinned to mutable ref `@v4`: `uses: dorny/paths-filter@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 …
4 files, 25 locations
.github/workflows/test.yml:19, 38, 63, 95, 122, 136, 164 (10 hits)
.github/workflows/docker.yml:44, 58, 68, 81, 87, 98 (7 hits)
.github/workflows/codeql.yml:18, 55, 62 (5 hits)
.github/workflows/release-please.yml:24, 45 (3 hits)
CI/CD securitySupply chainGitHub Actions
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 14 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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…
4 files, 14 locations
.github/workflows/test.yml:18, 37, 42, 94, 99, 135, 140 (7 hits)
.github/workflows/codeql.yml:17, 52 (3 hits)
.github/workflows/release-please.yml:16, 37 (3 hits)
.github/workflows/docker.yml:28
CI/CD securitySupply chainGitHub Actions
high Security checks security auth conf 0.83 4 occurrences 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.
3 files, 4 locations
frontend/src/components/pages/CredentialList.tsx:280, 437 (2 hits)
frontend/src/components/agent/AddCredentialModal.tsx:444
frontend/src/pages/LoginPage.tsx:117
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /agent/credentials/${id} (frontend/src/api.ts:1607)
`frontend/src/api.ts:1607` calls `DELETE /agent/credentials/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials/<p>` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /api-keys/${keyId} (frontend/src/api.ts:1491)
`frontend/src/api.ts:1491` calls `DELETE /api-keys/${keyId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/api-keys/<p>` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /assets/${encodeURIComponent(id)} (frontend/src/api.ts:1832)
`frontend/src/api.ts:1832` calls `DELETE /assets/${encodeURIComponent(id)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/assets/<p>` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /custom-providers/${id} (frontend/src/api.ts:1654)
`frontend/src/api.ts:1654` calls `DELETE /custom-providers/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(name)} (frontend/src/api.ts:411)
`frontend/src/api.ts:411` calls `DELETE /projects/${encodeURIComponent(name)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>` If this points at an external API, prefix it with `https://` so th…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(projectName)}/characters/${encodeURIComponent(charName)} (frontend/src/api.ts:563)
`frontend/src/api.ts:563` calls `DELETE /projects/${encodeURIComponent(projectName)}/characters/${encodeURIComponent(charName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/characters/<p>` I…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(projectName)}/drafts/${episode}/step${stepNum} (frontend/src/api.ts:911)
`frontend/src/api.ts:911` calls `DELETE /projects/${encodeURIComponent(projectName)}/drafts/${episode}/step${stepNum}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/drafts/<p>/step/<p>` If thi…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(projectName)}/props/${encodeURIComponent(propName)} (frontend/src/api.ts:647)
`frontend/src/api.ts:647` calls `DELETE /projects/${encodeURIComponent(projectName)}/props/${encodeURIComponent(propName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/props/<p>` If this poi…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /projects/${encodeURIComponent(projectName)}/scenes/${encodeURIComponent(sceneName)} (frontend/src/api.ts:605)
`frontend/src/api.ts:605` calls `DELETE /projects/${encodeURIComponent(projectName)}/scenes/${encodeURIComponent(sceneName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/scenes/<p>` If this …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /agent/credentials (frontend/src/api.ts:1584)
`frontend/src/api.ts:1584` calls `GET /agent/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials` If this points at an external API, prefix it with `https://` so the matcher skips …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /agent/preset-providers (frontend/src/api.ts:1580)
`frontend/src/api.ts:1580` calls `GET /agent/preset-providers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/preset-providers` If this points at an external API, prefix it with `https://` so the matc…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api-keys (frontend/src/api.ts:1478)
`frontend/src/api.ts:1478` calls `GET /api-keys` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/api-keys` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/v1/auth/status (frontend/src/stores/auth-store.ts:32)
`frontend/src/stores/auth-store.ts:32` calls `GET /api/v1/auth/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/status` If this points at an external API, prefix it with `https://` so the matcher skips…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /assets/${encodeURIComponent(id)} (frontend/src/api.ts:1787)
`frontend/src/api.ts:1787` calls `GET /assets/${encodeURIComponent(id)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/assets/<p>` If this points at an external API, prefix it with `https://` so the matche…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /custom-providers (frontend/src/api.ts:1630)
`frontend/src/api.ts:1630` calls `GET /custom-providers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /custom-providers/${id} (frontend/src/api.ts:1642)
`frontend/src/api.ts:1642` calls `GET /custom-providers/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>` If this points at an external API, prefix it with `https://` so the matche…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /custom-providers/${id}/credentials (frontend/src/api.ts:1678)
`frontend/src/api.ts:1678` calls `GET /custom-providers/${id}/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>/credentials` If this points at an external API, prefix it with …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /custom-providers/endpoints (frontend/src/api.ts:1634)
`frontend/src/api.ts:1634` calls `GET /custom-providers/endpoints` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/endpoints` If this points at an external API, prefix it with `https://` so …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:100)
`frontend/src/api.test.ts:100` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:120)
`frontend/src/api.test.ts:120` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:133)
`frontend/src/api.test.ts:133` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:150)
`frontend/src/api.test.ts:150` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.test.ts:164)
`frontend/src/api.test.ts:164` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects (frontend/src/api.ts:375)
`frontend/src/api.ts:375` calls `GET /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects/${encodeURIComponent(name)} (frontend/src/api.ts:394)
`frontend/src/api.ts:394` calls `GET /projects/${encodeURIComponent(name)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects/${encodeURIComponent(name)}/video-capabilities (frontend/src/api.ts:428)
`frontend/src/api.ts:428` calls `GET /projects/${encodeURIComponent(name)}/video-capabilities` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/video-capabilities` If this points at an external A…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects/${encodeURIComponent(projectName)}/grids (frontend/src/api.ts:1745)
`frontend/src/api.ts:1745` calls `GET /projects/${encodeURIComponent(projectName)}/grids` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/grids` If this points at an external API, prefix it with…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /projects/${encodeURIComponent(projectName)}/grids/${encodeURIComponent(gridId)} (frontend/src/api.ts:1754)
`frontend/src/api.ts:1754` calls `GET /projects/${encodeURIComponent(projectName)}/grids/${encodeURIComponent(gridId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/grids/<p>` If this points …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /providers (frontend/src/api.ts:1498)
`frontend/src/api.ts:1498` calls `GET /providers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /providers/${encodeURIComponent(id)}/config (frontend/src/api.ts:1503)
`frontend/src/api.ts:1503` calls `GET /providers/${encodeURIComponent(id)}/config` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/config` If this points at an external API, prefix it with `htt…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /providers/${encodeURIComponent(providerId)}/credentials (frontend/src/api.ts:1528)
`frontend/src/api.ts:1528` calls `GET /providers/${encodeURIComponent(providerId)}/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/credentials` If this points at an external API, p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /tasks/${encodeURIComponent(taskId)} (frontend/src/api.ts:1076)
`frontend/src/api.ts:1076` calls `GET /tasks/${encodeURIComponent(taskId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/tasks/<p>` If this points at an external API, prefix it with `https://` so the matc…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /tasks/${encodeURIComponent(taskId)}/cancel-preview (frontend/src/api.ts:1126)
`frontend/src/api.ts:1126` calls `GET /tasks/${encodeURIComponent(taskId)}/cancel-preview` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/tasks/<p>/cancel-preview` If this points at an external API, prefix …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /usage/projects (frontend/src/api.ts:1471)
`frontend/src/api.ts:1471` calls `GET /usage/projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/usage/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /usage/stats?${searchParams.toString()} (frontend/src/api.ts:1706)
`frontend/src/api.ts:1706` calls `GET /usage/stats?${searchParams.toString()}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/usage/stats` If this points at an external API, prefix it with `https://` so the…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /agent/credentials/${id} (frontend/src/api.ts:1600)
`frontend/src/api.ts:1600` calls `PATCH /agent/credentials/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials/<p>` If this points at an external API, prefix it with `https://` so the ma…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /assets/${encodeURIComponent(id)} (frontend/src/api.ts:1810)
`frontend/src/api.ts:1810` calls `PATCH /assets/${encodeURIComponent(id)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/assets/<p>` If this points at an external API, prefix it with `https://` so the matc…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /custom-providers/${id} (frontend/src/api.ts:1646)
`frontend/src/api.ts:1646` calls `PATCH /custom-providers/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>` If this points at an external API, prefix it with `https://` so the matc…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(name)} (frontend/src/api.ts:404)
`frontend/src/api.ts:404` calls `PATCH /projects/${encodeURIComponent(name)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>` If this points at an external API, prefix it with `https://` so the…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/characters/${encodeURIComponent(charName)} (frontend/src/api.ts:550)
`frontend/src/api.ts:550` calls `PATCH /projects/${encodeURIComponent(projectName)}/characters/${encodeURIComponent(charName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/characters/<p>` If…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/overview (frontend/src/api.ts:940)
`frontend/src/api.ts:940` calls `PATCH /projects/${encodeURIComponent(projectName)}/overview` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/overview` If this points at an external API, prefix …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/props/${encodeURIComponent(propName)} (frontend/src/api.ts:634)
`frontend/src/api.ts:634` calls `PATCH /projects/${encodeURIComponent(projectName)}/props/${encodeURIComponent(propName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/props/<p>` If this poin…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/scenes/${encodeURIComponent(sceneName)} (frontend/src/api.ts:592)
`frontend/src/api.ts:592` calls `PATCH /projects/${encodeURIComponent(projectName)}/scenes/${encodeURIComponent(sceneName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/scenes/<p>` If this p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/script-scenes/${encodeURIComponent(sceneId)} (frontend/src/api.ts:672)
`frontend/src/api.ts:672` calls `PATCH /projects/${encodeURIComponent(projectName)}/script-scenes/${encodeURIComponent(sceneId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/script-scenes/<p…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /projects/${encodeURIComponent(projectName)}/segments/${encodeURIComponent(segmentId)} (frontend/src/api.ts:689)
`frontend/src/api.ts:689` calls `PATCH /projects/${encodeURIComponent(projectName)}/segments/${encodeURIComponent(segmentId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/segments/<p>` If th…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /providers/${encodeURIComponent(id)}/config (frontend/src/api.ts:1511)
`frontend/src/api.ts:1511` calls `PATCH /providers/${encodeURIComponent(id)}/config` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/config` If this points at an external API, prefix it with `h…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PATCH /providers/${encodeURIComponent(providerId)}/credentials/${credId} (frontend/src/api.ts:1546)
`frontend/src/api.ts:1546` calls `PATCH /providers/${encodeURIComponent(providerId)}/credentials/${credId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/credentials/<p>` If this points at an…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /agent/credentials (frontend/src/api.ts:1590)
`frontend/src/api.ts:1590` calls `POST /agent/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials` If this points at an external API, prefix it with `https://` so the matcher skips…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /agent/credentials/${id}/activate (frontend/src/api.ts:1611)
`frontend/src/api.ts:1611` calls `POST /agent/credentials/${id}/activate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials/<p>/activate` If this points at an external API, prefix it with `ht…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /agent/credentials/${id}/test (frontend/src/api.ts:1615)
`frontend/src/api.ts:1615` calls `POST /agent/credentials/${id}/test` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/credentials/<p>/test` If this points at an external API, prefix it with `https://` …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /agent/test-connection (frontend/src/api.ts:1621)
`frontend/src/api.ts:1621` calls `POST /agent/test-connection` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/agent/test-connection` If this points at an external API, prefix it with `https://` so the match…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api-keys (frontend/src/api.ts:1483)
`frontend/src/api.ts:1483` calls `POST /api-keys` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/api-keys` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/v1/auth/token (frontend/src/pages/LoginPage.tsx:46)
`frontend/src/pages/LoginPage.tsx:46` calls `POST /api/v1/auth/token` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/v1/auth/token` 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: POST /assets/from-project (frontend/src/api.ts:1842)
`frontend/src/api.ts:1842` calls `POST /assets/from-project` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/assets/from-project` If this points at an external API, prefix it with `https://` so the matcher s…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /custom-providers (frontend/src/api.ts:1638)
`frontend/src/api.ts:1638` calls `POST /custom-providers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers` If this points at an external API, prefix it with `https://` so the matcher skips i…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /custom-providers/${id}/discover (frontend/src/api.ts:1666)
`frontend/src/api.ts:1666` calls `POST /custom-providers/${id}/discover` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>/discover` If this points at an external API, prefix it with `http…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /custom-providers/${id}/test (frontend/src/api.ts:1674)
`frontend/src/api.ts:1674` calls `POST /custom-providers/${id}/test` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>/test` If this points at an external API, prefix it with `https://` so…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /custom-providers/discover (frontend/src/api.ts:1662)
`frontend/src/api.ts:1662` calls `POST /custom-providers/discover` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/discover` If this points at an external API, prefix it with `https://` so t…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /custom-providers/discover-anthropic (frontend/src/api.ts:1685)
`frontend/src/api.ts:1685` calls `POST /custom-providers/discover-anthropic` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/discover-anthropic` If this points at an external API, prefix it …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /custom-providers/test (frontend/src/api.ts:1670)
`frontend/src/api.ts:1670` calls `POST /custom-providers/test` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/test` If this points at an external API, prefix it with `https://` so the match…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects (frontend/src/api.ts:381)
`frontend/src/api.ts:381` calls `POST /projects` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/characters (frontend/src/api.ts:532)
`frontend/src/api.ts:532` calls `POST /projects/${encodeURIComponent(projectName)}/characters` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/characters` If this points at an external API, pref…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/export/token?scope=${encodeURIComponent(scope)} (frontend/src/api.ts:435)
`frontend/src/api.ts:435` calls `POST /projects/${encodeURIComponent(projectName)}/export/token?scope=${encodeURIComponent(scope)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/export/token` …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate-overview (frontend/src/api.ts:925)
`frontend/src/api.ts:925` calls `POST /projects/${encodeURIComponent(projectName)}/generate-overview` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate-overview` If this points at an exte…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/character/${encodeURIComponent(charName)} (frontend/src/api.ts:1016)
`frontend/src/api.ts:1016` calls `POST /projects/${encodeURIComponent(projectName)}/generate/character/${encodeURIComponent(charName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/c…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/grid/${episode} (frontend/src/api.ts:1734)
`frontend/src/api.ts:1734` calls `POST /projects/${encodeURIComponent(projectName)}/generate/grid/${episode}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/grid/<p>` If this points at…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/prop/${encodeURIComponent(propName)} (frontend/src/api.ts:1064)
`frontend/src/api.ts:1064` calls `POST /projects/${encodeURIComponent(projectName)}/generate/prop/${encodeURIComponent(propName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/prop/<…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/scene/${encodeURIComponent(sceneName)} (frontend/src/api.ts:1040)
`frontend/src/api.ts:1040` calls `POST /projects/${encodeURIComponent(projectName)}/generate/scene/${encodeURIComponent(sceneName)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/scen…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/storyboard/${encodeURIComponent(segmentId)} (frontend/src/api.ts:964)
`frontend/src/api.ts:964` calls `POST /projects/${encodeURIComponent(projectName)}/generate/storyboard/${encodeURIComponent(segmentId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/generate/video/${encodeURIComponent(segmentId)} (frontend/src/api.ts:988)
`frontend/src/api.ts:988` calls `POST /projects/${encodeURIComponent(projectName)}/generate/video/${encodeURIComponent(segmentId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/generate/video…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/grids/${encodeURIComponent(gridId)}/regenerate (frontend/src/api.ts:1766)
`frontend/src/api.ts:1766` calls `POST /projects/${encodeURIComponent(projectName)}/grids/${encodeURIComponent(gridId)}/regenerate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/grids/<p>/rege…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/props (frontend/src/api.ts:620)
`frontend/src/api.ts:620` calls `POST /projects/${encodeURIComponent(projectName)}/props` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/props` If this points at an external API, prefix it with…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/reference-videos/episodes/${episode}/units (frontend/src/api.ts:1897)
`frontend/src/api.ts:1897` calls `POST /projects/${encodeURIComponent(projectName)}/reference-videos/episodes/${episode}/units` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/reference-videos/e…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/scenes (frontend/src/api.ts:578)
`frontend/src/api.ts:578` calls `POST /projects/${encodeURIComponent(projectName)}/scenes` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/scenes` If this points at an external API, prefix it wi…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/tasks/cancel-all (frontend/src/api.ts:1152)
`frontend/src/api.ts:1152` calls `POST /projects/${encodeURIComponent(projectName)}/tasks/cancel-all` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/projects/<p>/tasks/cancel-all` If this points at an exter…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /projects/${encodeURIComponent(projectName)}/versions/${encodeURIComponent(resourceType)}/${encodeURIComponent(resourceId)}/restore/${version} (frontend/src/api.ts:1284)
`frontend/src/api.ts:1284` calls `POST /projects/${encodeURIComponent(projectName)}/versions/${encodeURIComponent(resourceType)}/${encodeURIComponent(resourceId)}/restore/${version}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized pa…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /providers/${encodeURIComponent(id)}/test${params} (frontend/src/api.ts:1520)
`frontend/src/api.ts:1520` calls `POST /providers/${encodeURIComponent(id)}/test${params}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/test/<p>` If this points at an external API, prefix it…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /providers/${encodeURIComponent(providerId)}/credentials (frontend/src/api.ts:1535)
`frontend/src/api.ts:1535` calls `POST /providers/${encodeURIComponent(providerId)}/credentials` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/providers/<p>/credentials` If this points at an external API, …
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /tasks/${encodeURIComponent(taskId)}/cancel (frontend/src/api.ts:1136)
`frontend/src/api.ts:1136` calls `POST /tasks/${encodeURIComponent(taskId)}/cancel` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/tasks/<p>/cancel` If this points at an external API, prefix it with `https:…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PUT /custom-providers/${id} (frontend/src/api.ts:1650)
`frontend/src/api.ts:1650` calls `PUT /custom-providers/${id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>` If this points at an external API, prefix it with `https://` so the matche…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: PUT /custom-providers/${id}/models (frontend/src/api.ts:1658)
`frontend/src/api.ts:1658` calls `PUT /custom-providers/${id}/models` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/custom-providers/<p>/models` If this points at an external API, prefix it with `https://`…
Dangling fetchHelper:request
high System graph security auth conf 1.00 FastAPI DELETE `delete_api_key` without auth dependency — server/routers/api_keys.py:128
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/api_keys.py:128 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_asset` without auth dependency — server/routers/assets.py:198
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:198 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_draft` without auth dependency — server/routers/files.py:752
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:752 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_entry` without auth dependency — server/routers/_asset_router_factory.py:157
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/_asset_router_factory.py:157 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_project` without auth dependency — server/routers/projects.py:737
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:737 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_session` without auth dependency — server/routers/assistant.py:137
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assistant.py:137 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_source_file` without auth dependency — server/routers/files.py:518
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:518 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_unit` without auth dependency — server/routers/reference_videos.py:271
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:271 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `patch_unit` without auth dependency — server/routers/reference_videos.py:233
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:233 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_asset` without auth dependency — server/routers/assets.py:170
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:170 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_entry` without auth dependency — server/routers/_asset_router_factory.py:110
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/_asset_router_factory.py:110 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_overview` without auth dependency — server/routers/projects.py:1027
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:1027 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_project` without auth dependency — server/routers/projects.py:603
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:603 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_scene` without auth dependency — server/routers/projects.py:777
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:777 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PATCH `update_segment` without auth dependency — server/routers/projects.py:855
`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:855 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_entry` without auth dependency — server/routers/_asset_router_factory.py:79
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/_asset_router_factory.py:79 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_unit` without auth dependency — server/routers/reference_videos.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.
server/routers/reference_videos.py:191 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `agent_chat` without auth dependency — server/routers/agent_chat.py:122
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/agent_chat.py:122 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `answer_question` without auth dependency — server/routers/assistant.py:195
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assistant.py:195 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `apply_to_project` without auth dependency — server/routers/assets.py:390
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:390 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_all_queued` without auth dependency — server/routers/tasks.py:186
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/tasks.py:186 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_task` without auth dependency — server/routers/tasks.py:169
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/tasks.py:169 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_api_key` without auth dependency — server/routers/api_keys.py:71
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/api_keys.py:71 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_asset` without auth dependency — server/routers/assets.py:113
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:113 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_export_token` without auth dependency — server/routers/projects.py:208
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:208 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_project` without auth dependency — server/routers/projects.py:434
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:434 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `discover_models_endpoint` without auth dependency — server/routers/custom_providers.py:560
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/custom_providers.py:560 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `from_project` without auth dependency — server/routers/assets.py:256
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:256 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_character` without auth dependency — server/routers/generate.py:295
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:295 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_grid` without auth dependency — server/routers/grids.py:85
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/grids.py:85 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_overview` without auth dependency — server/routers/projects.py:1009
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:1009 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_prop` without auth dependency — server/routers/generate.py:349
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:349 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_scene` without auth dependency — server/routers/generate.py:322
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:322 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_storyboard` without auth dependency — server/routers/generate.py:69
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:69 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_unit` without auth dependency — server/routers/reference_videos.py:319
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:319 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `generate_video` without auth dependency — server/routers/generate.py:140
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/generate.py:140 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `import_project_archive` without auth dependency — server/routers/projects.py:138
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:138 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `interrupt_session` without auth dependency — server/routers/assistant.py:177
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assistant.py:177 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `regenerate_grid` without auth dependency — server/routers/grids.py:266
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/grids.py:266 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reorder_units` without auth dependency — server/routers/reference_videos.py:293
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/reference_videos.py:293 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `replace_image` without auth dependency — server/routers/assets.py:211
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assets.py:211 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `restore_version` without auth dependency — server/routers/versions.py:165
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/versions.py:165 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `send_message` without auth dependency — server/routers/assistant.py:68
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/assistant.py:68 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_project_source` without auth dependency — server/routers/projects.py:916
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/projects.py:916 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `test_connection_draft` without auth dependency — server/routers/agent_config.py:338
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/agent_config.py:338 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_file` without auth dependency — server/routers/files.py:119
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:119 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_style_image` without auth dependency — server/routers/files.py:783
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:783 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_draft_content` without auth dependency — server/routers/files.py:694
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:694 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI PUT `update_source_file` without auth dependency — server/routers/files.py:481
`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/routers/files.py:481 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 38.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.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /projects/{name}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:737
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /projects/{{project_name}}/{spec.subdir}/{{entry_name}}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/_asset_router_factory.py:157
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /grids.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/grids.py:227
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /projects.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:354
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /projects/{name}/scripts/{script_file}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:757
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: GET /projects/{project_name}/cost-estimate.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/cost_estimation.py:24
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:603
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}/overview.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:1027
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /projects/{name}/segments/{segment_id}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:855
high Security checks security auth conf 0.66 [AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /projects/{name}/generate-overview.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
server/routers/projects.py:1009
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 /api-keys/{key_id}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/api_keys.py:128
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 /episodes/{episode}/units/{unit_id}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/reference_videos.py:271
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 /sessions/{session_id}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/assistant.py:137
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 /{asset_id}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/assets.py:198
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 /projects/{name}/export.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/projects.py:240
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 /projects/{name}/export/jianying-draft.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/projects.py:302
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 /projects/import.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/projects.py:138
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 /projects/{name}/export/token.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/projects.py:208
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 /projects/{project_name}/versions/{resource_type}/{resource_id}/restore/{version}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/versions.py:165
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 /{asset_id}/image.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
server/routers/assets.py:211
medium Security checks security auth conf 0.72 [AUC012] FastAPI interactive docs may be exposed by framework defaults: FastAPI exposes /docs, /redoc, and /openapi.json by default. Public production APIs should explicitly disable those defaults, protect them behind admin authentication, or publish a reviewed OpenAPI spec with declared security requirements.
Set docs_url=None, redoc_url=None, and openapi_url=None for production apps unless the docs are intentionally public and protected by routing, ingress, or an authenticated docs handler.
medium Security checks quality Error handling conf 1.00 [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
frontend/src/components/canvas/grid/GridPreviewView.tsx:57
low Security checks quality Error handling conf 0.55 ✓ Repobility 22 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.
12 files, 20 locations
server/services/cost_estimation.py:54, 59, 64, 130 (4 hits)
server/services/generation_tasks.py:558, 571, 836, 848 (4 hits)
server/services/diagnostics.py:22, 42, 85 (3 hits)
agent_runtime_profile/.claude/skills/compose-video/scripts/compose_video.py:723
lib/db/repositories/task_repo.py:34
lib/generation_queue_client.py:454
lib/i18n/__init__.py:105
lib/logging_utils.py:119
Error handlingquality
high Security checks security auth conf 0.82 2 occurrences Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
lines 4, 8
frontend/src/utils/auth.ts:4, 8 (2 hits)
medium Security checks cicd CI/CD security conf 0.94 Compose service `arcreel` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
deploy/production/docker-compose.yml:17 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.94 Compose service `arcreel` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
deploy/docker-compose.yml:1 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.72 Compose service adds dangerous Linux capabilities
Drop all capabilities by default and add only narrowly required capabilities after review.
deploy/production/docker-compose.yml:17 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.72 Compose service adds dangerous Linux capabilities
Drop all capabilities by default and add only narrowly required capabilities after review.
deploy/docker-compose.yml:1 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
Dockerfile:25 CI/CD securitycontainers
high Security checks quality Quality conf 0.74 3 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.
3 files, 3 locations
frontend/src/api.ts:252
frontend/src/pages/LoginPage.tsx:46
frontend/src/stores/auth-store.ts:32
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
frontend/src/stores/app-store.ts:223
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
frontend/src/hooks/useAssistantSession.ts:100
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt
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.
docs/getting-started.md:86
medium Security checks quality Quality conf 0.78 Suspicious implementation file appears unreferenced
Confirm whether this file is reachable. If not, delete it; if yes, wire it through explicit imports, routes, or entry points and add a test that proves the path executes.
alembic/versions/0426_endpoint_refactor.py:1
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — frontend/src/api.ts:350
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/shared/ImageModelDualSelect.test.tsx:108
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/stores/auth-store.ts:32
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/stores/config-status-store.test.ts:66
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/stores/config-status-store.ts:41
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/stores/endpoint-catalog-store.test.ts:63
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: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph quality Integrity conf 1.00 Frontend route `/app/projects/:projectName/settings` has no Link/navigate to it — frontend/src/components/pages/ProjectSettingsPage.test.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
Orphan pageWiring
medium System graph quality Integrity conf 1.00 3 occurrences Frontend route `/login` has no Link/navigate to it — frontend/src/router.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
3 occurrences
repo-level (3 hits)
Orphan pageWiring
medium System graph quality Integrity conf 1.00 4 occurrences Frontend route `/lorebook` has no Link/navigate to it — frontend/src/components/canvas/StudioCanvasRouter.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
4 occurrences
repo-level (4 hits)
Orphan pageWiring
medium System graph cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/release-please.yml CI/CD securitySupply chainGithub actions
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/docker.yml CI/CD securitySupply chainGithub actions
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — lib/video_backends/gemini.py:311
`urllib.request.urlretrieve(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
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 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.
deploy/production/docker-compose.yml:17 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.56 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.
deploy/docker-compose.yml:1 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
deploy/production/docker-compose.yml:17 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
deploy/docker-compose.yml:1 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.58 Database password is wired through an environment variable placeholder
Prefer Compose secrets or your platform secret manager with *_FILE variables where the image supports them. Rotate only if a real value was committed.
deploy/production/docker-compose.yml:1 CI/CD securitycontainers
low Security checks quality Quality conf 0.64 Duplicate top-level symbol appears in a patch-style file
Keep one authoritative implementation, update imports to point at it, and remove or rename the duplicate symbol.
alembic/versions/0426_endpoint_refactor.py:1
low Security checks quality Quality conf 0.60 30 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.
12 files, 16 locations
frontend/src/components/canvas/lorebook/SceneCard.tsx:19, 93 (2 hits)
frontend/src/components/pages/settings/CustomProviderDetail.tsx:129, 244 (2 hits)
frontend/src/components/pages/settings/CustomProviderForm.tsx:660, 663 (2 hits)
frontend/src/components/ui/SegmentRefsEditModal.tsx:157, 161 (2 hits)
frontend/src/components/assets/AssetPickerModal.tsx:100
frontend/src/components/canvas/SourceFilesPage.tsx:88
frontend/src/components/canvas/WelcomeCanvas.tsx:322
frontend/src/components/canvas/lorebook/GalleryEmptyState.tsx:27
duplicationquality
high Security checks quality Quality conf 0.62 Source file name looks like an AI patch artifact
Rename it to the domain concept it implements or merge it into the existing module it was meant to change.
alembic/versions/0426_endpoint_refactor.py:1
low System graph quality Integrity conf 1.00 15 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `AI_ANIME_PROJECTS`, `ANTHROPIC_MODEL`, `ARCREEL_LOG_DIR`, `ARCREEL_LOG_FILE_DISABLED`, `ARCREEL_PROFILE_DIR`, `ARCREEL_PROMPT_RULES_V2`, `ASSISTANT_MAX_TURNS`, `ASSISTANT_STREAM_HEARTBEAT_SECONDS` + 7 more. Add them (with a placeholder/comment) to…
config drift
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 Docker base image is tag-pinned but not digest-pinned: node:22-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:4 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.12-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:25 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/src/i18n/en/assets.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/i18n/en/auth.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/i18n/en/common.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/i18n/en/dashboard.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/i18n/en/errors.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/i18n/en/templates.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/i18n/vi/assets.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/i18n/vi/auth.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/i18n/vi/common.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/i18n/vi/dashboard.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/i18n/vi/errors.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/i18n/vi/templates.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/i18n/zh/assets.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/i18n/zh/auth.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/i18n/zh/common.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/i18n/zh/dashboard.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/i18n/zh/errors.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/i18n/zh/templates.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/stores/assets-store.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/src/stores/assets-store.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/stores/assistant-store.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/stores/auth-store.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/stores/endpoint-catalog-store.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/src/stores/projects-store.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/stores/tasks-store.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/stores/usage-store.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/test/setup.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/types/agent-credential.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/types/api-key.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/types/asset.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/types/assistant.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/types/cost.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/types/custom-provider.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/types/grid.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/types/project.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/types/provider.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/types/reference-video.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/types/script.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/types/system.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/types/task.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/types/workspace.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/utils/cost-format.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/src/utils/generation-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/src/utils/project-display.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/src/utils/safe-url.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/src/utils/source-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/src/utils/ui-layers.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/vite.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/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 17 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: lib/media_generator.py:generate_image, lib/media_generator.py:generate_image_async This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
17 occurrences
repo-level (17 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: lib/data_validator.py:validate_project_payload, lib/data_validator.py:validate_project, lib/data_validator.py:validate_project This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolid…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_read_via_legacy` in server/agent_runtime/sdk_transcript_adapter.py:57
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_reconstruct_old_clues_from_v1` in lib/project_migrations/v0_to_v1_clues_to_scenes_props.py:122
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 `_safe_copy` in lib/profile_manifest.py:221
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 `_safe_copy` in tests/test_project_manager_symlink.py:96
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 `assistant_turn_v1` in tests/test_turn_grouper.py:113
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 `dropped_legacy` in lib/project_manager.py:1651
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 `dropped_legacy` in server/agent_runtime/sdk_tools/patch_project.py:169
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 `E1S01_v1` in tests/test_files_router.py:319
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `E1S01_v1` in tests/test_project_archive_service.py:113
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 `E1S2_v1` in frontend/src/components/canvas/timeline/MediaCard.tsx:18
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `E1U1_v1` in tests/test_project_archive_reference_video.py:175
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 `fake_v1` in tests/test_project_migration_runner.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 `Hero_v1` in frontend/src/components/canvas/timeline/VersionTimeMachine.test.tsx:115
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 `img_v1` in tests/test_upload_restore_png.py:26
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 `rejected_legacy` in tests/test_projects_router.py:274
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 `s_old` in tests/test_session_lifecycle.py:236
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_arcreel_data_dir_takes_precedence_over_legacy` in tests/test_app_data_dir.py:84
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_default_image_backend_t2i_falls_back_to_legacy` in tests/test_config_resolver.py:219
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_from_project_model_settings_overrides_legacy` in tests/test_resolution_resolver.py:21
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_invalid_json_restores_backup` in tests/test_session_manager_more.py:1105
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_load_txt_utf8_no_raw_backup` in tests/source_loader/test_loader.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_openai_appends_v1` in tests/test_custom_provider_factory.py:129
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_preserves_existing_v1` in tests/test_normalize_base_url.py:44
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_resume_after_pre_version_crash_creates_v1` in tests/test_media_generator_resume.py:245
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_returned_list_is_independent_copy` in tests/test_duration_presets.py:66
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_strips_trailing_v1` in tests/test_url_utils.py:14
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_upgrade_no_op_when_no_legacy` in tests/test_alembic_split_default_image_backend.py:98
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_version_guard_skips_already_v2` in tests/test_project_migration_v1_v2.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 `test_writing_model_settings_migrates_legacy` in tests/test_project_manager_legacy_migration.py:23
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: all_inflight
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/generation_worker.py:99
low System graph software Dead code conf 1.00 Possibly dead Python function: all_provider_configs
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/config/resolver.py:300
low System graph software Dead code conf 1.00 Possibly dead Python function: create_script
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/project_manager.py:462
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.
lib/retry.py:73
low System graph software Dead code conf 1.00 Possibly dead Python function: do_run_migrations
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
alembic/env.py:66

Showing first 300 of 374. 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/dd36d6e3-11f5-44b3-8d7f-dfaaeda3f411/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/dd36d6e3-11f5-44b3-8d7f-dfaaeda3f411/

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.