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.

dclawstack/dclaw-slide

https://github.com/dclawstack/dclaw-slide · scanned 2026-06-17 01:54 UTC (2 months, 3 weeks ago)

81 raw signals (0 security + 81 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 3 weeks ago · v2 · last Δ -18.1 (diff) · 77 actionable findings from 1 signal source. 4 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: severity: low × 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 58.6/100 with 100.0% coverage. It contains 796 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 81 findings — concentrated in api (25), security (19), quality (14). Risk profile is high: 0 critical, 32 high, 12 medium. Recommended next step: open the api layer findings first — that's where the highest-impact wins live.

Showing 30 of 77 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.

low System graph quality Integrity conf 1.00 8 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `DESIGNER_MODEL`, `IMAGE_MODEL`, `JUDGE_MODEL`, `NEON_API_KEY`, `OUTLINER_MODELS`, `REDIS_URL`, `SENTRY_DSN`, `VERCEL_GIT_COMMIT_SHA`. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 13 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 2 occurrences Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
lines 1, 14
frontend/Dockerfile:1, 14 (2 hits)
containersPinned dependencies
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.
backend/Dockerfile:1 containersPinned dependencies
low System graph cicd CI/CD security conf 1.00 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
2 files, 2 locations
.github/workflows/claude-code-review.yml:30
.github/workflows/claude.yml:29
CI/CD securitySupply chainGithub actions
low System graph frontend Frontend quality conf 1.00 Icon-only button without accessible name — web/src/app/deck/[id]/present/page.tsx:100
A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work. Why: P3 in CHECKLIST.md — icon-only buttons skipped a title. Rule id: fq.button.no-label
Fq button no label
low System graph quality Tests conf 1.00 Low test-to-source ratio
13 tests / 120 src (ratio 0.11).
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: backend/app/services/ai/providers.py:stream_generate_deck, backend/app/services/ai/providers.py:stream_generate_deck This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or doc…
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: backend/app/services/ai/providers.py:generate_deck, backend/app/services/ai/providers.py:generate_deck, backend/app/services/ai/providers.py:generate_deck, backend/app/services/ai/providers.py:generate_deck This is *the* AI-coder failure mode (4× mor…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph software Dead code conf 1.00 Possibly dead Python function: cache_get
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/core/cache.py:20
low System graph software Dead code conf 1.00 Possibly dead Python function: cache_set
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/core/cache.py:31
low System graph software Dead code conf 1.00 Possibly dead Python function: do_run_migrations
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/alembic/env.py:38
low System graph software Dead code conf 1.00 Possibly dead Python function: list_all
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/repositories/base_repo.py:24
low System graph software Dead code conf 1.00 Possibly dead Python function: relayout_pairs
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/services/layout.py:74
low System graph software Dead code conf 1.00 Possibly dead Python function: render_html
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/services/export.py:89
low System graph software Dead code conf 1.00 Possibly dead Python function: render_pdf
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/services/export.py:177
low System graph software Dead code conf 1.00 Possibly dead Python function: render_pptx
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/services/export.py:126
low System graph software Dead code conf 1.00 Possibly dead Python function: replace_all
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/app/repositories/presentation_repo.py:53
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /api/v1/share/{presentation_id}/share
`backend/app/api/v1/share.py` declares `DELETE /api/v1/share/{presentation_id}/share` 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/v1/presentations/{presentation_id}/analytics/summary
`backend/app/api/v1/analytics.py` declares `GET /api/v1/presentations/{presentation_id}/analytics/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 …
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/v1/presentations/{presentation_id}/export
`backend/app/api/v1/presentations.py` declares `GET /api/v1/presentations/{presentation_id}/export` 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 documen…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/v1/presentations/{presentation_id}/slides
`backend/app/api/v1/presentations.py` declares `GET /api/v1/presentations/{presentation_id}/slides` 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 documen…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /api/v1/share/{presentation_id}/share
`backend/app/api/v1/share.py` declares `GET /api/v1/share/{presentation_id}/share` 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/v1/themes/{theme_id}
`backend/app/api/v1/themes.py` declares `GET /api/v1/themes/{theme_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 /api/v1/ai/generate-deck-stream
`backend/app/api/v1/ai.py` declares `POST /api/v1/ai/generate-deck-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 /api/v1/demo/clear
`backend/app/api/v1/demo.py` declares `POST /api/v1/demo/clear` 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/v1/demo/seed
`backend/app/api/v1/demo.py` declares `POST /api/v1/demo/seed` 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/v1/presentations/{presentation_id}/slides/reorder
`backend/app/api/v1/presentations.py` declares `POST /api/v1/presentations/{presentation_id}/slides/reorder` 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 o…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api/v1/share/{presentation_id}/share
`backend/app/api/v1/share.py` declares `POST /api/v1/share/{presentation_id}/share` 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
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/78d12871-b0d4-4f01-aac8-71eb710666c5/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/78d12871-b0d4-4f01-aac8-71eb710666c5/

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.