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.
45 of your 69 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

denoland/deno

https://github.com/denoland/deno · scanned 2026-06-05 05:51 UTC (4 hours, 28 minutes ago) · 10 languages

4839 findings (63 legacy + 4776 scanner) 11/13 scanners ran 33rd percentile · Rust · large (100-500K LoC) Scanner says 49 (higher by 14)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 hours, 28 minutes ago · v2 · 2451 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 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 26.0 0.20 5.20
documentation_score 64.0 0.15 9.60
practices_score 62.0 0.15 9.30
code_quality 50.0 0.10 5.00
Overall 1.00 63.1
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 48 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 Average file size is 613 lines (recommend <300)
  • low Duplicated implementation block across source files cli/tools/serve.rs:153
  • low Duplicated implementation block across source files cli/tools/pm/cache_deps.rs:179
  • low Duplicated implementation block across source files cli/ops/testing.rs:46
  • low Duplicated implementation block across source files cli/lsp/npm.rs:85
  • low Duplicated implementation block across source files .github/workflows/version_bump.ts:21
  • low Duplicated implementation block across source files .github/workflows/start_release.ts:22
  • low Duplicated implementation block across source files .github/workflows/promote_to_release.ts:135
  • low Duplicated implementation block across source files .github/workflows/post_publish.ts:22
  • low Duplicated implementation block across source files .github/workflows/create_prerelease_tag.ts:16
  • low [SEC132] String concat where the language has interpolation (AI style drift): S… cli/tools/doc/prism.js:4
  • info [MINED068] Rust Unsafe Block: unsafe { ... } block. Compiler safety guarantees … cli/lsp/urls.rs:43
View all fragile runtime findings →
Legacy markers 18 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 `op_node_database_backup` in ext/node/polyfills/sqlite.ts:7
  • low Legacy-named symbol `dgram_legacy` in ext/node/polyfills/dgram.ts:1422
  • low Legacy-named symbol `_fs_copy` in ext/node/polyfills/fs.ts:43
  • low Legacy-named symbol `emitCloseLegacy` in ext/node/polyfills/internal/streams/de…
  • low Legacy-named symbol `_fs_copy` in ext/node/polyfills/internal/fs/promises.ts:10
  • low Legacy-named symbol `ignore_file_directive_unused` in tests/testdata/coverage/i…
  • low Legacy-named symbol `buffer_path_backup` in tests/unit_node/sqlite_test.ts:1005
  • low Legacy-named symbol `mr_v2` in tests/bench/testdata/db.ts:6488
  • low Legacy-named symbol `create_buffer_copy` in tests/napi/buffer_test.js:17
  • low Legacy-named symbol `module_legacy` in tests/napi/init_test.js:88
  • low Legacy-named symbol `linked_backup` in tests/specs/npm/link_npm_package_deep/ba…
  • low Legacy-named symbol `linked_backup` in tests/specs/npm/link_npm_package_deep/ve…
View all legacy markers findings →
Commented-out code 209 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 (6 lines) in ext/node/polyfills/querystring.js:129
  • info Commented-code block (5 lines) in ext/node/polyfills/domain.ts:370
  • info Commented-code block (7 lines) in ext/node/polyfills/dgram.ts:4
  • info Commented-code block (5 lines) in ext/node/polyfills/child_process.ts:193
  • info Commented-code block (7 lines) in ext/node/polyfills/_http_common.js:4
  • info Commented-code block (6 lines) in ext/node/polyfills/worker_threads.ts:399
  • info Commented-code block (7 lines) in ext/node/polyfills/net.ts:4
  • info Commented-code block (5 lines) in ext/node/polyfills/_http_agent.js:285
  • info Commented-code block (7 lines) in ext/node/polyfills/url.ts:4
  • info Commented-code block (6 lines) in ext/node/polyfills/cluster.ts:4
  • info Commented-code block (6 lines) in ext/node/polyfills/_tls_wrap.js:914
  • info Commented-code block (6 lines) in ext/node/polyfills/01_require.js:93
View all commented-out code findings →
Config drift 66 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 Stray `console.log` in TS/JS — tests/testdata/check/cache_config_on_off/main.ts…
  • low Stray `console.log` in TS/JS — tests/specs/compile/config_permissions/empty/mai…
  • low Stray `console.log` in TS/JS — tests/specs/compile/config_permissions/basic/mai…
  • low Stray `console.log` in TS/JS — tests/specs/compile/config_include_exclude/main.…
  • low Stray `console.log` in TS/JS — tests/specs/publish/config_flag/successful/std_h…
  • low Stray `console.log` in TS/JS — tests/specs/publish/config_file_jsonc/std_http.t…
  • low Stray `console.log` in TS/JS — tests/specs/install/global/warn_config_file/main…
  • low Stray `console.log` in TS/JS — tests/specs/install/global/config_file_relative_…
  • low Stray `console.log` in TS/JS — tests/specs/install/global/config_file_import_ma…
  • low Stray `console.log` in TS/JS — tests/specs/info/with_config_override/with_confi…
  • low Stray `console.log` in TS/JS — tests/specs/import_map/import_map_config/scoped_…
  • low Stray `console.log` in TS/JS — tests/specs/import_map/import_map_config/import_…
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/026a157d-4f5f-4502-a13a-022bcdad0f97/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/026a157d-4f5f-4502-a13a-022bcdad0f97/

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.