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.

xforce-io/alfred

https://github.com/xforce-io/alfred · scanned 2026-06-16 01:02 UTC (2 months, 1 week ago)

136 raw signals (0 security + 136 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 120 actionable findings from 1 signal source. 16 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 77.1/100 with 100.0% coverage. It contains 5541 nodes across 19 cross-layer flows, written primarily in mixed languages. Engine surfaced 136 findings — concentrated in quality (77), software (29), api (20). Risk profile is high: 0 critical, 3 high, 24 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 107 of 120 actionable findings. 136 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 System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:9222 (skills/web/scripts/start-server.ts:78)
`skills/web/scripts/start-server.ts:78` calls `GET http://localhost:9222` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:9222` If this points at an external API, prefix it with `https://` so the matc…
Dangling fetchFetch
high System graph security security conf 1.00 Insecure pattern 'eval_used' in skills/web/src/client.ts:363
Found a known-risky pattern (eval_used). Review and replace if possible.
skills/web/src/client.ts:363 Eval used
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — skills/web/src/client.ts:299
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — src/everbot/web/static/js/app.js:31
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/daily-attractor/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/daily-attractor/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/gray-rhino/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/gray-rhino/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/invest/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/invest/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/ops/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/ops/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/paper-discovery/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/paper-discovery/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/trace-review/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/trace-review/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/trajectory-reviewer/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/trajectory-reviewer/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/twitter-watch/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/twitter-watch/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skills/web/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skills/web/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in src/everbot/web/static/js/app.js:122
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
src/everbot/web/static/js/app.js:122 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in skills/web/scripts/start-server.ts:2
Found a known-risky pattern (node_child_process). Review and replace if possible.
skills/web/scripts/start-server.ts:2 Node child process
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — skills/codex-coding-tool/scripts/run_codex.py:21
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — skills/daily-attractor/scripts/push_telegram.py:21
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — skills/daily-attractor/scripts/scheduler.py:31
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — skills/skill-installer/scripts/install.py:307
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — skills/twitter-watch/scripts/fetch_tweets.py:49
`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 — src/everbot/cli/launch_agent.py:121
`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 — src/everbot/cli/skills_cli.py:36
`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 security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 25 placeholder/mock markers across 10 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph quality Integrity conf 1.00 18 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ALFRED_DEBUG_HTTP`, `ALFRED_HOME`, `ALFRED_PROJECT_ROOT`, `ALFRED_REPO_ROOT`, `ALFRED_SKILL_MODEL`, `ALFRED_SKILL_REGISTRY`, `ALIYUN_API_KEY`, `DAILY_ATTRACTOR_TIME` + 10 more. Add them (with a placeholder/comment) to .env.example so onboarding do…
config drift
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 528 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 12 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: skills/skill-installer/scripts/remove.py:find_installed_skill, skills/skill-installer/scripts/update.py:find_installed_skill This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidat…
12 occurrences
repo-level (12 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 4 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: skills/skill-installer/scripts/remove.py:find_skills_directories, skills/skill-installer/scripts/list.py:find_skills_directories, skills/skill-installer/scripts/update.py:find_skills_directories This is *the* AI-coder failure mode (4× more duplicatio…
4 occurrences
repo-level (4 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: src/everbot/core/slm/models.py:to_json, src/everbot/core/slm/models.py:to_json, src/everbot/core/slm/models.py:to_json, src/everbot/core/slm/models.py:to_json This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: src/everbot/core/slm/models.py:to_dict, src/everbot/core/slm/models.py:to_dict, src/everbot/core/slm/models.py:to_dict, src/everbot/core/slm/models.py:to_dict This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `days_old` in skills/paper-discovery/scripts/fetch_papers.py:335
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 `dimension_old` in skills/daily-attractor/scripts/main.py:53
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 `evt_old` in tests/unit/test_session_mailbox.py:72
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 `llm_v1` in tests/integration/test_slm_lifecycle.py:157
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 `migrated_backup` in src/everbot/core/session/session.py:716
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 `r_old` in skills/trace-review/tests/test_review_run.py:442
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 `report_v1` in tests/integration/test_slm_real_llm.py:212
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 `search_v2` in tests/unit/test_skill_log_recorder.py:313
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_cleanup_redacts_historical_logs_and_creates_backup` in tests/unit/test_log_cleanup.py:12
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_fingerprint_changed_respawns_and_closes_old` in tests/unit/test_milkie_pool.py:180
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_placeholder_evicted_with_heartbeat_legacy` in tests/unit/test_history_policy.py:207
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_save_creates_backup` in tests/unit/test_profile_store.py:100
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: cmd_cleanup_logs
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/main.py:213
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_config
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/main.py:113
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_doctor
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/main.py:193
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_infer
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/invest/scripts/tools.py:910
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_list
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/main.py:57
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_migrate_agent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/main.py:181
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_report
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/invest/scripts/tools.py:982
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_scan
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/invest/scripts/tools.py:530
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_service_install
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/launch_agent.py:129
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_service_status
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/launch_agent.py:157
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_service_uninstall
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/launch_agent.py:145
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_show
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/invest/scripts/tools.py:1042
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_skills_default
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/skills_cli.py:104
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_skills_disable
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/skills_cli.py:99
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_skills_enable
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/skills_cli.py:94
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_skills_install
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/skills_cli.py:45
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_skills_list
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/skills_cli.py:55
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_skills_remove
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/skills_cli.py:73
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_skills_search
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/skills_cli.py:40
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_skills_update
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/skills_cli.py:60
low System graph software Dead code conf 1.00 Possibly dead Python function: detect_local_proxy_url
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/cli/launch_agent.py:29
low System graph software Dead code conf 1.00 Possibly dead Python function: emit_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/core/runtime/cron_delivery.py:205
low System graph software Dead code conf 1.00 Possibly dead Python function: load_session_messages
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/core/scanners/session_scanner.py:205
low System graph software Dead code conf 1.00 Possibly dead Python function: register_agent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/core/runtime/scheduler.py:187
low System graph software Dead code conf 1.00 Possibly dead Python function: save_skill_source_info
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
skills/skill-installer/scripts/update.py:114
low System graph software Dead code conf 1.00 Possibly dead Python function: set_history_messages
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/everbot_demo.py:142
low System graph software Dead code conf 1.00 Possibly dead Python function: task_done_callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/web/services/chat_service.py:447
low System graph software Dead code conf 1.00 Possibly dead Python function: truncate_text
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/view_trajectory.py:208
low System graph software Dead code conf 1.00 Possibly dead Python function: unregister_agent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/everbot/core/runtime/scheduler.py:191
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — skills/web/scripts/start-server.ts:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — skills/web/src/index.ts:175
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — src/everbot/web/static/js/app.js:259
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Integrity conf 1.00 Stub function `set_session_id` (body is just `pass`/`return`) — examples/everbot_demo.py:145
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /pages/:id
`skills/web/src/index.ts` declares `DELETE /pages/:id` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /pages/:name
`skills/web/src/index.ts` declares `DELETE /pages/:name` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /
`src/everbot/web/app.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 /api/agents
`src/everbot/web/app.py` declares `GET /api/agents` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/agents/{agent_name}/session/trace
`src/everbot/web/app.py` declares `GET /api/agents/{agent_name}/session/trace` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/agents/{agent_name}/sessions
`src/everbot/web/app.py` declares `GET /api/agents/{agent_name}/sessions` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/logs/heartbeat/events/stream
`src/everbot/web/app.py` declares `GET /api/logs/heartbeat/events/stream` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/logs/heartbeat/stream
`src/everbot/web/app.py` declares `GET /api/logs/heartbeat/stream` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/settings/skills
`src/everbot/web/app.py` declares `GET /api/settings/skills` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/settings/telegram
`src/everbot/web/app.py` declares `GET /api/settings/telegram` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/status
`src/everbot/web/app.py` declares `GET /api/status` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /pages
`skills/web/src/index.ts` declares `GET /pages` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/agents/{agent_name}/heartbeat
`src/everbot/web/app.py` declares `POST /api/agents/{agent_name}/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: POST /api/agents/{agent_name}/sessions
`src/everbot/web/app.py` declares `POST /api/agents/{agent_name}/sessions` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/agents/{agent_name}/sessions/reset
`src/everbot/web/app.py` declares `POST /api/agents/{agent_name}/sessions/reset` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes i…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/agents/{agent_name}/sessions/{session_id}/clear-history
`src/everbot/web/app.py` declares `POST /api/agents/{agent_name}/sessions/{session_id}/clear-history` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or docum…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/settings/skills/{skill_name}/toggle
`src/everbot/web/app.py` declares `POST /api/settings/skills/{skill_name}/toggle` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/settings/telegram
`src/everbot/web/app.py` declares `POST /api/settings/telegram` 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 /pages
`skills/web/src/index.ts` declares `POST /pages` 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: src/everbot/channels/telegram_channel.py (1330 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/everbot/core/runtime/heartbeat.py (1777 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/everbot/core/runtime/turn_orchestrator.py (1243 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/everbot/web/static/js/app.js (1513 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/unit/test_heartbeat_runner_core.py (1646 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/unit/test_inspector.py (1658 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/unit/test_session_manager_core.py (1608 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/unit/test_telegram_channel.py (1931 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/unit/test_turn_orchestrator.py (2696 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/a5a0bb8c-808e-4e8d-9880-1b952c143384/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/a5a0bb8c-808e-4e8d-9880-1b952c143384/

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.