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.
90 of your 164 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 75.39s for a 109.4 MB repo slow.
  • Repobility's analysis ran in 32.25s after the clone landed.

angular/angular

https://github.com/angular/angular · scanned 2026-06-05 06:13 UTC (4 hours, 7 minutes ago) · 10 languages

2098 findings (136 legacy + 1962 scanner) 11/13 scanners ran 77th percentile · Typescript · huge (>500K LoC) Scanner says 63 (higher by 25)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 hours, 7 minutes ago · v2 · 1117 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 95.0 0.20 19.00
documentation_score 90.0 0.15 13.50
practices_score 88.0 0.15 13.20
code_quality 80.0 0.10 8.00
Overall 1.00 87.7
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 108 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 Public web app has no Content Security Policy index.html
  • medium React interval is created without an explicit cleanup adev/shared-docs/testing/testing-helper.ts:213
  • medium localStorage write failures are swallowed silently adev/shared-docs/providers/local-storage.ts:64
  • medium [SEC134] AI scaffold leftover — Lorem ipsum / example.com / John Doe in code: L… adev/src/content/tutorials/signals/steps/10-react…:75
  • medium [SEC134] AI scaffold leftover — Lorem ipsum / example.com / John Doe in code: L… adev/src/content/tutorials/signals/steps/10-react…:93
  • medium [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-a… adev/src/app/editor/code-editor/extensions/autoco…:84
  • low Public web app has no humans.txt humans.txt
  • low Public web app has no sitemap sitemap.xml
  • low Duplicated implementation block across source files adev/src/content/tutorials/first-app/steps/10-rou…:6
  • low Duplicated implementation block across source files adev/src/content/tutorials/first-app/steps/10-rou…:1
  • low Duplicated implementation block across source files adev/src/content/tutorials/first-app/steps/10-rou…:5
View all fragile runtime findings →
Legacy markers 20 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 File has no detected symbols: integration/legacy-animations-async/karma.conf.js
  • low File has no detected symbols: integration/legacy-animations-async/src/main.ts
  • low File has no detected symbols: integration/legacy-animations/src/main.ts
  • info TODO/FIXME marker in shipping code — packages/language-service/test/legacy/type…
  • info TODO/FIXME marker in shipping code — packages/language-service/test/legacy/temp…
  • low Very large file: packages/language-service/test/legacy/template_target_spec.ts …
  • low Very large file: packages/core/test/legacy_animation/legacy_animation_integrati…
  • low Very large file: packages/core/test/legacy_animation/legacy_animation_query_int…
  • low Legacy-named symbol `reportsDeprecated` in vscode-ng-language-service/server/sr…
  • low Legacy-named symbol `models_deprecated` in packages/router/src/index.ts:71
  • info Commented-code block (7 lines) in packages/language-service/test/legacy/templat…
  • low Legacy-named symbol `reportsDeprecated` in packages/compiler-cli/src/ngtsc/type…
View all legacy markers findings →
Commented-out code 250 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 (8 lines) in vscode-ng-language-service/client/src/client.…
  • info Commented-code block (5 lines) in vscode-ng-language-service/server/src/session…
  • info Commented-code block (5 lines) in vscode-ng-language-service/server/src/server_…
  • info Commented-code block (18 lines) in vscode-ng-language-service/server/src/logger…
  • info Commented-code block (5 lines) in vscode-ng-language-service/server/src/handler…
  • info Commented-code block (5 lines) in vscode-ng-language-service/server/src/handler…
  • info Commented-code block (6 lines) in vscode-ng-language-service/server/src/handler…
  • info Commented-code block (5 lines) in devtools/projects/ng-devtools/src/lib/shared/…
  • info Commented-code block (6 lines) in devtools/projects/ng-devtools/src/lib/devtool…
  • info Commented-code block (5 lines) in devtools/projects/ng-devtools/src/lib/devtool…
  • info Commented-code block (5 lines) in devtools/projects/ng-devtools-backend/src/lib…
  • info Commented-code block (5 lines) in devtools/projects/shell-browser/src/app/conte…
View all commented-out code findings →
Config drift 12 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
  • high [SEC027] XML External Entity (XXE) — Node.js xml parsers: Node.js XML parsers c… packages/compiler/src/i18n/serializers/xtb.ts:97
  • low File has no detected symbols: vscode-ng-language-service/server/src/tests/confi…
  • low File has no detected symbols: integration/platform-server-hydration/src/app/app…
  • low File has no detected symbols: integration/platform-server-hydration/src/app/app…
  • low File has no detected symbols: integration/platform-server/projects/standalone/s…
  • low File has no detected symbols: integration/platform-server/projects/standalone/s…
  • info TODO/FIXME marker in shipping code — packages/router/src/utils/config_matching.…
  • low Stray `console.log` in TS/JS — packages/zone.js/lib/zone.configurations.api.ts:…
  • info TODO/FIXME marker in shipping code — packages/localize/tools/esbuild.config.js:…
  • info TODO/FIXME marker in shipping code — packages/service-worker/cli/esbuild.config…
  • medium `fetch()` without try/.catch or AbortSignal — packages/router/src/router_config…
  • high Dangling fetch: GET http://example.com/movies.json (packages/router/src/router_…
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/4ae13fda-b08c-4c7e-8cba-f15fd6f8f56a/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/4ae13fda-b08c-4c7e-8cba-f15fd6f8f56a/

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.