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.

diegosouzapw/OmniRoute

https://github.com/diegosouzapw/OmniRoute/ · scanned 2026-05-29 13:31 UTC (6 days, 21 hours ago) · 10 languages

2227 findings (97 legacy + 2130 scanner) 11/13 scanners ran 47th percentile · Typescript · large (100-500K LoC)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 6 days, 21 hours ago · v3 · 807 findings from 2 sources. Findings combine the legacy security pipeline AND the multi-layer engine (atlas, wiring, flows, ranked) AND verified AI agent contributions.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 85.0 0.15 12.75
security_score 100.0 0.25 25.00
testing_score 46.0 0.20 9.20
documentation_score 69.0 0.15 10.35
practices_score 75.0 0.15 11.25
code_quality 70.0 0.10 7.00
Overall 1.00 75.5
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all

Bug-class explainers. Each card groups findings of the same shape — these are the patterns most likely to ship to prod and reappear in future scans unless you systematically fix the cause, not just the instance.

Fragile runtime 179 findings
What it is: Code that runs but breaks under predictable input — division by zero, missing keys, unbounded loops, off-by-one slicing.
Why it matters: Reaches production undetected because happy-path tests pass. First user with a weird input crashes the request.
How AI causes it: AI loves writing the happy path; doesn't probe edge cases unless explicitly asked.
Fix approach: Add property-based tests. Wrap external inputs with explicit validators. Use the framework's typed deserializer (Pydantic, attrs).
12 matching findings on this repo
  • medium Public web service has no security.txt .well-known/security.txt
  • medium React interval is created without an explicit cleanup open-sse/services/accountFallback.ts:359
  • medium [SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographicall… open-sse/services/autoCombo/engine.ts:137
  • medium [SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographicall… open-sse/executors/github.ts:154
  • medium [ERR002] Empty Catch Block: Empty catch blocks hide errors. open-sse/handlers/embeddings.ts:213
  • medium [ERR002] Empty Catch Block: Empty catch blocks hide errors. open-sse/executors/gemini-web.ts:175
  • low robots.txt does not advertise a sitemap open-sse/services/antigravityHeaders.ts
  • low Public web app has no humans.txt humans.txt
  • low Public docs site has no llms.txt llms.txt
  • low Public web app has no sitemap sitemap.xml
  • low Duplicated implementation block across source files open-sse/services/perplexityTlsClient.ts:12
  • low Duplicated implementation block across source files open-sse/services/genericQuotaFetcher.ts:22
View all fragile runtime findings →
Legacy markers 57 findings
What it is: TODO, FIXME, XXX, HACK comments. Often indicate a known-broken path the author meant to fix.
Why it matters: Each marker is an unfinished thought. Production code shouldn't ship with debt that's documented but not tracked.
How AI causes it: AI mirrors the style of the codebase, so existing TODOs propagate into new code.
Fix approach: Convert each into a ticket. Delete the comment when the ticket lands. Use a pre-commit hook to block new TODOs without an issue link.
12 matching findings on this repo
  • low Legacy-named symbol `model_configs_v2` in open-sse/config/providerRegistry.ts:1…
  • low Legacy-named symbol `eleven_multilingual_v2` in open-sse/config/audioRegistry.t…
  • low Legacy-named symbol `model_configs_v2` in open-sse/executors/windsurf.ts:46
  • low Legacy-named symbol `model_configs_v2` in open-sse/executors/devin-cli.ts:26
  • low Legacy-named symbol `isDeprecated` in open-sse/services/modelDeprecation.ts:118
  • low Legacy-named symbol `defaultRawLegacy` in open-sse/services/payloadRules.ts:123
  • low Legacy-named symbol `getClaudeUsageLegacy` in open-sse/services/usage.ts:2157
  • low Legacy-named symbol `fromLegacy` in tests/integration/services/cliproxy-coexist…
  • low Legacy-named symbol `mcp__filesystem__read_multiple_files_with_validation_and_m…
  • low Legacy-named symbol `mcp__filesystem__read_multiple_files_with_validation_and_m…
  • low Legacy-named symbol `000Z_old` in tests/unit/call-log-cap.test.ts:204
  • low Legacy-named symbol `mcp__filesystem__read_multiple_files_with_validation_and_m…
View all legacy markers findings →
Commented-out code 115 findings
What it is: Lines of source that were intentionally disabled but never deleted.
Why it matters: Git already remembers history — commented code rots, becomes wrong, and adds noise to diffs.
How AI causes it: AI sometimes comments out broken code instead of fixing it. Reviewers approve out of inertia.
Fix approach: Delete. Trust `git log`. If you really need to remember, save it in a notes file under `docs/`.
12 matching findings on this repo
  • info Commented-code block (5 lines) in open-sse/translator/index.ts:277
  • info Commented-code block (6 lines) in open-sse/translator/response/openai-responses…
  • info Commented-code block (7 lines) in open-sse/translator/helpers/claudeHelper.ts:5
  • info Commented-code block (5 lines) in open-sse/translator/request/openai-to-claude.…
  • info Commented-code block (10 lines) in open-sse/translator/request/openai-responses…
  • info Commented-code block (6 lines) in open-sse/translator/request/openai-to-gemini.…
  • info Commented-code block (5 lines) in open-sse/translator/request/openai-to-kiro.ts…
  • info Commented-code block (8 lines) in open-sse/config/providerRegistry.ts:137
  • info Commented-code block (5 lines) in open-sse/config/constants.ts:154
  • info Commented-code block (5 lines) in open-sse/executors/windsurf.ts:263
  • info Commented-code block (5 lines) in open-sse/executors/muse-spark-web.ts:17
  • info Commented-code block (5 lines) in open-sse/executors/codex.ts:32
View all commented-out code findings →
Config drift 26 findings
What it is: Settings duplicated across env files, Docker compose, K8s, and code defaults, all with slightly different values.
Why it matters: Production behaviour depends on whichever copy your loader reads first. Subtle bugs in staging that don't reproduce in dev.
How AI causes it: AI writes new config from memory rather than reading the existing source.
Fix approach: Pick one source of truth (env vars + a settings module). Have every other place import from there. Lint for duplicates in CI.
12 matching findings on this repo
  • low File has no detected symbols: playwright.config.ts
  • low File has no detected symbols: vitest.mcp.config.ts
  • low File has no detected symbols: source.config.ts
  • low File has no detected symbols: vitest.config.ts
  • low File has no detected symbols: open-sse/config/anthropicHeaders.ts
  • low File has no detected symbols: open-sse/config/codexInstructions.ts
  • low File has no detected symbols: open-sse/config/defaultThinkingSignature.ts
  • low File has no detected symbols: open-sse/config/ollamaModels.ts
  • low Stray `console.log` in TS/JS — open-sse/config/credentialLoader.ts:68
  • low Stray `console.log` in TS/JS — src/shared/components/ManualConfigModal.tsx:33
  • low Stray `console.log` in TS/JS — src/mitm/dns/dnsConfig.ts:50
  • low Stray `console.log` in TS/JS — src/app/api/cli-tools/config/route.ts:30
View all config drift findings →
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/02d1bbe5-16e0-48bb-ad1c-c94b08d58ffa/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/02d1bbe5-16e0-48bb-ad1c-c94b08d58ffa/

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.