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.

youngs7596/prime-jennie-runtime

https://github.com/youngs7596/prime-jennie-runtime · scanned 2026-06-16 01:08 UTC (2 months, 1 week ago)

155 raw signals (0 security + 155 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 141 actionable findings from 1 signal source. 14 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 57.7/100 with 100.0% coverage. It contains 4800 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 155 findings — concentrated in quality (66), api (50), software (21). Risk profile is high: 0 critical, 16 high, 7 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 121 of 141 actionable findings. 155 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 quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def main` — scripts/news_requeue_others.py:117
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
scripts/news_requeue_others.py:117 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `time.sleep(...)` inside `async def main` — scripts/news_requeue_others.py:98
Sync I/O inside an async function blocks the event loop. While `time.sleep(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_thre…
scripts/news_requeue_others.py:98 Sync io in asyncPerformance
high System graph security auth conf 1.00 FastAPI POST `api_daily_prices` without auth dependency — prime_jennie_runtime/kis_gateway/server.py:318
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/kis_gateway/server.py:318 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_minute_prices` without auth dependency — prime_jennie_runtime/kis_gateway/server.py:334
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/kis_gateway/server.py:334 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_order_buy` without auth dependency — prime_jennie_runtime/kis_gateway/server.py:379
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/kis_gateway/server.py:379 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_order_cancel` without auth dependency — prime_jennie_runtime/kis_gateway/server.py:387
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/kis_gateway/server.py:387 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_order_sell` without auth dependency — prime_jennie_runtime/kis_gateway/server.py:383
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/kis_gateway/server.py:383 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_realtime_subscribe` without auth dependency — prime_jennie_runtime/kis_gateway/server.py:495
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/kis_gateway/server.py:495 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_realtime_unsubscribe` without auth dependency — prime_jennie_runtime/kis_gateway/server.py:511
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/kis_gateway/server.py:511 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `api_snapshot` without auth dependency — prime_jennie_runtime/kis_gateway/server.py:304
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/kis_gateway/server.py:304 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `dryrun` without auth dependency — prime_jennie_runtime/dashboard/routers/control.py:149
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/dashboard/routers/control.py:149 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `liquidate` without auth dependency — prime_jennie_runtime/dashboard/routers/control.py:164
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/dashboard/routers/control.py:164 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pause` without auth dependency — prime_jennie_runtime/dashboard/routers/control.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.
prime_jennie_runtime/dashboard/routers/control.py:130 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `resume` without auth dependency — prime_jennie_runtime/dashboard/routers/control.py:140
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/dashboard/routers/control.py:140 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stop` without auth dependency — prime_jennie_runtime/dashboard/routers/control.py:120
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
prime_jennie_runtime/dashboard/routers/control.py:120 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'exec_used' in prime_jennie_runtime/screening_executor/executor.py:80
Found a known-risky pattern (exec_used). Review and replace if possible.
prime_jennie_runtime/screening_executor/executor.py:80 Exec used
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: prime_jennie_runtime/fast_loop/AGENTS.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.
prime_jennie_runtime/fast_loop/AGENTS.md VerificationAgents md
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: prime_jennie_runtime/slow_loop/AGENTS.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.
prime_jennie_runtime/slow_loop/AGENTS.md VerificationAgents md
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 cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/ghcr.yml CI/CD securitySupply chainGithub actions
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 24 placeholder/mock markers across 20 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph network Security conf 1.00 Privileged port 1000 in use
Port 1000 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker-compose.yml Ports
low System graph quality Integrity conf 1.00 51 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANTHROPIC_API_KEY`, `ANTHROPIC_MODEL`, `APP_LOG_LEVEL`, `DART_API_KEY`, `DASHBOARD_DAEMONS`, `DASHBOARD_HEALTH_TARGETS`, `DEEPSEEK_API_KEY`, `DEEPSEEK_BASE_URL` + 43 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't…
config drift
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 110 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 4 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: prime_jennie_runtime/backtest/tool_adapter.py:to_domain, prime_jennie_runtime/backtest/tool_adapter.py:to_domain This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or documen…
4 occurrences
repo-level (4 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 9 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: prime_jennie_runtime/slow_loop/strategy/engine.py:has_active_sheet_today, prime_jennie_runtime/slow_loop/strategy/engine.py:has_active_sheet_today, prime_jennie_runtime/slow_loop/strategy/engine.py:has_active_sheet_today This is *the* AI-coder failur…
9 occurrences
repo-level (9 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: prime_jennie_runtime/slow_loop/strategy/risk_throttle.py:current_multiplier, prime_jennie_runtime/slow_loop/strategy/risk_throttle.py:current_multiplier, prime_jennie_runtime/slow_loop/strategy/risk_throttle.py:current_multiplier, prime_jennie_runtime…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: scripts/mariadb_to_postgres_etl.py:iter_rows, migrations/migrate_signal_logs.py:iter_rows, migrations/_common.py:iter_rows, migrations/migrate_daily_quant_scores.py:iter_rows This is *the* AI-coder failure mode (4× more duplication in vibe-coded repo…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: prime_jennie_runtime/slow_loop/app.py:run, prime_jennie_runtime/coordinator/app.py:run, prime_jennie_runtime/kis_gateway/price_scheduler_app.py:run, prime_jennie_runtime/news_pipeline_kor/app.py:run This is *the* AI-coder failure mode (4× more duplic…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 8 places
Functions with the same first-5-line body hash: scripts/mariadb_to_postgres_etl.py:count, scripts/mariadb_to_postgres_etl.py:count, migrations/migrate_signal_logs.py:count, migrations/migrate_signal_logs.py:count This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see ht…
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 `exit_only_human_approved_v1` in tests/control/test_consumer_approved_buy.py:93
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 `exit_only_human_approved_v1` in tests/telegram_bot/test_acceptance.py:243
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 `manual_adopt_v1` in prime_jennie_runtime/telegram_bot/adoption.py:122
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `model_copy` in prime_jennie_runtime/control/consumer.py:301
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 `model_copy` in prime_jennie_runtime/slow_loop/macro/feeders/real.py:83
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 `model_copy` in prime_jennie_runtime/slow_loop/macro/post_processor.py:132
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 `model_copy` in prime_jennie_runtime/slow_loop/pipeline.py:149
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 `model_copy` in tests/slow_loop/macro/test_post_processor.py:99
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 `scout_outcomes_v1` in prime_jennie_runtime/briefing/context_builder.py:92
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 `scout_outcomes_v1` in prime_jennie_runtime/slow_loop/scout/context_builder.py:63
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 `scout_outcomes_v1` in prime_jennie_runtime/slow_loop/scout/schemas.py:107
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 `scout_outcomes_v1` in tests/slow_loop/scout/test_context_builder.py:82
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 `sr_old` in tests/slow_loop/test_fetch_previous_run.py:238
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 `tok_old` in tests/kis_gateway/test_kis_api.py:59
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: all_sheet_ids
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/fast_loop/pending_entry.py:85
low System graph software Dead code conf 1.00 Possibly dead Python function: calculate_bollinger_bands
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/fast_loop/indicators.py:65
low System graph software Dead code conf 1.00 Possibly dead Python function: calculate_macd
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/fast_loop/indicators.py:108
low System graph software Dead code conf 1.00 Possibly dead Python function: calculate_rsi
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/fast_loop/indicators.py:40
low System graph software Dead code conf 1.00 Possibly dead Python function: configure_litellm
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/infra/litellm_config.py:14
low System graph software Dead code conf 1.00 Possibly dead Python function: current_bar
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/fast_loop/bar_engine.py:156
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_latest_digest
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/news_pipeline_global/storage.py:96
low System graph software Dead code conf 1.00 Possibly dead Python function: h_cleanup_old_data
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:121
low System graph software Dead code conf 1.00 Possibly dead Python function: h_collect_foreign_holding
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:172
low System graph software Dead code conf 1.00 Possibly dead Python function: h_collect_index_daily_prices
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:163
low System graph software Dead code conf 1.00 Possibly dead Python function: h_collect_investor_trading
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:169
low System graph software Dead code conf 1.00 Possibly dead Python function: h_collect_us_market
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:166
low System graph software Dead code conf 1.00 Possibly dead Python function: h_contract_smoke_test
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:151
low System graph software Dead code conf 1.00 Possibly dead Python function: h_macro_collect_global
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:133
low System graph software Dead code conf 1.00 Possibly dead Python function: h_macro_collect_korea
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:139
low System graph software Dead code conf 1.00 Possibly dead Python function: h_macro_quick
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:145
low System graph software Dead code conf 1.00 Possibly dead Python function: h_macro_validate_store
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:124
low System graph software Dead code conf 1.00 Possibly dead Python function: h_refresh_market_caps
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:160
low System graph software Dead code conf 1.00 Possibly dead Python function: h_update_naver_sectors
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/jobs/app.py:157
low System graph software Dead code conf 1.00 Possibly dead Python function: state_from_json
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/slow_loop/macro/state_store.py:72
low System graph software Dead code conf 1.00 Possibly dead Python function: to_text
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
prime_jennie_runtime/news_pipeline_global/wsj_gmail.py:72
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 quality Integrity conf 1.00 Stub function `record_buy` (body is just `pass`/`return`) — prime_jennie_runtime/fast_loop/persistence.py:143
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 `sector_of` (body is just `pass`/`return`) — prime_jennie_runtime/slow_loop/strategy/engine.py:375
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 /api/jobs/{job_id}
`prime_jennie_runtime/dashboard/routers/airflow.py` declares `DELETE /api/jobs/{job_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 co…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/current
`prime_jennie_runtime/dashboard/routers/watchlist.py` declares `GET /api/current` 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: GET /api/dags
`prime_jennie_runtime/dashboard/routers/airflow.py` declares `GET /api/dags` 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/dates
`prime_jennie_runtime/dashboard/routers/scout.py` declares `GET /api/dates` 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/events
`prime_jennie_runtime/dashboard/routers/news.py` declares `GET /api/events` 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/events/{article_id}
`prime_jennie_runtime/dashboard/routers/news.py` declares `GET /api/events/{article_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 co…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/features
`prime_jennie_runtime/dashboard/routers/llm_stats.py` declares `GET /api/features` 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: GET /api/health
`prime_jennie_runtime/dashboard/routers/system.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/history
`prime_jennie_runtime/dashboard/routers/watchlist.py` declares `GET /api/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 documenting who consumes …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/insight
`prime_jennie_runtime/dashboard/routers/macro.py` declares `GET /api/insight` 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/jobs
`prime_jennie_runtime/dashboard/routers/airflow.py` declares `GET /api/jobs` 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/jobs/{job_id}
`prime_jennie_runtime/dashboard/routers/airflow.py` declares `GET /api/jobs/{job_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 consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/jobs/{job_id}/runs
`prime_jennie_runtime/dashboard/routers/airflow.py` declares `GET /api/jobs/{job_id}/runs` 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 …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/latest
`prime_jennie_runtime/dashboard/routers/scout.py` declares `GET /api/latest` 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/live
`prime_jennie_runtime/dashboard/routers/portfolio.py` declares `GET /api/live` 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/market/is-market-open
`prime_jennie_runtime/kis_gateway/server.py` declares `GET /api/market/is-market-open` 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 cons…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/order/{order_no}
`prime_jennie_runtime/kis_gateway/server.py` declares `GET /api/order/{order_no}` 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: GET /api/outcomes
`prime_jennie_runtime/dashboard/routers/paper.py` declares `GET /api/outcomes` 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/performance
`prime_jennie_runtime/dashboard/routers/portfolio.py` declares `GET /api/performance` 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 consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/quotations/search-info/{stock_code}
`prime_jennie_runtime/kis_gateway/server.py` declares `GET /api/quotations/search-info/{stock_code}` 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 docume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/recent
`prime_jennie_runtime/dashboard/routers/trades.py` declares `GET /api/recent` 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/regime
`prime_jennie_runtime/dashboard/routers/macro.py` declares `GET /api/regime` 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/runs
`prime_jennie_runtime/dashboard/routers/scout.py` declares `GET /api/runs` 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/runs/{macro_run_id}
`prime_jennie_runtime/dashboard/routers/macro.py` declares `GET /api/runs/{macro_run_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 c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/runs/{scout_run_id}
`prime_jennie_runtime/dashboard/routers/scout.py` declares `GET /api/runs/{scout_run_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 c…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/runs/{scout_run_id}/candidates
`prime_jennie_runtime/dashboard/routers/scout.py` declares `GET /api/runs/{scout_run_id}/candidates` 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 docume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/services
`prime_jennie_runtime/dashboard/routers/logs.py` declares `GET /api/services` 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/snapshot/{ticker}
`prime_jennie_runtime/kis_gateway/server.py` declares `GET /api/snapshot/{ticker}` 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: GET /api/state
`prime_jennie_runtime/dashboard/routers/control.py` declares `GET /api/state` 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/stats
`prime_jennie_runtime/dashboard/routers/llm_stats.py` declares `GET /api/stats` 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/stats/kis-calls
`prime_jennie_runtime/kis_gateway/server.py` declares `GET /api/stats/kis-calls` 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: GET /api/stats/monthly
`prime_jennie_runtime/dashboard/routers/llm_stats.py` declares `GET /api/stats/monthly` 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 con…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/stats/monthly/{target_month}
`prime_jennie_runtime/dashboard/routers/llm_stats.py` declares `GET /api/stats/monthly/{target_month}` 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 docu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/stats/{target_date}
`prime_jennie_runtime/dashboard/routers/llm_stats.py` declares `GET /api/stats/{target_date}` 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 w…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/stream
`prime_jennie_runtime/dashboard/routers/logs.py` declares `GET /api/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/summary
`prime_jennie_runtime/dashboard/routers/portfolio.py` declares `GET /api/summary` 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: PATCH /api/jobs/{job_id}
`prime_jennie_runtime/dashboard/routers/airflow.py` declares `PATCH /api/jobs/{job_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 con…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/dags/{dag_id}/trigger
`prime_jennie_runtime/dashboard/routers/airflow.py` declares `POST /api/dags/{dag_id}/trigger` 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 …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/dryrun
`prime_jennie_runtime/dashboard/routers/control.py` declares `POST /api/dryrun` 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/jobs
`prime_jennie_runtime/dashboard/routers/airflow.py` declares `POST /api/jobs` 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/liquidate
`prime_jennie_runtime/dashboard/routers/control.py` declares `POST /api/liquidate` 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/market/daily-prices
`prime_jennie_runtime/kis_gateway/server.py` declares `POST /api/market/daily-prices` 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 consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/market/minute-prices
`prime_jennie_runtime/kis_gateway/server.py` declares `POST /api/market/minute-prices` 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 cons…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/order/buy
`prime_jennie_runtime/kis_gateway/server.py` declares `POST /api/order/buy` 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/order/cancel
`prime_jennie_runtime/kis_gateway/server.py` declares `POST /api/order/cancel` 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/order/sell
`prime_jennie_runtime/kis_gateway/server.py` declares `POST /api/order/sell` 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/pause
`prime_jennie_runtime/dashboard/routers/control.py` declares `POST /api/pause` 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/resume
`prime_jennie_runtime/dashboard/routers/control.py` declares `POST /api/resume` 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/snapshot/{ticker}
`prime_jennie_runtime/kis_gateway/server.py` declares `POST /api/snapshot/{ticker}` 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 consume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/stop
`prime_jennie_runtime/dashboard/routers/control.py` declares `POST /api/stop` 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/cf168c8b-2d1a-4754-ace4-c2974e9c677c/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/cf168c8b-2d1a-4754-ace4-c2974e9c677c/

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.