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

Scan timing: clone 26.19s · analysis 3.26s · 26.9 MB · GitHub API rate-limit (preflight)

Lum1104/Understand-Anything

https://github.com/Lum1104/Understand-Anything · scanned 2026-06-05 11:29 UTC (5 days, 11 hours ago) · 10 languages

267 raw signals (95 security + 172 graph) 11/13 scanners ran 89th percentile · Typescript · medium (20-100K LoC) System graph score 88 (lower by 3)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 11 hours ago · v2 · 109 actionable findings from 2 signal sources. 47 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

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 100.0 0.20 20.00
documentation_score 94.0 0.15 14.10
practices_score 72.0 0.15 10.80
code_quality 68.0 0.10 6.80
Overall 1.00 85.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
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 Strongest security (100), dependencies (90); weakest documentation (59), structure (62).

Showing 77 of 109 actionable findings. 156 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 Security checks quality Quality conf 1.00 ✓ Repobility [MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes.
Add `import warnings` at the top of the file.
understand-anything-plugin/skills/understand-knowledge/parse-knowledge-base.py:403
high Security checks cicd CI/CD security conf 1.00 [SEC069] Dockerfile: no USER directive (runs as root): Container runs as root because no USER directive was set. Ported from trivy DS002 / checkov CKV_DOCKER_3 (Apache-2.0). Implement as a file-level rule: skip if file contains `^\s*USER\s+\S+` other than `root`.
Add `RUN adduser -D app && USER app` before the CMD/ENTRYPOINT.
understand-anything-plugin/packages/core/src/plugins/parsers/dockerfile-parser.ts:1 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 1.00 [SEC069] Dockerfile: no USER directive (runs as root): Container runs as root because no USER directive was set. Ported from trivy DS002 / checkov CKV_DOCKER_3 (Apache-2.0). Implement as a file-level rule: skip if file contains `^\s*USER\s+\S+` other than `root`.
Add `RUN adduser -D app && USER app` before the CMD/ENTRYPOINT.
understand-anything-plugin/packages/core/src/languages/configs/dockerfile.ts:1 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 7 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
2 files, 7 locations
.github/workflows/deploy-homepage.yml:26, 29, 55, 68 (5 hits)
.github/workflows/ci.yml:24, 27 (2 hits)
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 2 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + …
2 files, 2 locations
.github/workflows/ci.yml:25
.github/workflows/deploy-homepage.yml:27
CI/CD securitySupply chainGitHub Actions
low Security checks quality Error handling conf 0.55 ✓ Repobility Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
understand-anything-plugin/skills/understand-domain/extract-domain-context.py:422 Error handlingquality
high Security checks security auth conf 0.82 3 occurrences Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
lines 75, 84, 91
understand-anything-plugin/packages/dashboard/src/App.tsx:75, 84, 91 (3 hits)
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
understand-anything-plugin/packages/dashboard/src/themes/ThemeContext.tsx:43
high Security checks software dependencies conf 0.70 9 occurrences Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
9 files, 9 locations
README.md:193
READMEs/README.es-ES.md:188
READMEs/README.ja-JP.md:189
READMEs/README.ko-KR.md:188
READMEs/README.ru-RU.md:189
READMEs/README.tr-TR.md:189
READMEs/README.zh-CN.md:188
READMEs/README.zh-TW.md:188
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — understand-anything-plugin/packages/dashboard/src/App.tsx:166
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — understand-anything-plugin/packages/dashboard/src/components/CodeViewer.tsx:102
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
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/deploy-homepage.yml CI/CD securitySupply chainGithub actions
low Security checks cicd CI/CD security conf 1.00 [SEC075] Dockerfile: no HEALTHCHECK: No HEALTHCHECK directive — orchestrators can't detect a wedged process. Ported from trivy DS026 / checkov CKV_DOCKER_2 (Apache-2.0). Implement file-level: skip if file contains `^\s*HEALTHCHECK\b`.
Add `HEALTHCHECK CMD curl -f http://localhost:PORT/health || exit 1`.
understand-anything-plugin/packages/core/src/plugins/parsers/dockerfile-parser.ts:1 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 1.00 [SEC075] Dockerfile: no HEALTHCHECK: No HEALTHCHECK directive — orchestrators can't detect a wedged process. Ported from trivy DS026 / checkov CKV_DOCKER_2 (Apache-2.0). Implement file-level: skip if file contains `^\s*HEALTHCHECK\b`.
Add `HEALTHCHECK CMD curl -f http://localhost:PORT/health || exit 1`.
understand-anything-plugin/packages/core/src/languages/configs/dockerfile.ts:1 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 15 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
10 files, 15 locations
understand-anything-plugin/packages/core/src/plugins/extractors/python-extractor.ts:115, 179, 180 (3 hits)
understand-anything-plugin/packages/core/src/plugins/extractors/rust-extractor.ts:89, 137 (2 hits)
understand-anything-plugin/packages/core/src/plugins/extractors/typescript-extractor.ts:208, 250 (2 hits)
understand-anything-plugin/packages/core/src/plugins/parsers/yaml-parser.ts:12, 33 (2 hits)
understand-anything-plugin/packages/core/src/analyzer/llm-analyzer.ts:56
understand-anything-plugin/packages/core/src/plugins/extractors/csharp-extractor.ts:100
understand-anything-plugin/packages/core/src/plugins/extractors/java-extractor.ts:66
understand-anything-plugin/packages/core/src/plugins/parsers/markdown-parser.ts:5
duplicationquality
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/domain-normalize.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/domain-persistence.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/domain-types.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/embedding-search.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/framework-registry.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/ignore-filter.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/ignore-generator.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/language-registry.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/plugin-discovery.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/__tests__/tour-generator.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/csv.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/dockerfile.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/graphql.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/kotlin.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/kubernetes.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/openapi.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/php.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/plaintext.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/restructuredtext.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/toml.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/configs/yaml.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/django.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/express.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/fastapi.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/flask.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/gin.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/nextjs.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/rails.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/react.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/spring.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/frameworks/vue.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/languages/types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/persistence/persistence.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/types.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/src/types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/core/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/locales/ja.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/locales/ko.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/locales/ru.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/locales/zh-TW.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/locales/zh.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/main.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/themes/types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/utils/__tests__/elk-layout.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/utils/__tests__/smoke.test.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/utils/layout.worker.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/src/vite-env.d.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/packages/dashboard/vite.config.demo.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: understand-anything-plugin/vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: vitest.config.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `hash_old` in understand-anything-plugin/packages/core/src/__tests__/fingerprint.test.ts:307
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 cicd CI/CD security conf 1.00 package.json defines install-time lifecycle scripts
preinstall/install/postinstall/prepare scripts execute during dependency installation. Review them carefully for network calls, obfuscation, shell execution, or credential access.
package.json CI/CD securitySupply chainNpm
low System graph software Dead code conf 1.00 Possibly dead Python function: priority_score
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
understand-anything-plugin/skills/understand-domain/extract-domain-context.py:257
low System graph frontend Frontend quality conf 1.00 React Flow <Controls> without dark theming — understand-anything-plugin/packages/dashboard/src/components/DomainGraphView.tsx:262
`<Controls>` ships with white buttons. Override `.react-flow__controls` and `.react-flow__controls-button` in your stylesheet or pass a styled wrapper. Why: P1 in CHECKLIST.md — vendor defaults bleed light through. Rule id: fq.controls.no-bg
Fq controls no bg
low System graph frontend Frontend quality conf 1.00 React Flow <Controls> without dark theming — understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx:1544
`<Controls>` ships with white buttons. Override `.react-flow__controls` and `.react-flow__controls-button` in your stylesheet or pass a styled wrapper. Why: P1 in CHECKLIST.md — vendor defaults bleed light through. Rule id: fq.controls.no-bg
Fq controls no bg
low System graph frontend Frontend quality conf 1.00 React Flow <Controls> without dark theming — understand-anything-plugin/packages/dashboard/src/components/KnowledgeGraphView.tsx:264
`<Controls>` ships with white buttons. Override `.react-flow__controls` and `.react-flow__controls-button` in your stylesheet or pass a styled wrapper. Why: P1 in CHECKLIST.md — vendor defaults bleed light through. Rule id: fq.controls.no-bg
Fq controls no bg
low System graph frontend Frontend quality conf 1.00 React Flow <MiniMap> without dark background — understand-anything-plugin/packages/dashboard/src/components/KnowledgeGraphView.tsx:265
A bare <MiniMap> renders with the vendor's white default in dark themes. Wrap the canvas in a class that overrides `.react-flow__minimap` background, or pass an explicit `style`/`maskColor`/`bgColor`. Why: P1 in CHECKLIST.md — vendor defaults bleed light through. Rule id: fq.minimap.no-bg
Fq minimap no bg
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — understand-anything-plugin/packages/core/src/plugins/tree-sitter-plugin.test.ts:39
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — understand-anything-plugin/packages/dashboard/vite.config.ts:242
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Complexity conf 1.00 Very large file: tests/skill/understand/test_merge_batch_graphs.py (1187 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: understand-anything-plugin/packages/dashboard/src/components/GraphView.tsx (1581 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/7b145f12-b457-4f39-8ff8-be3c3ef914d9/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/7b145f12-b457-4f39-8ff8-be3c3ef914d9/

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.