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.

creator35lwb-web/VerifiMind-PEAS

https://github.com/creator35lwb-web/VerifiMind-PEAS · scanned 2026-06-17 01:51 UTC (1 month, 1 week ago)

84 raw signals (0 security + 84 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -17.2 (diff) · 65 actionable findings from 1 signal source. 19 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
Scan summary Repository scanned at 59.5/100 with 88.9% coverage. It contains 2332 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 84 findings — concentrated in quality (37), software (26), security (15). Risk profile is high: 9 critical, 3 high, 14 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 57 of 65 actionable findings. 84 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 `urllib.request.urlopen(...)` inside `async def _fetch_url_content` — mcp-server/src/verifimind_mcp/templates/import_url.py:125
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…
mcp-server/src/verifimind_mcp/templates/import_url.py:125 Sync io in asyncPerformance
high System graph security security conf 1.00 Insecure pattern 'python_os_system' in scripts/launch.py:46
Found a known-risky pattern (python_os_system). Review and replace if possible.
scripts/launch.py:46 Python os system
high System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in scripts/launch.py:103
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
scripts/launch.py:103 Subprocess shell true
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/verifimind-handoff.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/commands/verifimind-handoff.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/verifimind-status.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/commands/verifimind-status.md VerificationClaude instruction
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 hardware Security conf 1.00 Dockerfile runs as root: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: mcp-server/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/publish-mcp-registry.yml CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in mcp-server/http_server.py:1851
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
mcp-server/http_server.py:1851 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in src/agents/reflection_agent.py:405
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
src/agents/reflection_agent.py:405 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in mcp-server/src/verifimind_mcp/pages.py:789
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
mcp-server/src/verifimind_mcp/pages.py:789 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in src/generation/frontend_generator.py:790
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
src/generation/frontend_generator.py:790 Local storage auth token
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/launch.py:196
`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 Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 114 placeholder/mock markers across 19 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 Integrity conf 1.00 11 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `ANTHROPIC_MODEL`, `CEREBRAS_API_KEY`, `FIRESTORE_PROJECT_ID`, `GOOGLE_CLOUD_PROJECT`, `LLM_MODEL`, `OPENAI_MODEL`, `PILOT_INVITE_CODE`, `POLAR_CHECKOUT_URL` + 3 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't brea…
config drift
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 1058 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 Docker base image is tag-pinned but not digest-pinned: ghcr.io/astral-sh/uv:python3.12-bookworm-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:3 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: ghcr.io/astral-sh/uv:python3.12-bookworm-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
mcp-server/Dockerfile:3 containersPinned dependencies
low System graph quality Integrity conf 1.00 10 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: scripts/launch.py:run_command, scripts/launch.py:run 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.
10 occurrences
repo-level (10 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: src/core/concept_scrutinizer.py:to_dict, src/core/concept_scrutinizer.py:to_dict, src/core/concept_scrutinizer.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 o…
2 occurrences
repo-level (2 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: examples/demo_generation.py:save_generated_app, examples/demo_generation_no_emoji.py:save_generated_app, examples/interactive_generation_with_attribution.py:save_generated_app, examples/interactive_generation.py:save_generated_app This is *the* AI-co…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 8 places
Functions with the same first-5-line body hash: src/llm/llm_provider.py:generate, src/llm/llm_provider.py:stream_generate, src/llm/llm_provider.py:generate, src/llm/llm_provider.py:stream_generate This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-c…
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 9 places
Functions with the same first-5-line body hash: mcp-server/src/verifimind_mcp/llm/provider.py:generate, mcp-server/src/verifimind_mcp/llm/provider.py:generate, mcp-server/src/verifimind_mcp/llm/provider.py:generate, mcp-server/src/verifimind_mcp/llm/provider.py:generate This is *the* AI-coder fail…
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `firestore_v1` in mcp-server/src/verifimind_mcp/utils/trinity_history.py:100
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 `Genesis_Methodology_White_Paper_v1` in mcp-server/src/verifimind_mcp/server.py:389
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 `transport_deprecated` in mcp-server/http_server.py:1772
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: add_iteration
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/core/data_models.py:244
low System graph software Dead code conf 1.00 Possibly dead Python function: assess_ethical_alignment
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:202
low System graph software Dead code conf 1.00 Possibly dead Python function: assess_security_posture
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:337
low System graph software Dead code conf 1.00 Possibly dead Python function: assess_technical_viability
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:125
low System graph software Dead code conf 1.00 Possibly dead Python function: check_z_protocol_compliance
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:247
low System graph software Dead code conf 1.00 Possibly dead Python function: detect_critical_vulnerabilities
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:382
low System graph software Dead code conf 1.00 Possibly dead Python function: disable_csp
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:61
low System graph software Dead code conf 1.00 Possibly dead Python function: enable_csp
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:66
low System graph software Dead code conf 1.00 Possibly dead Python function: enhance_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:472
low System graph software Dead code conf 1.00 Possibly dead Python function: export_chain
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/blockchain/attribution_chain.py:249
low System graph software Dead code conf 1.00 Possibly dead Python function: export_creator_portfolio
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/blockchain/attribution_integration.py:267
low System graph software Dead code conf 1.00 Possibly dead Python function: export_registry
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/blockchain/creator_identity.py:222
low System graph software Dead code conf 1.00 Possibly dead Python function: find_best_template
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/templates/template_library.py:71
low System graph software Dead code conf 1.00 Possibly dead Python function: footer
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/core/pdf_generator.py:176
low System graph software Dead code conf 1.00 Possibly dead Python function: generate_report
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/core/markdown_reporter.py:280
low System graph software Dead code conf 1.00 Possibly dead Python function: generate_report
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/core/pdf_generator.py:605
low System graph software Dead code conf 1.00 Possibly dead Python function: header
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/core/pdf_generator.py:169
low System graph software Dead code conf 1.00 Possibly dead Python function: initialize_csp
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:55
low System graph software Dead code conf 1.00 Possibly dead Python function: login_creator_by_email
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/blockchain/attribution_integration.py:109
low System graph software Dead code conf 1.00 Possibly dead Python function: quick_attribute_app
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/blockchain/attribution_integration.py:309
low System graph software Dead code conf 1.00 Possibly dead Python function: quick_scrutinize
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/core/concept_scrutinizer.py:606
low System graph software Dead code conf 1.00 Possibly dead Python function: run_security_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/agents/cs_security_agent.py:468
low System graph software Dead code conf 1.00 Possibly dead Python function: setup_logging
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/core/logging_config.py:14
low System graph software Dead code conf 1.00 Possibly dead Python function: validate_csp
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/integrations/godelai/enhanced_agents.py:76
low System graph software Dead code conf 1.00 Possibly dead Python function: verify_certificate_file
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/blockchain/attribution_certificate.py:340
low System graph software Dead code conf 1.00 Possibly dead Python function: verify_operation_signature
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/blockchain/creator_identity.py:271
low System graph quality Complexity conf 1.00 Very large file: mcp-server/http_server.py (1918 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: mcp-server/src/verifimind_mcp/llm/provider.py (1518 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: mcp-server/src/verifimind_mcp/pages.py (5895 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: mcp-server/src/verifimind_mcp/server.py (1919 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/e114f533-3733-49d4-a8dd-3d0481f5f3ca/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/e114f533-3733-49d4-a8dd-3d0481f5f3ca/

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.