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

openinterpreter/open-interpreter

https://github.com/openinterpreter/open-interpreter · scanned 2026-06-05 09:01 UTC (5 days, 18 hours ago) · 10 languages

505 raw signals (197 security + 308 graph) 11/13 scanners ran 51st percentile · Python · small (2-20K LoC) System graph score 59 (higher by 9)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 18 hours ago · v2 · 227 actionable findings from 2 signal sources. 106 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 75.0 0.15 11.25
security_score 100.0 0.25 25.00
testing_score 22.0 0.20 4.40
documentation_score 77.0 0.15 11.55
practices_score 72.0 0.15 10.80
code_quality 55.0 0.10 5.50
Overall 1.00 68.5
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade B- (68/100). Dimensions: security 100, maintainability 75. 197 findings (18 security). 19,535 lines analyzed.

Showing 161 of 227 actionable findings. 333 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 [MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes.
Add `import queue` at the top of the file.
interpreter/core/archived_server_2.py:70
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
.github/workflows/python-package.yml:35 CI/CD securityworkflow secretsGitHub Actions
critical System graph security Secrets conf 1.00 Possible secret in interpreter/core/computer/terminal/terminal.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
interpreter/core/computer/terminal/terminal.py:57
high Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain "../" — directory escape.
Review and fix per the pattern semantics. See CWE-22 / A01:2021 for context.
3 files, 3 locations
interpreter/core/utils/telemetry.py:24
interpreter/terminal_interface/contributing_conversations.py:14
interpreter/terminal_interface/magic_commands.py:218
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.
Review and fix per the pattern semantics. See CWE-78 / for context.
interpreter/core/utils/scan_code.py:38
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED036] Python Os System Call: os.system() invokes shell with no escaping.
Review and fix per the pattern semantics. See CWE-78 / for context.
interpreter/core/computer/keyboard/keyboard.py:112
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED036] Python Os System Call: os.system() invokes shell with no escaping.
Review and fix per the pattern semantics. See CWE-78 / for context.
interpreter/computer_use/tools/computer.py:185
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED106] Phantom test coverage: test_ui: Test function `test_ui` 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.
interpreter/core/archived_server_1.py:57
high Security checks quality Quality conf 1.00 ✓ Repobility 8 occurrences [MINED108] `self.clear_queue` used but never assigned in __init__: Method `clear_input_queue` of class `AsyncInterpreter` reads `self.clear_queue`, 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.clear_queue = <default>` in __init__, or add a class-level default.
2 files, 8 locations
interpreter/core/archived_server_2.py:77, 80, 102, 104, 110, 141, 181 (7 hits)
interpreter/core/core.py:167
high Security checks quality Quality conf 1.00 ✓ Repobility 11 occurrences [MINED110] Blocking call `time.sleep` inside async function `main`: `time.sleep` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making progress.
Use the async equivalent: `aiohttp` instead of `requests`, `asyncio.sleep` instead of `time.sleep`, `aiofiles` instead of `open`.
3 files, 11 locations
interpreter/computer_use/loop.py:429, 434, 438, 469, 477, 478, 484 (7 hits)
interpreter/computer_use/tools/computer.py:194, 202 (2 hits)
interpreter/core/async_core.py:832, 930 (2 hits)
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST / has no auth: Handler `post_input` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
interpreter/core/async_core.py:635
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /chat has no auth: Handler `stream_endpoint` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
interpreter/core/archived_server_1.py:23
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /openai/chat/completions has no auth: Handler `chat_completion` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
interpreter/computer_use/loop.py:354
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /openai/chat/completions has no auth: Handler `chat_completion` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
interpreter/core/async_core.py:820
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /run has no auth: Handler `run_code` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
interpreter/core/async_core.py:683
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /settings has no auth: Handler `set_settings` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
interpreter/core/async_core.py:643
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /settings has no auth: Handler `settings` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
interpreter/core/archived_server_2.py:208
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED112] FastAPI POST /upload has no auth: Handler `upload_file` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body.
Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional.
interpreter/core/async_core.py:696
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED118] Dockerfile FROM `python:3.11.8` not pinned by digest: `FROM python:3.11.8` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM python:3.11.8@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
Dockerfile:5
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED118] Dockerfile FROM `python:3.11` not pinned by digest: `FROM python:3.11` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM python:3.11@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
examples/Dockerfile:4
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `wow-actions/potential-duplicates` pinned to mutable ref `@v1`: `uses: wow-actions/potential-duplicates@v1` 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. …
.github/workflows/potential-duplicates.yml:9 CI/CD securitySupply chainGitHub Actions
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 3 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v3`: `uses: actions/checkout@v3` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
lines 18, 20
.github/workflows/python-package.yml:18, 20 (3 hits)
CI/CD securitySupply chainGitHub Actions
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def chat_completion` — interpreter/core/async_core.py:832
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
interpreter/core/async_core.py:832 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def chat_completion` — interpreter/core/async_core.py:930
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
interpreter/core/async_core.py:930 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def main` — interpreter/computer_use/loop.py:429
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
interpreter/computer_use/loop.py:429 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def main` — interpreter/computer_use/loop.py:438
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
interpreter/computer_use/loop.py:438 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 2 occurrences Blocking `time.sleep(...)` inside `async def websocket_endpoint` — interpreter/core/async_core.py:561
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
lines 561
interpreter/core/async_core.py:561 (2 hits)
Sync io in asyncPerformance
high System graph security auth conf 1.00 FastAPI POST `chat_completion` without auth dependency — interpreter/computer_use/loop.py:353
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
interpreter/computer_use/loop.py:353 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `chat_completion` without auth dependency — interpreter/core/async_core.py:819
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
interpreter/core/async_core.py:819 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_input` without auth dependency — interpreter/core/async_core.py:634
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
interpreter/core/async_core.py:634 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `run_code` without auth dependency — interpreter/core/async_core.py:682
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
interpreter/core/async_core.py:682 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_settings` without auth dependency — interpreter/core/async_core.py:642
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
interpreter/core/async_core.py:642 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `settings` without auth dependency — interpreter/core/archived_server_2.py:207
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
interpreter/core/archived_server_2.py:207 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stream_endpoint` without auth dependency — interpreter/core/archived_server_1.py:22
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
interpreter/core/archived_server_1.py:22 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_file` without auth dependency — interpreter/core/async_core.py:695
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
interpreter/core/async_core.py:695 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'eval_used' in interpreter/core/computer/display/point/point.py:465
Found a known-risky pattern (eval_used). Review and replace if possible.
interpreter/core/computer/display/point/point.py:465 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in interpreter/core/computer/skills/skills.py:256
Found a known-risky pattern (exec_used). Review and replace if possible.
interpreter/core/computer/skills/skills.py:256 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in interpreter/terminal_interface/profiles/profiles.py:148
Found a known-risky pattern (exec_used). Review and replace if possible.
interpreter/terminal_interface/profiles/profiles.py:148 Exec used
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 0.0% 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: GET /settings/{setting}.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
interpreter/core/async_core.py:669
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 /settings.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
interpreter/core/async_core.py:642
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 /settings.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
interpreter/core/archived_server_2.py:207
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 Practices conf 1.00 [CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts.
Add a .gitignore appropriate for your language/framework.
low Security checks quality Error handling conf 1.00 3 occurrences [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
3 files, 3 locations
interpreter/core/archived_server_2.py:93
interpreter/core/computer/keyboard/keyboard.py:28
interpreter/core/llm/utils/parse_partial_json.py:9
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `__init__` (list): `def __init__(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def __init__(x=None): x = x or []`
interpreter/core/core.py:42
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `count_messages_tokens` (list): `def count_messages_tokens(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def count_messages_tokens(x=None): x = x or []`
interpreter/terminal_interface/utils/count_tokens.py:47
low Security checks security Injection conf 0.50 [SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.
Use subprocess with shell=False and a list of args. Never eval user input.
interpreter/core/utils/scan_code.py:38
medium Security checks quality Quality conf 1.00 [SEC123] Production stack trace / debug output exposed: Debug mode left on in production exposes stack traces, environment variables, framework internals — sometimes triggers RCE (Django debug page with arbitrary template eval).
Set DEBUG=False / APP_DEBUG=false in production. Provide a generic 500 handler that logs to backend but returns a sanitized page to clients.
interpreter/terminal_interface/magic_commands.py:118
medium Security checks quality Quality conf 1.00 [SEC125] AI placeholder credential left in source (your-api-key-here style): AI coding assistants frequently emit placeholder credentials shaped like `API_KEY = "your-api-key-here"` instead of pulling from env. These get committed verbatim — production code with a literal placeholder string is a near-certain bug, and the value also leaks what credential type the system expects to authentication crawlers. CWE-1188. Distinctive AI footprint: the exact phrase shape `your-X-here` is uncommon in hand
Replace with env lookup: `API_KEY = os.environ['SERVICE_API_KEY']`. Move actual key to a secret manager. Add a startup check that the env var is non-empty so missing config fails loudly instead of shipping the placeholder.
interpreter/terminal_interface/profiles/defaults/template_profile.py:24
low Security checks quality Error handling conf 0.55 ✓ Repobility 25 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
9 files, 25 locations
interpreter/core/async_core.py:186, 490, 534, 599, 620, 639, 692, 701, +1 more (9 hits)
interpreter/core/respond.py:102, 351, 384, 401 (4 hits)
interpreter/terminal_interface/utils/count_tokens.py:28, 42, 69 (3 hits)
scripts/wtf.py:280, 344, 378 (3 hits)
interpreter/terminal_interface/local_setup.py:183, 442 (2 hits)
interpreter/computer_use/loop.py:412
interpreter/core/archived_server_2.py:248
interpreter/terminal_interface/profiles/profiles.py:56
Error handlingquality
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore 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.
examples/Dockerfile:4 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:6 CI/CD securitycontainers
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
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 hardware Security conf 1.00 Dockerfile runs as root: examples/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in interpreter/computer_use/tools/bash.py:32
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
interpreter/computer_use/tools/bash.py:32 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in interpreter/core/utils/scan_code.py:40
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
interpreter/core/utils/scan_code.py:40 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in interpreter/terminal_interface/local_setup.py:433
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
interpreter/terminal_interface/local_setup.py:433 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in scripts/wtf.py:276
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
scripts/wtf.py:276 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/__init__.py:37
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/computer_use/unused_markdown.py:204
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/computer/browser/browser.py:32
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/computer/display/point/point.py:29
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/computer/os/os.py:50
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/computer/sms/sms.py:40
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/computer/terminal/languages/java.py:53
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/computer/terminal/languages/subprocess_language.py:50
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/computer/utils/run_applescript.py:13
`subprocess.check_output(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/llm/llm.py:375
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/utils/scan_code.py:38
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/core/utils/telemetry.py:60
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/terminal_interface/conversation_navigator.py:98
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/terminal_interface/local_setup.py:169
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/terminal_interface/profiles/defaults/codestral-few-shot.py:35
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/terminal_interface/profiles/defaults/screenpipe.py:33
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/terminal_interface/profiles/profiles.py:111
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/terminal_interface/terminal_interface.py:333
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/terminal_interface/utils/check_for_update.py:8
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — interpreter/terminal_interface/utils/display_output.py:82
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/wtf.py:190
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
4 test file(s) for 140 source file(s) (ratio 0.03). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks software Race condition conf 1.00 [SEC124] TOCTOU file access (os.access then open): Check-then-use file pattern (access/exists then open) lets an attacker swap the file between check and use (symlink attack). `mktemp` is deprecated for the same reason.
Use `os.open(path, os.O_CREAT | os.O_EXCL | os.O_WRONLY)` for atomic create-only. Use `tempfile.NamedTemporaryFile()` (not `mktemp`). For locking, use `fcntl.flock`.
interpreter/core/utils/telemetry.py:31
low Security checks software Race condition conf 1.00 [SEC124] TOCTOU file access (os.access then open): Check-then-use file pattern (access/exists then open) lets an attacker swap the file between check and use (symlink attack). `mktemp` is deprecated for the same reason.
Use `os.open(path, os.O_CREAT | os.O_EXCL | os.O_WRONLY)` for atomic create-only. Use `tempfile.NamedTemporaryFile()` (not `mktemp`). For locking, use `fcntl.flock`.
interpreter/core/computer/skills/skills.py:249
high Security checks cicd CI/CD security conf 0.72 Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
examples/Dockerfile:10 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.72 Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
Dockerfile:24 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 16 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, 14 locations
interpreter/terminal_interface/profiles/defaults/llama3-vision.py:3, 36 (2 hits)
interpreter/terminal_interface/profiles/defaults/llama3.py:1, 3 (2 hits)
interpreter/computer_use/loop.py:44
interpreter/core/async_core.py:245
interpreter/core/computer/mouse/mouse.py:221
interpreter/core/llm/run_tool_calling_llm.py:103
interpreter/terminal_interface/profiles/defaults/codestral-vision.py:47
interpreter/terminal_interface/profiles/defaults/codestral.py:1
duplicationquality
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: python:3.11
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
examples/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.11.8
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:5 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: examples/interactive_quickstart.py
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: interpreter/core/default_system_message.py
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: interpreter/terminal_interface/profiles/defaults/assistant.py
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: interpreter/terminal_interface/profiles/defaults/aws-docs.py
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: interpreter/terminal_interface/profiles/defaults/bedrock-anthropic.py
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: interpreter/terminal_interface/profiles/defaults/cerebras.py
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: interpreter/terminal_interface/profiles/defaults/codestral-few-shot.py
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: interpreter/terminal_interface/profiles/defaults/codestral-os.py
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: interpreter/terminal_interface/profiles/defaults/codestral-vision.py
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: interpreter/terminal_interface/profiles/defaults/codestral.py
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: interpreter/terminal_interface/profiles/defaults/gemma2.py
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: interpreter/terminal_interface/profiles/defaults/groq.py
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: interpreter/terminal_interface/profiles/defaults/llama3-os.py
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: interpreter/terminal_interface/profiles/defaults/llama3-vision.py
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: interpreter/terminal_interface/profiles/defaults/llama3.py
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: interpreter/terminal_interface/profiles/defaults/llama31-database.py
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: interpreter/terminal_interface/profiles/defaults/local-assistant.py
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: interpreter/terminal_interface/profiles/defaults/local-os.py
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: interpreter/terminal_interface/profiles/defaults/local.py
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: interpreter/terminal_interface/profiles/defaults/obsidian.py
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: interpreter/terminal_interface/profiles/defaults/os.py
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: interpreter/terminal_interface/profiles/defaults/qwen.py
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: interpreter/terminal_interface/profiles/defaults/screenpipe.py
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: interpreter/terminal_interface/profiles/defaults/template_profile.py
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: interpreter/terminal_interface/profiles/defaults/the01.py
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: interpreter/terminal_interface/profiles/historical_profiles.py
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: interpreter/terminal_interface/utils/oi_dir.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph security security conf 1.00 Insecure pattern 'debug_true' in interpreter/terminal_interface/magic_commands.py:118
Found a known-risky pattern (debug_true). Review and replace if possible.
interpreter/terminal_interface/magic_commands.py:118 Debug true
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: interpreter/__init__.py:check_for_update, interpreter/terminal_interface/utils/check_for_update.py:check_for_update This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or docu…
17 occurrences
repo-level (17 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: interpreter/__init__.py:print_markdown, interpreter/terminal_interface/utils/display_markdown_message.py:display_markdown_message, interpreter/computer_use/loop.py:print_markdown This is *the* AI-coder failure mode (4× more duplication in vibe-coded …
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: interpreter/core/computer/terminal/languages/powershell.py:detect_active_line, interpreter/core/computer/terminal/languages/ruby.py:detect_active_line, interpreter/core/computer/terminal/languages/javascript.py:detect_active_line, interpreter/core/com…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `chunk_copy` in interpreter/core/async_core.py:264
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 `image_data_copy` in interpreter/core/computer/display/point/point.py:80
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: authenticate_function
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/core/async_core.py:279
low System graph software Dead code conf 1.00 Possibly dead Python function: center
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/core/computer/display/display.py:73
low System graph software Dead code conf 1.00 Possibly dead Python function: check_mouse_position
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/computer_use/loop.py:544
low System graph software Dead code conf 1.00 Possibly dead Python function: chunks
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/computer_use/tools/computer.py:66
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_input_queue
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/core/archived_server_2.py:76
low System graph software Dead code conf 1.00 Possibly dead Python function: clear_output_queue
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/core/archived_server_2.py:79
low System graph software Dead code conf 1.00 Possibly dead Python function: default_handle
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:146
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_auto_run
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:126
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_count_tokens
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:173
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_debug
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:103
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_info
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:137
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_load_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:162
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_reset
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:141
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_save_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:151
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_undo
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:13
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_verbose
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/magic_commands.py:80
low System graph software Dead code conf 1.00 Possibly dead Python function: summarize
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/core/computer/ai/ai.py:189
low System graph software Dead code conf 1.00 Possibly dead Python function: unread_count
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/core/computer/mail/mail.py:109
low System graph software Dead code conf 1.00 Possibly dead Python function: update_from_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/components/base_block.py:16
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Assign
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/profiles/profiles.py:133
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_ImportFrom
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
interpreter/terminal_interface/profiles/profiles.py:126
low System graph quality Integrity conf 1.00 Stub function `detect_active_line` (body is just `pass`/`return`) — interpreter/core/computer/terminal/languages/subprocess_language.py:20
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `output_callback` (body is just `pass`/`return`) — interpreter/computer_use/loop.py:495
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: GET /
`interpreter/core/async_core.py` declares `GET /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /download/{filename}
`interpreter/core/async_core.py` declares `GET /download/{filename}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /heartbeat
`interpreter/core/async_core.py` declares `GET /heartbeat` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /settings/{setting}
`interpreter/core/async_core.py` declares `GET /settings/{setting}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /test
`interpreter/core/archived_server_1.py` declares `GET /test` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /
`interpreter/core/async_core.py` declares `POST /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /chat
`interpreter/core/archived_server_1.py` declares `POST /chat` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /openai/chat/completions
`interpreter/computer_use/loop.py` declares `POST /openai/chat/completions` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /run
`interpreter/core/async_core.py` declares `POST /run` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /settings
`interpreter/core/archived_server_2.py` declares `POST /settings` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /upload
`interpreter/core/async_core.py` declares `POST /upload` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: tests/test_interpreter.py (1327 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/1fe653c2-244d-4d1f-8b72-4bf988470546/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/1fe653c2-244d-4d1f-8b72-4bf988470546/

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.