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.

spm1001/mise-en-space

https://github.com/spm1001/mise-en-space · scanned 2026-06-16 00:19 UTC (2 months, 2 weeks ago)

69 raw signals (0 security + 69 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 2 weeks ago · v1 · 61 actionable findings from 1 signal source. 8 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 87.0/100 with 77.8% coverage. It contains 3146 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 69 findings — concentrated in quality (44), software (24), frontend (1). Risk profile is high: 0 critical, 8 high, 5 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 47 of 61 actionable findings. 69 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 quality Integrity conf 1.00 Blocking `httpx.get(...)` inside `async def get_ws_url` — scripts/pdf_thumb_chrome.py:27
Sync I/O inside an async function blocks the event loop. While `httpx.get(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
scripts/pdf_thumb_chrome.py:27 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `httpx.get(...)` inside `async def render_pages_chrome` — scripts/pdf_thumb_chrome2.py:110
Sync I/O inside an async function blocks the event loop. While `httpx.get(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
scripts/pdf_thumb_chrome2.py:110 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `httpx.get(...)` inside `async def render_pdf_pages` — scripts/pdf_thumb_chrome.py:139
Sync I/O inside an async function blocks the event loop. While `httpx.get(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
scripts/pdf_thumb_chrome.py:139 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `httpx.put(...)` inside `async def render_pages_chrome` — scripts/pdf_thumb_chrome2.py:57
Sync I/O inside an async function blocks the event loop. While `httpx.put(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
scripts/pdf_thumb_chrome2.py:57 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `httpx.put(...)` inside `async def render_pdf_pages` — scripts/pdf_thumb_chrome.py:50
Sync I/O inside an async function blocks the event loop. While `httpx.put(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asyncio.to_threa…
scripts/pdf_thumb_chrome.py:50 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def _get_cookies_async` — adapters/cdp.py:47
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asy…
adapters/cdp.py:47 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def fetch_rendered_html` — scripts/cdp_poc.py:29
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asy…
scripts/cdp_poc.py:29 Sync io in asyncPerformance
high System graph quality Integrity conf 1.00 Blocking `urllib.request.urlopen(...)` inside `async def fetch_rendered_html` — scripts/cdp_poc.py:40
Sync I/O inside an async function blocks the event loop. While `urllib.request.urlopen(...)` is running, *all* other coroutines on this loop are paused — silent throughput collapse under concurrency. Use the async equivalent (`httpx.AsyncClient`, `asyncio.sleep`, `aiofiles`) or wrap with `await asy…
scripts/cdp_poc.py:40 Sync io in asyncPerformance
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/cdp_poc.py:29
`urllib.request.urlopen(...)` 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 — token_store.py:104
`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 — tools/setup_oauth.py:121
`subprocess.Popen(...)` 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 27 placeholder/mock markers across 4 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 quality Debug conf 1.00 Debug logging residue appears in source files
Found 232 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 8 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: validation.py:extract_gmail_id_from_url, validation.py:extract_gmail_id 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 separate.
8 occurrences
repo-level (8 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: adapters/http_client.py:post_json, adapters/http_client.py:patch_json, adapters/http_client.py:post_json, adapters/http_client.py:patch_json This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygi…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: models.py:to_dict, models.py:to_dict, models.py:to_dict, models.py:to_dict 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 separate.
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_basic_legacy` in tests/unit/test_docs_adapter.py:64
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 quality Integrity conf 1.00 Old/deprecated-named symbol `TestHasTokenLegacy` in tests/unit/test_token_store.py:215
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: callback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/slides_timing.py:106
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_create
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli.py:34
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_fetch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli.py:28
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_search
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli.py:21
low System graph software Dead code conf 1.00 Possibly dead Python function: configure_logging
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
logging_config.py:31
low System graph software Dead code conf 1.00 Possibly dead Python function: decorator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
retry.py:185
low System graph software Dead code conf 1.00 Possibly dead Python function: decorator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/chart_timing.py:47
low System graph software Dead code conf 1.00 Possibly dead Python function: docs_cross_source
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/docs.py:606
low System graph software Dead code conf 1.00 Possibly dead Python function: docs_do
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/docs.py:382
low System graph software Dead code conf 1.00 Possibly dead Python function: docs_fetch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/docs.py:286
low System graph software Dead code conf 1.00 Possibly dead Python function: docs_gmail_search
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/docs.py:154
low System graph software Dead code conf 1.00 Possibly dead Python function: docs_overview
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/docs.py:21
low System graph software Dead code conf 1.00 Possibly dead Python function: docs_search
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/docs.py:65
low System graph software Dead code conf 1.00 Possibly dead Python function: docs_workspace
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/docs.py:710
low System graph software Dead code conf 1.00 Possibly dead Python function: download
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
adapters/slides.py:153
low System graph software Dead code conf 1.00 Possibly dead Python function: fetch_one
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/slides_timing.py:75
low System graph software Dead code conf 1.00 Possibly dead Python function: gmail_labels
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/docs.py:255
low System graph software Dead code conf 1.00 Possibly dead Python function: log_api_call
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
logging_config.py:117
low System graph software Dead code conf 1.00 Possibly dead Python function: log_api_result
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
logging_config.py:123
low System graph software Dead code conf 1.00 Possibly dead Python function: replace_email
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/sanitize_fixtures.py:129
low System graph software Dead code conf 1.00 Possibly dead Python function: replace_name_email
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/sanitize_fixtures.py:115
low System graph software Dead code conf 1.00 Possibly dead Python function: stub
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
resources/tools.py:117
low System graph software Dead code conf 1.00 Possibly dead Python function: timed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/chart_timing.py:45
low System graph software Dead code conf 1.00 Possibly dead Python function: wrapper
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scripts/chart_timing.py:48
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 quality Integrity conf 1.00 Stub function `stub` (body is just `pass`/`return`) — resources/tools.py:117
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: tests/unit/test_create.py (1441 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/unit/test_fetch.py (2878 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/e7534e38-283e-423f-a7d0-ae975a2c987f/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/e7534e38-283e-423f-a7d0-ae975a2c987f/

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.