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.

GenericAgent

https://github.com/lsdefine/GenericAgent.git · scanned 2026-05-17 02:55 UTC (14 hours, 30 minutes ago) · 10 languages

232 findings (24 legacy + 208 scanner) 55th percentile · Python · medium (20-100K LoC) Scanner says 82 (lower by 28)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 14 hours, 29 minutes ago · v2 · 129 findings from 2 sources. Findings combine the legacy security pipeline AND the multi-layer engine (atlas, wiring, flows, ranked) AND verified AI agent contributions.

JSON
Severity distribution — click a segment to filter
Active filters: source: scanner × excluding tests × Reset all
Severity: Critical 0 High 27 Medium 17 Low 80 Source: Legacy 24 9-layer 105 Crowd 0 Layer: Quality 54 Security 18 Software 33 Frontend 3 Data 1 Cicd 1 Api 19
Scan summary Repository scanned at 82.3/100 with 100.0% coverage. It contains 1452 nodes across 18 cross-layer flows, written primarily in mixed languages. Engine surfaced 105 findings — concentrated in quality (42), software (28), api (19). Risk profile is high: 0 critical, 13 high, 9 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 105 of 129 findings. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high 9-layer quality integrity conf 1.00 Blocking `requests.post(...)` inside `async def _get_access_token` — frontends/dingtalkapp.py:35
Sync I/O inside an async function blocks the event loop. While `requests.post(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_t…
frontends/dingtalkapp.py:35 integritysync-io-in-asyncperformance
high 9-layer quality integrity conf 1.00 Blocking `requests.post(...)` inside `async def _send_batch_message` — frontends/dingtalkapp.py:66
Sync I/O inside an async function blocks the event loop. While `requests.post(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_t…
frontends/dingtalkapp.py:66 integritysync-io-in-asyncperformance
high 9-layer api wiring conf 1.00 Dangling fetch: GET http://127.0.0.1:18765 (assets/tmwd_cdp_bridge/background.js:220)
`assets/tmwd_cdp_bridge/background.js:220` calls `GET http://127.0.0.1:18765` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/127.0.0.1:18765` If this points at an external API, prefix it with `https://` so the…
wiringdangling-fetchfetch
high 9-layer security auth conf 1.00 FastAPI POST `api_chat` without auth dependency — frontends/conductor.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.
frontends/conductor.py:390 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `api_start_subagent` without auth dependency — frontends/conductor.py:346
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
frontends/conductor.py:346 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `api_subagent_action` without auth dependency — frontends/conductor.py:352
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
frontends/conductor.py:352 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `create_post` without auth dependency — assets/agent_bbs.py:157
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
assets/agent_bbs.py:157 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `startup` without auth dependency — assets/agent_bbs.py:145
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
assets/agent_bbs.py:145 authowaspauth.fastapi.unauth_mutation
high 9-layer security auth conf 1.00 FastAPI POST `upload_file` without auth dependency — assets/agent_bbs.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.
assets/agent_bbs.py:195 authowaspauth.fastapi.unauth_mutation
high 9-layer security owasp conf 1.00 Insecure pattern 'eval_used' in assets/tmwd_cdp_bridge/background.js:177
Found a known-risky pattern (eval_used). Review and replace if possible.
assets/tmwd_cdp_bridge/background.js:177 owaspeval_used
high 9-layer security owasp conf 1.00 Insecure pattern 'eval_used' in frontends/desktop/src-tauri/src/lib.rs:282
Found a known-risky pattern (eval_used). Review and replace if possible.
frontends/desktop/src-tauri/src/lib.rs:282 owaspeval_used
high 9-layer security owasp conf 1.00 Insecure pattern 'eval_used' in ga.py:300
Found a known-risky pattern (eval_used). Review and replace if possible.
ga.py:300 owaspeval_used
high 9-layer security owasp conf 1.00 Insecure pattern 'exec_used' in ga.py:301
Found a known-risky pattern (exec_used). Review and replace if possible.
ga.py:301 owaspexec_used
medium 9-layer quality integrity conf 1.00 Network/subprocess call without timeout or try/except — agentmain.py:194
`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.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 Network/subprocess call without timeout or try/except — frontends/desktop_bridge.py:571
`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.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 Network/subprocess call without timeout or try/except — ga_cli/cli.py:132
`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.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 Network/subprocess call without timeout or try/except — memory/adb_ui.py:80
`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.
integrityfragile-runtimerobustness
medium 9-layer quality integrity conf 1.00 Network/subprocess call without timeout or try/except — memory/vision_api.template.py:81
`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.
integrityfragile-runtimerobustness
medium 9-layer 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.
coverageauth
medium 9-layer cicd coverage conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
coverage
medium 9-layer data coverage conf 1.00 ORM models found but no DB engine detected
The repo defines tables/models but no DB connection string was found. Likely lives in env vars or a config file the scanner didn't read.
coverage
medium 9-layer quality tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 61 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
testscoverage
low 9-layer software dead-code-candidate conf 1.00 File has no detected symbols: ga_cli/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low 9-layer software dead-code-candidate conf 1.00 File has no detected symbols: mykey_template.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low 9-layer software dead-code-candidate conf 1.00 File has no detected symbols: mykey_template_en.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
dead-code-candidate
low 9-layer quality integrity conf 1.00 Legacy-named symbol `_to_markdown_v2` in frontends/tgapp.py:89
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.
integritylegacy-markerdead-code
low 9-layer quality integrity conf 1.00 Legacy-named symbol `desktop_pet_v2` in frontends/stapp.py:77
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.
integritylegacy-markerdead-code
low 9-layer quality integrity conf 1.00 Legacy-named symbol `register_p2_im_message_receive_v1` in frontends/fsapp.py:689
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.
integritylegacy-markerdead-code
low 9-layer quality integrity conf 1.00 Legacy-named symbol `tuiapp_v2` in frontends/tuiapp_v2.py:4
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
integritylegacy-markerdead-code
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: llmcore.py:ask, llmcore.py:ask 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: llmcore.py:make_messages, llmcore.py:make_messages 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: llmcore.py:chat, llmcore.py:chat 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/qtapp.py:paintEvent, frontends/qtapp.py:paintEvent 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/qtapp.py:enterEvent, frontends/qtapp.py:enterEvent 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/qtapp.py:leaveEvent, frontends/qtapp.py:leaveEvent 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/qtapp.py:eventFilter, frontends/qtapp.py:eventFilter 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/qtapp.py:resizeEvent, frontends/qtapp.py:resizeEvent 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/tgapp.py:prime, frontends/tgapp.py:prime 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/tgapp.py:add_chunk, frontends/tgapp.py:add_chunk 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/tgapp.py:finalize, frontends/tgapp.py:finalize 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/tgapp.py:finish_with_notice, frontends/tgapp.py:finish_with_notice 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/tuiapp.py:default_agent_factory, frontends/tuiapp_v2.py:default_agent_factory 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/tuiapp.py:current, frontends/tuiapp_v2.py:current 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/tuiapp_v2.py:on_mount, frontends/tuiapp_v2.py:on_mount 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.
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: frontends/tuiapp_v2.py:on_option_list_option_selected, frontends/tuiapp_v2.py:on_option_list_option_selected This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document wh…
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: memory/skill_search/skill_search/engine.py:from_dict, memory/skill_search/skill_search/engine.py:from_dict 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 …
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: frontends/tuiapp_v2.py:action_cancel, frontends/tuiapp_v2.py:action_cancel, frontends/tuiapp_v2.py:action_cancel This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or documen…
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: frontends/tuiapp_v2.py:compose, frontends/tuiapp_v2.py:compose, frontends/tuiapp_v2.py:compose 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 sepa…
integrityduplicatedry
low 9-layer quality integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: llmcore.py:raw_ask, llmcore.py:raw_ask, llmcore.py:raw_ask, llmcore.py:raw_ask 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.
integrityduplicatedry
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_ask_user
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:308 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_code_run
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:281 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_file_patch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:358 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_file_read
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:405 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_file_write
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:372 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_no_tool
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:452 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_start_long_term_update
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:502 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_update_working_checkpoint
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:435 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_web_execute_js
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:330 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: do_web_scan
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:315 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: enter_plan_mode
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:427 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: fast_ask
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
llmcore.py:1029 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: handle_close
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
TMWebDriver.py:154 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: json_default
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agent_loop.py:31 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: jump
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
TMWebDriver.py:281 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: log_request
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
TMWebDriver.py:108 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: replacer
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:180 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: run_agent_turn
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
frontends/desktop_bridge.py:205 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: safeprint
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
llmcore.py:85 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: set_session
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
TMWebDriver.py:270 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: start_temp_monitor
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
simphtml.py:636 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: stream_reader
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
ga.py:41 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: to_allowed_set
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
frontends/chatapp_common.py:214 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: tool_after_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agent_loop.py:16 dead-code
low 9-layer software dead-code conf 1.00 Possibly dead Python function: tool_before_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agent_loop.py:15 dead-code
low 9-layer frontend frontend-quality conf 1.00 Stray `console.log` in TS/JS — assets/tmwd_cdp_bridge/background.js:3
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
frontend-qualityfq.console-leak
low 9-layer frontend frontend-quality conf 1.00 Stray `console.log` in TS/JS — frontends/desktop/static/app.js:1838
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
frontend-qualityfq.console-leak
low 9-layer quality integrity conf 1.00 Stub function `action_noop` (body is just `pass`/`return`) — frontends/tuiapp_v2.py:1182
Likely an AI scaffold that was never filled in. Remove or implement.
integrityempty-handlerdead-code
low 9-layer api wiring conf 1.00 Unused endpoint: ANY /api/longpoll
`TMWebDriver.py` declares `ANY /api/longpoll` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: ANY /api/result
`TMWebDriver.py` declares `ANY /api/result` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: ANY /link
`TMWebDriver.py` declares `ANY /link` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /
`frontends/conductor.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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /authors
`assets/agent_bbs.py` declares `GET /authors` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /chat
`frontends/conductor.py` declares `GET /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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /count
`assets/agent_bbs.py` declares `GET /count` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /file/{rand_id}/{filename}
`assets/agent_bbs.py` declares `GET /file/{rand_id}/{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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /poll
`assets/agent_bbs.py` declares `GET /poll` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /posts
`assets/agent_bbs.py` declares `GET /posts` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /readme
`frontends/conductor.py` declares `GET /readme` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: GET /subagent
`frontends/conductor.py` declares `GET /subagent` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: POST /chat
`frontends/conductor.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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: POST /file/upload
`assets/agent_bbs.py` declares `POST /file/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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: POST /post
`assets/agent_bbs.py` declares `POST /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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: POST /register
`assets/agent_bbs.py` declares `POST /register` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: POST /subagent
`frontends/conductor.py` declares `POST /subagent` 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.
wiringunused-endpoint
low 9-layer api wiring conf 1.00 Unused endpoint: POST /subagent/{sid}
`frontends/conductor.py` declares `POST /subagent/{sid}` 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.
wiringunused-endpoint
low 9-layer quality complexity conf 1.00 Very large file: assets/configure_mykey.py (1284 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
complexity
low 9-layer quality complexity conf 1.00 Very large file: frontends/desktop/static/app.js (2113 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
complexity
low 9-layer quality complexity conf 1.00 Very large file: frontends/qtapp.py (2478 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
complexity
low 9-layer quality complexity conf 1.00 Very large file: frontends/tuiapp_v2.py (3935 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
complexity
low 9-layer quality complexity conf 1.00 Very large file: llmcore.py (1032 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
complexity
info 9-layer quality integrity conf 1.00 Commented-code block (5 lines) in frontends/desktop/static/app.js:1358
A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest.
integritycommented-codedead-code
info 9-layer quality integrity conf 1.00 Commented-code block (5 lines) in mykey_template_en.py:10
A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest.
integritycommented-codedead-code
info 9-layer quality integrity conf 1.00 Commented-code block (6 lines) in mykey_template.py:50
A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest.
integritycommented-codedead-code
info 9-layer quality integrity conf 1.00 Commented-code block (8 lines) in frontends/tuiapp_v2.py:116
A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest.
integritycommented-codedead-code
info 9-layer frontend coverage conf 1.00 No frontend routes/components detected
No React/Vue/Next routes were found. This is fine for backend-only repos.
coverage
{# ── 2026-05-17 Round 14: AI-agent bridge footer ────────────────────── Discoverability: the /agents/voting/ guide + MCP manifest exist but aren't linked from anywhere users actually land. Small, opt-in footer. #}
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/6356c847-6391-4ef0-ab26-f9c0d2936561/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/6356c847-6391-4ef0-ab26-f9c0d2936561/

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.