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.

davindev/vidoctor

https://github.com/davindev/vidoctor · scanned 2026-06-17 01:53 UTC (1 month, 1 week ago)

25 raw signals (0 security + 25 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ +3.9 (diff) · 24 actionable findings from 1 signal source. 1 repeated signal 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 80.6/100 with 100.0% coverage. It contains 600 nodes across 8 cross-layer flows, written primarily in mixed languages. Engine surfaced 25 findings — concentrated in quality (10), software (9), frontend (2). Risk profile is high: 0 critical, 2 high, 6 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 21 of 24 actionable findings. 25 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_analysis` without auth dependency — src/vidoctor/api/app.py:335
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/vidoctor/api/app.py:335 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `analyze` without auth dependency — src/vidoctor/api/app.py:487
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/vidoctor/api/app.py:487 securityAuth fastapi unauth mutation
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — web/lib/analyze.ts:38
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — web/lib/api.ts:267
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 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 quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/eval_all.py:121
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — src/vidoctor/vision/gaze.py:312
`urllib.request.urlretrieve(...)` 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 Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 12 placeholder/mock markers across 5 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph hardware Supply chain conf 1.00 2 occurrences 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.
lines 4, 32
Dockerfile:4, 32 (2 hits)
containersPinned dependencies
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: src/vidoctor/graph/state.py:summary, src/vidoctor/graph/state.py:summary, src/vidoctor/graph/state.py:summary, src/vidoctor/graph/state.py:summary This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-cod…
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 `model_copy` in src/vidoctor/suggestions.py:193
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: create_video_signed_url
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/repository.py:556
low System graph software Dead code conf 1.00 Possibly dead Python function: delete_video_for_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/repository.py:573
low System graph software Dead code conf 1.00 Possibly dead Python function: detect_cps_with_audio
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/audio/cps.py:242
low System graph software Dead code conf 1.00 Possibly dead Python function: fail_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/repository.py:430
low System graph software Dead code conf 1.00 Possibly dead Python function: insert_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/repository.py:218
low System graph software Dead code conf 1.00 Possibly dead Python function: insert_video
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/repository.py:181
low System graph software Dead code conf 1.00 Possibly dead Python function: save_findings
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/repository.py:345
low System graph software Dead code conf 1.00 Possibly dead Python function: save_suggestions
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/repository.py:353
low System graph software Dead code conf 1.00 Possibly dead Python function: upload_video_file
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/vidoctor/repository.py:169
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/2ddc9215-f489-4bbf-b1c6-dc3612c9cf21/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/2ddc9215-f489-4bbf-b1c6-dc3612c9cf21/

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.