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

Scan timing: clone 10.48s · analysis 14.72s · 16.5 MB · GitHub API rate-limit (preflight)

abhigyanpatwari/GitNexus

https://github.com/abhigyanpatwari/GitNexus.git · scanned 2026-06-09 04:35 UTC (18 hours, 34 minutes ago) · 10 languages

12763 raw signals (166 security + 12597 graph) 11/13 scanners ran 95th percentile · Typescript · large (100-500K LoC) System graph score 69 (higher by 19)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 18 hours, 33 minutes ago · v12 · 667 actionable findings from 2 signal sources. 82 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 97.0 0.20 19.40
documentation_score 99.0 0.15 14.85
practices_score 84.0 0.15 12.60
code_quality 74.0 0.10 7.40
Overall 1.00 88.2
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: layer: quality × 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 Ranks in the 90th percentile among small-sized repos. Strongest dependencies (90), security (74); weakest testing (15), structure (51). 1 findings (1 high). Most common pattern: repo-zero-tests.

Showing 78 of 667 actionable findings. 749 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 [MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain "../" — directory escape.
Review and fix per the pattern semantics. See CWE-22 / A01:2021 for context.
.github/scripts/check-workflow-concurrency.py:171
high Security checks quality Quality conf 1.00 ✓ Repobility 21 occurrences [MINED108] `self._setup_gitnexus` used but never assigned in __init__: Method `start` of class `GitNexusDockerEnvironment` reads `self._setup_gitnexus`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self._setup_gitnexus = <default>` in __init__, or add a class-level default.
lines 85, 102, 103, 104, 105, 106, 114, 126, +13 more
eval/environments/gitnexus_docker.py:85, 102, 103, 104, 105, 106, 114, 126, +13 more (21 hits)
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express DELETE /api/analyze/:jobId has no auth: Express route DELETE /api/analyze/:jobId declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.delete('/api/analyze/:jobId', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
gitnexus/src/server/api.ts:1679
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express DELETE /api/embed/:jobId has no auth: Express route DELETE /api/embed/:jobId declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.delete('/api/embed/:jobId', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
gitnexus/src/server/api.ts:1837
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express DELETE /api/repo has no auth: Express route DELETE /api/repo declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.delete('/api/repo', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
gitnexus/src/server/api.ts:944
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/analyze has no auth: Express route POST /api/analyze declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/analyze', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
gitnexus/src/server/api.ts:1431
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/embed has no auth: Express route POST /api/embed declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/embed', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
gitnexus/src/server/api.ts:1698
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/query has no auth: Express route POST /api/query declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/query', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
gitnexus/src/server/api.ts:1091
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/search has no auth: Express route POST /api/search declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/search', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
gitnexus/src/server/api.ts:1096
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /path has no auth: Express route POST /path declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/path', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
gitnexus/src/core/ingestion/tree-sitter-queries.ts:361
medium Security checks quality Error handling conf 1.00 3 occurrences [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
3 files, 3 locations
docker-server.mjs:169
gitnexus-web/src/App.tsx:278
gitnexus/scripts/install-duckdb-extension.mjs:39
high Security checks quality Quality conf 0.72 4 occurrences Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
4 files, 4 locations
eval/environments/gitnexus_docker.py:186
gitnexus/src/cli/eval-server.ts:19
gitnexus/src/server/api.ts:11
gitnexus/src/server/git-clone.ts:66
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.
eval/bridge/mcp_bridge.py:105 Error handlingquality
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.
eval/run_eval.py:248 Error handlingquality
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — gitnexus-web/e2e/multi-repo-scoping.spec.ts:116
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 — gitnexus/src/core/group/extractors/http-patterns/node.ts:18
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 — gitnexus/src/core/ingestion/call-processor.ts:13
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 — gitnexus/src/core/ingestion/pipeline-phases/routes.ts:6
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 — gitnexus/src/core/ingestion/route-extractors/nextjs.ts:15
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 — gitnexus/src/core/ingestion/tree-sitter-queries.ts:334
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 — gitnexus/src/core/ingestion/workers/parse-worker.ts:966
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 — gitnexus/src/core/wiki/llm-client.ts:214
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 — gitnexus/test/integration/api-query.test.ts:47
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 — gitnexus/test/integration/resolvers/rust.test.ts:1782
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 — gitnexus/test/unit/call-attribution-issue-1166.test.ts:197
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 — gitnexus/test/unit/dart-type-extractor.test.ts:292
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 — gitnexus/test/unit/group/http-route-extractor.test.ts:1296
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 — gitnexus/test/unit/method-extraction.test.ts:1675
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 — gitnexus/test/unit/rate-limit.test.ts:110
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 — gitnexus/test/unit/server-cors-stack.test.ts:70
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 — gitnexus/test/unit/shape-check.test.ts:68
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 — gitnexus/test/unit/type-env.test.ts:5724
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
low Security checks quality Quality conf 0.60 30 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.
12 files, 13 locations
gitnexus/src/core/group/extractors/python-workspace-extractor.ts:126, 201 (2 hits)
gitnexus-shared/src/scope-resolution/resolve-type-ref.ts:18
gitnexus-web/src/lib/tree-layout.ts:11
gitnexus/src/config/ignore-service.ts:6
gitnexus/src/core/embeddings/chunker.ts:21
gitnexus/src/core/group/extractors/go-workspace-extractor.ts:127
gitnexus/src/core/group/extractors/http-patterns/kotlin.ts:193
gitnexus/src/core/group/extractors/java-workspace-extractor.ts:134
duplicationquality
low Security checks quality Quality conf 0.68 Multiple AI-agent scaffold marker files are present
Keep one current agent instruction file if it helps contributors, remove stale progress/completion markers, and make sure the README, tests, and CI describe the real supported behavior.
.cursorrules:1
low System graph quality Integrity conf 1.00 104 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `BACKEND_URL`, `BENCH_CLASSES`, `BENCH_ITERS`, `BENCH_USERS`, `CI`, `COLUMNS`, `DEBUG`, `DEBUG_E2E` + 96 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `collidedLegacy` in gitnexus/test/unit/calltool-dispatch.test.ts:1441
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 `oldLegacy` in gitnexus/test/unit/incremental-parse-cache.test.ts:449
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 `test_days_old` in .github/scripts/triage/test_sweep.py:204
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 Complexity conf 1.00 Very large file: gitnexus-web/src/core/llm/tools.ts (1501 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus-web/src/hooks/useSigma.ts (1575 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/cli/analyze.ts (1453 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/cobol-processor.ts (1489 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/cobol/cobol-preprocessor.ts (2313 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/languages/cpp/captures.ts (1742 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/languages/kotlin/captures.ts (1338 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/pipeline-phases/parse-impl.ts (1152 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/scope-resolution/contract/scope-resolver.ts (1049 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/tree-sitter-queries.ts (1769 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/type-env.ts (1361 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/workers/parse-worker.ts (2508 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/ingestion/workers/worker-pool.ts (2010 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/core/lbug/lbug-adapter.ts (2047 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/mcp/local/local-backend.ts (4492 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/src/server/api.ts (1918 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/cli-e2e.test.ts (1633 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/cpp.test.ts (4284 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/csharp.test.ts (2716 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/go.test.ts (1657 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/java.test.ts (2375 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/kotlin.test.ts (2902 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/php.test.ts (2290 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/python.test.ts (3022 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/ruby.test.ts (1780 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/rust.test.ts (2327 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/swift.test.ts (1359 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/resolvers/typescript.test.ts (3074 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/integration/skills-e2e.test.ts (2431 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/calltool-dispatch.test.ts (1891 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/cobol-preprocessor.test.ts (2723 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/group/grpc-extractor.test.ts (1714 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/group/http-route-extractor.test.ts (3205 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/hooks.test.ts (1785 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/method-extraction.test.ts (5002 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/mro-processor.test.ts (1820 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/symbol-table.test.ts (1200 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/type-env.test.ts (5910 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gitnexus/test/unit/wiki-flags.test.ts (1819 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/82add7fd-bbe5-41de-a489-334bbd732e67/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/82add7fd-bbe5-41de-a489-334bbd732e67/

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.