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.

alexcze1/cs2-hub

https://github.com/alexcze1/cs2-hub · scanned 2026-06-17 01:31 UTC (1 month, 2 weeks ago)

137 raw signals (0 security + 137 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 2 weeks ago · v2 · last Δ +5.7 (diff) · 137 actionable findings from 1 signal source. 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 82.4/100 with 77.8% coverage. It contains 1564 nodes across 3 cross-layer flows, written primarily in mixed languages. Engine surfaced 137 findings — concentrated in security (64), quality (58), api (9). Risk profile is high: 0 critical, 9 high, 75 medium. Recommended next step: open the security layer findings first — that's where the highest-impact wins live.

Showing 92 of 137 actionable findings. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high System graph api Wiring conf 1.00 Dangling fetch: GET /api/calendar?url=${encodeURIComponent(teamRow.gcal_url)} (cs2-hub/schedule.js:93)
`cs2-hub/schedule.js:93` calls `GET /api/calendar?url=${encodeURIComponent(teamRow.gcal_url)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/calendar` If this points at an external API, prefix it with `https://` so…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/calendar?url=${encodeURIComponent(teamRow.pracc_url)} (cs2-hub/dashboard.js:116)
`cs2-hub/dashboard.js:116` calls `GET /api/calendar?url=${encodeURIComponent(teamRow.pracc_url)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/calendar` If this points at an external API, prefix it with `https://`…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/calendar?url=${encodeURIComponent(teamRow.pracc_url)} (cs2-hub/schedule.js:90)
`cs2-hub/schedule.js:90` calls `GET /api/calendar?url=${encodeURIComponent(teamRow.pracc_url)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/calendar` If this points at an external API, prefix it with `https://` s…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/team-profile?id=${encodeURIComponent(teamId)} (cs2-hub/public-team.js:42)
`cs2-hub/public-team.js:42` calls `GET /api/team-profile?id=${encodeURIComponent(teamId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/team-profile` If this points at an external API, prefix it with `https://` so…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/scan-scoreboard (cs2-hub/vod-detail.js:42)
`cs2-hub/vod-detail.js:42` calls `POST /api/scan-scoreboard` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/scan-scoreboard` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.anthropic.com/v1/messages (cs2-hub/api/scan-scoreboard.js:32)
`cs2-hub/api/scan-scoreboard.js:32` calls `POST https://api.anthropic.com/v1/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.anthropic.com/v1/messages` If this points at an external API, prefix i…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://steamcommunity.com/openid/login (cs2-hub/api/steam-callback.js:18)
`cs2-hub/api/steam-callback.js:18` calls `POST https://steamcommunity.com/openid/login` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/steamcommunity.com/openid/login` If this points at an external API, prefi…
Dangling fetchFetch
high System graph security auth conf 1.00 FastAPI POST `sync_team_vetos_endpoint` without auth dependency — vps/main.py:210
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
vps/main.py:210 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_demo` without auth dependency — vps/main.py:253
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
vps/main.py:253 securityAuth fastapi unauth mutation
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — cs2-hub/admin.js:25
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 — cs2-hub/api/admin.js:20
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 — cs2-hub/api/export-calendar.js:8
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 — cs2-hub/api/scan-scoreboard.js:10
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 — cs2-hub/api/steam-callback.js:18
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 — cs2-hub/api/team-profile.js:25
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 — cs2-hub/migrate-strats.mjs:29
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 — cs2-hub/seed-demo.mjs:15
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 — cs2-hub/seed-diamant-ancient.mjs:112
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 — cs2-hub/vod-detail.js:42
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 security security conf 1.00 Insecure pattern 'cors_wildcard' in cs2-hub/api/calendar.js:83
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
cs2-hub/api/calendar.js:83 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in cs2-hub/api/team-profile.js:100
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
cs2-hub/api/team-profile.js:100 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in vps/main.py:128
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
vps/main.py:128 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/admin.js:33
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/admin.js:33 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/analysis.js:93
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/analysis.js:93 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/antistrat-drawer.js:44
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/antistrat-drawer.js:44 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/assign-teams-modal.js:158
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/assign-teams-modal.js:158 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/command-palette.js:164
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/command-palette.js:164 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/dashboard.js:198
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/dashboard.js:198 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/demo-viewer.js:317
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/demo-viewer.js:317 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/demos.js:32
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/demos.js:32 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/goals.js:56
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/goals.js:56 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/hover-preview.js:60
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/hover-preview.js:60 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/issues.js:56
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/issues.js:56 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/keywords.js:82
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/keywords.js:82 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/layout.js:81
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/layout.js:81 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/opponent-detail.js:45
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/opponent-detail.js:45 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/opponent-overview.js:301
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/opponent-overview.js:301 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/opponents.js:136
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/opponents.js:136 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/player-autocomplete.js:71
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/player-autocomplete.js:71 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/player-drawer.js:14
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/player-drawer.js:14 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/presence.js:92
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/presence.js:92 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/public-team.js:23
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/public-team.js:23 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/roster.js:34
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/roster.js:34 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/round-compare.js:52
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/round-compare.js:52 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/save-popover.js:46
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/save-popover.js:46 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/schedule.js:46
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/schedule.js:46 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/scoreboard-team-stats.js:61
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/scoreboard-team-stats.js:61 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/scoreboard.js:17
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/scoreboard.js:17 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/scrim-finder.js:62
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/scrim-finder.js:62 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/stratbook-detail.js:23
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/stratbook-detail.js:23 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/stratbook-fullscreen.html:317
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/stratbook-fullscreen.html:317 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/stratbook.js:16
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/stratbook.js:16 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/team-autocomplete.js:97
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/team-autocomplete.js:97 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/team-select.js:30
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/team-select.js:30 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/toast.js:16
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/toast.js:16 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/tooltip.js:48
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/tooltip.js:48 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/veto-simulator.js:425
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/veto-simulator.js:425 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/veto.js:212
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/veto.js:212 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vod-detail.js:107
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vod-detail.js:107 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-filter.js:48
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-filter.js:48 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-hero.js:119
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-hero.js:119 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-map-pool.js:91
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-map-pool.js:91 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-match-reports.js:93
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-match-reports.js:93 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-player-impact.js:63
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-player-impact.js:63 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-player-panel.js:9
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-player-panel.js:9 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-stats-cockpit.js:340
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-stats-cockpit.js:340 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-team-stats-advanced.js:179
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-team-stats-advanced.js:179 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods-team-stats.js:87
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods-team-stats.js:87 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in cs2-hub/vods.js:48
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
cs2-hub/vods.js:48 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in cs2-hub/dashboard.js:732
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
cs2-hub/dashboard.js:732 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in cs2-hub/opponent-overview.js:328
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
cs2-hub/opponent-overview.js:328 Insert adjacent html
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 60 placeholder/mock markers across 21 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 quality Tests conf 1.00 Very low test-to-source ratio
7 test file(s) for 99 source file(s) (ratio 0.07). Consider adding integration or unit tests for critical paths.
Coverage
low System graph quality Integrity conf 1.00 20 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANTHROPIC_API_KEY`, `APP_URL`, `DATABASE_URL`, `DEMOS_DIR`, `HLTV_DEMOS_DIR_SOFT_CAP_BYTES`, `HLTV_FORCE_PLAYWRIGHT`, `HLTV_INGEST_DAYS`, `HLTV_INGEST_ENABLED` + 12 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't …
config drift
low System graph quality Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 180 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 frontend Frontend quality conf 1.00 Icon-only button without accessible name — cs2-hub/roster.js:67
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 frontend Frontend quality conf 1.00 Icon-only button without accessible name — cs2-hub/vod-detail.js:129
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 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: write_stats_for_demo
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
vps/main.py:689
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cs2-hub/_design_mock.js:383
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cs2-hub/demo-viewer.js:142
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — cs2-hub/schedule.js:181
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph api Wiring conf 1.00 Unused endpoint: POST /sync-team-vetos
`vps/main.py` declares `POST /sync-team-vetos` 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 /upload
`vps/main.py` declares `POST /upload` 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: cs2-hub/analysis.js (2096 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cs2-hub/dashboard.js (1133 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cs2-hub/demo-viewer.js (1923 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cs2-hub/demos.js (1328 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: vps/demo_parser.py (2091 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/8455c180-9288-4340-901d-a4273652fd92/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/8455c180-9288-4340-901d-a4273652fd92/

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.