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.

SeregaAteist/Codename_jarvis_interface

https://github.com/SeregaAteist/Codename_jarvis_interface · scanned 2026-06-16 00:07 UTC (2 months, 2 weeks ago)

81 raw signals (0 security + 81 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 2 weeks ago · v1 · 63 actionable findings from 1 signal source. 18 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 55.8/100 with 88.9% coverage. It contains 2115 nodes across 10 cross-layer flows, written primarily in mixed languages. Engine surfaced 81 findings — concentrated in quality (45), software (17), api (9). Risk profile is high: 0 critical, 2 high, 18 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 61 of 63 actionable findings. 81 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 security auth conf 1.00 FastAPI POST `api_add` without auth dependency — modules/anime-monitor/api/server.py:130
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
modules/anime-monitor/api/server.py:130 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_update` without auth dependency — modules/anime-monitor/api/server.py:137
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
modules/anime-monitor/api/server.py:137 securityAuth fastapi unauth mutation
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — hud/electron/preload.js:6
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: .claude/agents/rafail-code.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.
.claude/agents/rafail-code.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: CLAUDE.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.
CLAUDE.md VerificationClaude instruction
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, ci. 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 security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in hud/ui/hud.html:1011
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
hud/ui/hud.html:1011 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in modules/anime-monitor/bot/mini_app/index.html:261
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
modules/anime-monitor/bot/mini_app/index.html:261 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in hud/electron/main.js:2
Found a known-risky pattern (node_child_process). Review and replace if possible.
hud/electron/main.js:2 Node child process
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in CLAUDE.md:77
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
CLAUDE.md:77 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — agents/browser.py:166
`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 — agents/mac_control.py:63
`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 — core/main.py:350
`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 — core/process_manager.py:47
`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 — core/reasoning.py:165
`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 — hud/voice/silero_speaker.py:115
`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 — hud/voice/speaker.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 — modules/tg-media-analyzer/scripts/healthcheck.py:57
`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 cicd CI/CD security 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.
CI/CD securityCoverage
medium System graph network Security conf 1.00 Privileged port 3 in use
Port 3 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
automation/scripts/backup_sqlite.sh Ports
low System graph quality Integrity conf 1.00 20 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANIME_TOPIC_ID`, `ENRICHERS_ENABLED`, `GROUP_CHAT_ID`, `INBOX_CHAT_ID`, `INBOX_TOPIC_ID`, `JARVIS_REPO`, `JARVIS_ROOT`, `JARVIS_TOKEN` + 12 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 102 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 16 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: shared/logging_setup.py:setup_logging, shared/logging_setup.py:setup 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.
16 occurrences
repo-level (16 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: shared/providers/telephony.py:name, shared/providers/telephony.py:name, shared/providers/telephony.py:name 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 …
4 occurrences
repo-level (4 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 `kb_v2` in modules/rafail/connectors/drive.py:45
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 `kb_v2` in modules/rafail/db/seed.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 `kb_v2` in tests/test_rafail_drive.py:15
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 `new_v2` in tests/test_rafail_fixer.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 software Dead code conf 1.00 Possibly dead Python function: cached
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
shared/cache_decorator.py:22
low System graph software Dead code conf 1.00 Possibly dead Python function: classify_material
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/rafail/processor.py:52
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_start
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/rafail/bot/rafail_bot.py:312
low System graph software Dead code conf 1.00 Possibly dead Python function: create_lead
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
providers/crm/stub.py:25
low System graph software Dead code conf 1.00 Possibly dead Python function: decorator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
shared/cache_decorator.py:23
low System graph software Dead code conf 1.00 Possibly dead Python function: enrol_user
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/rafail/connectors/moodle.py:123
low System graph software Dead code conf 1.00 Possibly dead Python function: generate_with_retry
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
shared/llm/providers/gemini.py:82
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_voice
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/rafail/bot/rafail_bot.py:327
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_webhook
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
providers/telephony/stub.py:21
low System graph software Dead code conf 1.00 Possibly dead Python function: list_categories
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
providers/kb/stub.py:29
low System graph software Dead code conf 1.00 Possibly dead Python function: publish
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/shared_desk/bus.py:18
low System graph software Dead code conf 1.00 Possibly dead Python function: run_scan
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/anime-monitor/main.py:72
low System graph software Dead code conf 1.00 Possibly dead Python function: set_prompt
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/rafail/knowledge_base.py:254
low System graph software Dead code conf 1.00 Possibly dead Python function: subscribe
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/shared_desk/bus.py:14
low System graph software Dead code conf 1.00 Possibly dead Python function: toggle_source
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/rafail/knowledge_base.py:239
low System graph software Dead code conf 1.00 Possibly dead Python function: update_course
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/rafail/connectors/moodle.py:110
low System graph software Dead code conf 1.00 Possibly dead Python function: update_slots
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
modules/rafail/connectors/moodle.py:179
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 — hud/electron/main.js:36
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 `analyze` (body is just `pass`/`return`) — modules/tg-media-analyzer/analyzers/base.py:7
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 `download_audio` (body is just `pass`/`return`) — shared/providers/telephony.py:50
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 `find_contact_by_phone` (body is just `pass`/`return`) — shared/providers/crm.py:60
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 /anime/status
`modules/anime-monitor/api/server.py` declares `GET /anime/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 /api/catalog
`modules/anime-monitor/api/server.py` declares `GET /api/catalog` 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/episodes
`modules/anime-monitor/api/server.py` declares `GET /api/episodes` 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/health
`modules/anime-monitor/api/server.py` declares `GET /api/health` 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/recommend
`modules/anime-monitor/api/server.py` declares `GET /api/recommend` 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/watchlist
`modules/anime-monitor/api/server.py` declares `GET /api/watchlist` 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/watchlist/add
`modules/anime-monitor/api/server.py` declares `POST /api/watchlist/add` 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/watchlist/update
`modules/anime-monitor/api/server.py` declares `POST /api/watchlist/update` 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 /webhook/ringostat
`modules/ringostat/webhook.py` declares `POST /webhook/ringostat` 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
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/6ddda0f6-97b8-4fd0-950b-6c73532c8206/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/6ddda0f6-97b8-4fd0-950b-6c73532c8206/

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.