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.

YushengLiSam/AAALion

https://github.com/YushengLiSam/AAALion · scanned 2026-06-16 01:09 UTC (2 months, 1 week ago)

117 raw signals (0 security + 117 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 103 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 53.4/100 with 100.0% coverage. It contains 932 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 117 findings — concentrated in api (35), quality (32), security (25). Risk profile is high: 0 critical, 24 high, 3 medium. Recommended next step: open the api layer findings first — that's where the highest-impact wins live.

Showing 90 of 103 actionable findings. 117 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 DELETE `delete_endpoint` without auth dependency — server/app/routes/preferences.py:62
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/preferences.py:62 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `remove_watch_endpoint` without auth dependency — server/app/routes/price_watch.py:90
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/price_watch.py:90 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `admin_delete_endpoint` without auth dependency — server/app/routes/auth.py:317
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:317 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `apple_endpoint` without auth dependency — server/app/routes/auth.py:135
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:135 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `chat_stream` without auth dependency — server/app/routes/chat.py:834
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/chat.py:834 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `chat_stream` without auth dependency — tools/mock_backend.py:58
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
tools/mock_backend.py:58 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_endpoint` without auth dependency — server/app/routes/group_buy.py:54
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/group_buy.py:54 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `delete_account_endpoint` without auth dependency — server/app/routes/auth.py:267
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:267 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `feedback_endpoint` without auth dependency — server/app/routes/preferences.py:38
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/preferences.py:38 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `join_endpoint` without auth dependency — server/app/routes/group_buy.py:67
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/group_buy.py:67 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `migrate_endpoint` without auth dependency — server/app/routes/auth.py:208
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:208 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `password_change_endpoint` without auth dependency — server/app/routes/auth.py:230
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:230 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `password_login_endpoint` without auth dependency — server/app/routes/auth.py:189
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:189 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `password_register_endpoint` without auth dependency — server/app/routes/auth.py:176
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:176 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `password_reset_start_endpoint` without auth dependency — server/app/routes/auth.py:243
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:243 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `password_reset_verify_endpoint` without auth dependency — server/app/routes/auth.py:254
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:254 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `phone_start_endpoint` without auth dependency — server/app/routes/auth.py:156
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:156 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `phone_verify_endpoint` without auth dependency — server/app/routes/auth.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.
server/app/routes/auth.py:164 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `record_repurchase` without auth dependency — server/app/routes/repurchase.py:50
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/repurchase.py:50 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reset` without auth dependency — server/app/routes/cache_stats.py:45
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/cache_stats.py:45 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `verify_token_endpoint` without auth dependency — server/app/routes/auth.py:214
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:214 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `watch_endpoint` without auth dependency — server/app/routes/price_watch.py:50
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/price_watch.py:50 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `wechat_endpoint` without auth dependency — server/app/routes/auth.py:145
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/app/routes/auth.py:145 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'eval_used' in .github/workflows/rag-eval.yml:51
Found a known-risky pattern (eval_used). Review and replace if possible.
.github/workflows/rag-eval.yml:51 Eval used
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 hardware Security conf 1.00 Dockerfile runs as root: server/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in server/app/main.py:85
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
server/app/main.py:85 Cors wildcard
low System graph quality Integrity conf 1.00 35 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANTHROPIC_API_KEY`, `BACKEND_URL`, `CLOUD_USER_API_BASE`, `EMBED_MODEL`, `FX_PROVIDER_LABEL`, `LIONPICK_ADMIN_TOKEN`, `LIONPICK_JWT_SECRET`, `LIONPICK_JWT_TTL_SEC` + 27 more. Add them (with a placeholder/comment) to .env.example so onboarding does…
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 128 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 hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.11-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
server/Dockerfile:1 containersPinned dependencies
low System graph cicd CI/CD security conf 1.00 3 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/upload-artifact@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
3 files, 3 locations
.github/workflows/ios-ipa.yml:68
.github/workflows/ios-simulator.yml:104
.github/workflows/rag-eval.yml:61
CI/CD securitySupply chainGithub actions
low System graph quality Tests conf 1.00 Low test-to-source ratio
15 tests / 68 src (ratio 0.22).
low System graph quality Integrity conf 1.00 13 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: server/app/services/user_store.py:verify_apple, server/app/services/user_store.py:verify_apple, server/app/services/user_store.py:verify_apple This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hy…
13 occurrences
repo-level (13 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: server/app/services/llm_provider.py:stream_chat, server/app/services/llm_provider.py:stream_chat, server/app/services/llm_provider.py:stream_chat, server/app/services/llm_provider.py:stream_chat This is *the* AI-coder failure mode (4× more duplicatio…
duplicatesduplication
low System graph software Dead code conf 1.00 Possibly dead Python function: compute_due_alerts
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/price_watch_db.py:202
low System graph software Dead code conf 1.00 Possibly dead Python function: create_group
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/group_buy_db.py:132
low System graph software Dead code conf 1.00 Possibly dead Python function: embed_text_query
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
rag/ingest/embed_image.py:72
low System graph software Dead code conf 1.00 Possibly dead Python function: join_group
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/group_buy_db.py:162
low System graph software Dead code conf 1.00 Possibly dead Python function: list_active_for_user
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/group_buy_db.py:271
low System graph software Dead code conf 1.00 Possibly dead Python function: list_preferences
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/preferences_db.py:229
low System graph software Dead code conf 1.00 Possibly dead Python function: list_user_watches
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/price_watch_db.py:278
low System graph software Dead code conf 1.00 Possibly dead Python function: migrate
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/user_store.py:511
low System graph software Dead code conf 1.00 Possibly dead Python function: mock_wechat
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/user_store.py:514
low System graph software Dead code conf 1.00 Possibly dead Python function: record_feedback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/preferences_db.py:156
low System graph software Dead code conf 1.00 Possibly dead Python function: record_watch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/price_watch_db.py:161
low System graph software Dead code conf 1.00 Possibly dead Python function: remove_watch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/price_watch_db.py:296
low System graph software Dead code conf 1.00 Possibly dead Python function: reset_preferences
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/preferences_db.py:199
low System graph software Dead code conf 1.00 Possibly dead Python function: start_phone
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/user_store.py:493
low System graph software Dead code conf 1.00 Possibly dead Python function: top_k_image
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/rag_client.py:896
low System graph software Dead code conf 1.00 Possibly dead Python function: upsert_image
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
rag/store.py:78
low System graph software Dead code conf 1.00 Possibly dead Python function: verify_apple
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/user_store.py:490
low System graph software Dead code conf 1.00 Possibly dead Python function: verify_phone
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/app/services/user_store.py:496
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 api Wiring conf 1.00 Unused endpoint: DELETE /
`server/app/routes/preferences.py` declares `DELETE /` 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 /watch/{product_id}
`server/app/routes/price_watch.py` declares `DELETE /watch/{product_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: GET /
`server/app/routes/preferences.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 /active
`server/app/routes/group_buy.py` declares `GET /active` 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 /admin/users
`server/app/routes/auth.py` declares `GET /admin/users` 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 /alerts
`server/app/routes/price_watch.py` declares `GET /alerts` 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 /me
`server/app/routes/auth.py` declares `GET /me` 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 /products/{product_id}
`tools/mock_backend.py` declares `GET /products/{product_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: GET /rate
`server/app/routes/currency.py` declares `GET /rate` 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 /ready
`server/app/routes/health.py` declares `GET /ready` 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 /reminders
`server/app/routes/repurchase.py` declares `GET /reminders` 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 /stats
`server/app/routes/cache_stats.py` declares `GET /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 /{group_id}
`server/app/routes/group_buy.py` declares `GET /{group_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: GET /{product_id}
`server/app/routes/products.py` declares `GET /{product_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: POST /admin/delete
`server/app/routes/auth.py` declares `POST /admin/delete` 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 /apple
`server/app/routes/auth.py` declares `POST /apple` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /chat/stream
`tools/mock_backend.py` declares `POST /chat/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: POST /create
`server/app/routes/group_buy.py` declares `POST /create` 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 /delete
`server/app/routes/auth.py` declares `POST /delete` 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 /feedback
`server/app/routes/preferences.py` declares `POST /feedback` 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 /migrate
`server/app/routes/auth.py` declares `POST /migrate` 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 /password/change
`server/app/routes/auth.py` declares `POST /password/change` 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 /password/login
`server/app/routes/auth.py` declares `POST /password/login` 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 /password/reset/start
`server/app/routes/auth.py` declares `POST /password/reset/start` 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 /password/reset/verify
`server/app/routes/auth.py` declares `POST /password/reset/verify` 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 /phone/start
`server/app/routes/auth.py` declares `POST /phone/start` 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 /phone/verify
`server/app/routes/auth.py` declares `POST /phone/verify` 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 /purchase
`server/app/routes/repurchase.py` declares `POST /purchase` 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 /register
`server/app/routes/auth.py` declares `POST /register` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /reset
`server/app/routes/cache_stats.py` declares `POST /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 it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /stream
`server/app/routes/chat.py` declares `POST /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: POST /verify
`server/app/routes/auth.py` declares `POST /verify` 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 /watch
`server/app/routes/price_watch.py` declares `POST /watch` 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 /wechat
`server/app/routes/auth.py` declares `POST /wechat` 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 /{group_id}/join
`server/app/routes/group_buy.py` declares `POST /{group_id}/join` 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: server/app/routes/chat.py (1301 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/fa72825d-e5fc-47b2-ba8a-8c766e59f313/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/fa72825d-e5fc-47b2-ba8a-8c766e59f313/

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.