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.

ChristopheZhao/Meetkat

https://github.com/ChristopheZhao/Meetkat · scanned 2026-06-17 01:23 UTC (1 month, 2 weeks ago)

42 raw signals (0 security + 42 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 2 weeks ago · v2 · last Δ +18.8 (diff) · 25 actionable findings from 1 signal source. 17 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 95.5/100 with 77.8% coverage. It contains 1362 nodes across 11 cross-layer flows, written primarily in mixed languages. Engine surfaced 42 findings — concentrated in quality (30), security (6), software (4). Risk profile is high: 0 critical, 4 high, 4 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 17 of 25 actionable findings. 42 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 POST `create_room` without auth dependency — src/decision_room/runtime/http_api.py:412
`@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/decision_room/runtime/http_api.py:412 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_human_message` without auth dependency — src/decision_room/runtime/http_api.py:499
`@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/decision_room/runtime/http_api.py:499 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `post_human_override` without auth dependency — src/decision_room/runtime/http_api.py:508
`@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/decision_room/runtime/http_api.py:508 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `preflight_room` without auth dependency — src/decision_room/runtime/http_api.py:447
`@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/decision_room/runtime/http_api.py:447 securityAuth fastapi unauth mutation
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 src/decision_room/runtime/http_api.py:351
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
src/decision_room/runtime/http_api.py:351 Cors wildcard
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
low System graph quality Integrity conf 1.00 5 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `DOTENV_DISABLE_AUTOLOAD`, `MEETKAT_MEMORY_DIR`, `ROOM_RUNTIME_HOST`, `ROOM_RUNTIME_PORT`, `VITE_RUNTIME_BASE_URL`. 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 68 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 13 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: src/decision_room/memory/store.py:storage_dir, src/decision_room/memory/store.py:storage_dir This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separa…
13 occurrences
repo-level (13 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 5 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: src/decision_room/memory/types.py:to_payload, src/decision_room/memory/types.py:to_payload, src/decision_room/memory/types.py:to_payload This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene)…
5 occurrences
repo-level (5 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: src/decision_room/orchestration/central_mas.py:plan_round, src/decision_room/orchestration/speaker_strategies.py:plan_speakers, src/decision_room/orchestration/speaker_strategies.py:plan_speakers, src/decision_room/orchestration/speaker_strategies.py:…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph software Dead code conf 1.00 Possibly dead Python function: append_many
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/decision_room/memory/store.py:243
low System graph software Dead code conf 1.00 Possibly dead Python function: reset_room
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/decision_room/memory/store.py:160
low System graph software Dead code conf 1.00 Possibly dead Python function: should_publish_consensus_end
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/decision_room/policies/room_control.py:52
low System graph software Dead code conf 1.00 Possibly dead Python function: with_route
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/decision_room/agents/base.py:102
low System graph quality Complexity conf 1.00 Very large file: tests/test_room_runtime.py (1163 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/539d1bb9-bd86-4aaf-b3d3-99b6432cfbd7/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/539d1bb9-bd86-4aaf-b3d3-99b6432cfbd7/

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.