{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "scanner-bead75b0f9233e05", "name": "No API endpoints detected", "shortDescription": {"text": "No API endpoints detected"}, "fullDescription": {"text": "The scanner did not find FastAPI/Flask/Express/NestJS/GraphQL/gRPC routes. If this repo exposes APIs, the framework may be unsupported."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "info", "confidence": 1.0}}, {"id": "scanner-8f872386b883daa9", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 webapp/app/cards/[slug]/page.tsx:148", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 webapp/app/cards/[slug]/page.tsx:148"}, "fullDescription": {"text": "Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library.\n\nWhy: OWASP basics. Already partially flagged by the security analyzer.\nRule id: fq.dangerous-html"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-a3640cbcf7e66225", "name": "Insecure pattern 'dangerous_innerhtml' in webapp/app/cards/[slug]/page.tsx:148", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in webapp/app/cards/[slug]/page.tsx:148"}, "fullDescription": {"text": "Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-51908d499a9197ef", "name": "GitHub Actions workflow grants broad write permissions", "shortDescription": {"text": "GitHub Actions workflow grants broad write permissions"}, "fullDescription": {"text": "CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions."}, "properties": {"scanner": "scanner-primary", "layer": "cicd", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-5437b86bd43493db", "name": "Very large file: webapp/lib/i18n.tsx (974 lines)", "shortDescription": {"text": "Very large file: webapp/lib/i18n.tsx (974 lines)"}, "fullDescription": {"text": "Files with >800 lines often hide complexity hotspots and discourage tests."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-6893a6c8b0861585", "name": "Very low test-to-source ratio", "shortDescription": {"text": "Very low test-to-source ratio"}, "fullDescription": {"text": "1 test file(s) for 82 source file(s) (ratio 0.01). Consider adding integration or unit tests for critical paths."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 14 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-72b2a6250083a784", "name": "Placeholder or mock-heavy implementation detected", "shortDescription": {"text": "Placeholder or mock-heavy implementation detected"}, "fullDescription": {"text": "Found 31 placeholder/mock markers across 9 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-2d0c7b7ab8f8aacf", "name": "Critical user flow still appears backed by mock or placeholder data", "shortDescription": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "fullDescription": {"text": "A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-ea8f3013f588db25", "name": "Shallow git history limits provenance confidence", "shortDescription": {"text": "Shallow git history limits provenance confidence"}, "fullDescription": {"text": "The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-8424db9c75e04ba4", "name": "Very short observed git history", "shortDescription": {"text": "Very short observed git history"}, "fullDescription": {"text": "The repo has multiple source files but two or fewer visible commits. This is not a failure by itself, but it lowers confidence in evolution-based diagnosis."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-cc1491d856c1956d", "name": "Network/subprocess call without timeout or try/except \u2014 scripts/check_secrets.py:28", "shortDescription": {"text": "Network/subprocess call without timeout or try/except \u2014 scripts/check_secrets.py:28"}, "fullDescription": {"text": "`subprocess.check_output(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-b31542d0a5ec05f9", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/SiteHeader.tsx:29", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/SiteHeader.tsx:29"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-b1f705fa68939e78", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/CardEditor.tsx:40", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/CardEditor.tsx:40"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-2176c2e85dda8d19", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/KeyFigurePanel.tsx:184", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/KeyFigurePanel.tsx:184"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-a09c9a9874cd8542", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/upload/route.ts:35", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/upload/route.ts:35"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-bb286724fb9bb3d4", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/file/route.ts:19", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/file/route.ts:19"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-1da091fec2901b92", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/session/route.ts:38", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/session/route.ts:38"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-0b216cc63e43109d", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/rate/route.ts:48", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/rate/route.ts:48"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-31ed10f108069388", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/commit/route.ts:16", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/commit/route.ts:16"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-941e0c45bfc13c6d", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/doi/route.ts:10", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/doi/route.ts:10"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-12a4283452b7f29e", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/extract/route.ts:199", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/extract/route.ts:199"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-d73bef8dd25f7c85", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/comment/route.ts:52", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/comment/route.ts:52"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-4973180c848e6230", "name": "Commented-code block (5 lines) in webapp/lib/kb-remote.ts:1", "shortDescription": {"text": "Commented-code block (5 lines) in webapp/lib/kb-remote.ts:1"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-710947023dcc46c1", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/kb-remote.ts:36", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/kb-remote.ts:36"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-1b9b26325a99fec6", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/github-content.ts:40", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/github-content.ts:40"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-e9ba8f2b337d5b88", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/team.ts:51", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/team.ts:51"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-126eded86bb1f733", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/domain-registry-server.ts:23", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/domain-registry-server.ts:23"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-21501f844a764e08", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/drive.ts:21", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/drive.ts:21"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-9d014306f1ce0194", "name": "Commented-code block (5 lines) in webapp/lib/llm.ts:1", "shortDescription": {"text": "Commented-code block (5 lines) in webapp/lib/llm.ts:1"}, "fullDescription": {"text": "A long run of `//` or `#` lines usually means abandoned code. Delete or move to git history. Keeps the canvas + dead-code detection honest."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-73a3bfea889a4a4f", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/llm.ts:85", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/llm.ts:85"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-4a739e72d1b4b1a7", "name": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/google.ts:20", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/google.ts:20"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-b0b5e7cb1208a7cd", "name": "13 env vars used in code but missing from .env.example", "shortDescription": {"text": "13 env vars used in code but missing from .env.example"}, "fullDescription": {"text": "Drift between code and config docs. The first few: `ANTHROPIC_API_KEY`, `ANTHROPIC_MODEL`, `APP_PASSWORD`, `DEEPSEEK_API_KEY`, `DEEPSEEK_MODEL`, `GITHUB_REPOSITORY`, `GOOGLE_OAUTH_CLIENT_ID`, `GOOGLE_OAUTH_CLIENT_SECRET` + 5 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}]}}, "automationDetails": {"id": "repobility/23483"}, "properties": {"repository": "yzyzieee/Literature_ANC_Database", "repoUrl": "https://github.com/yzyzieee/Literature_ANC_Database", "branch": "main"}, "results": [{"ruleId": "scanner-bead75b0f9233e05", "level": "none", "message": {"text": "No API endpoints detected"}, "properties": {"repobilityId": "0f8bb852027c38f8", "scanner": "scanner-primary", "fingerprint": "bead75b0f9233e05", "layer": "api", "severity": "info", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-8f872386b883daa9", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 webapp/app/cards/[slug]/page.tsx:148"}, "properties": {"repobilityId": "b5113bb18a728ff1", "scanner": "scanner-primary", "fingerprint": "8f872386b883daa9", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-a3640cbcf7e66225", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in webapp/app/cards/[slug]/page.tsx:148"}, "properties": {"repobilityId": "3f705fbba9edb95c", "scanner": "scanner-primary", "fingerprint": "a3640cbcf7e66225", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "webapp/app/cards/[slug]/page.tsx"}, "region": {"startLine": 148}}}]}, {"ruleId": "scanner-51908d499a9197ef", "level": "warning", "message": {"text": "GitHub Actions workflow grants broad write permissions"}, "properties": {"repobilityId": "5aa60f10b56efe56", "scanner": "scanner-primary", "fingerprint": "51908d499a9197ef", "layer": "cicd", "severity": "medium", "confidence": 1.0, "tags": ["supply-chain", "github-actions", "least-privilege"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/maintain.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-5437b86bd43493db", "level": "note", "message": {"text": "Very large file: webapp/lib/i18n.tsx (974 lines)"}, "properties": {"repobilityId": "98e39307a4531435", "scanner": "scanner-primary", "fingerprint": "5437b86bd43493db", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["complexity"]}}, {"ruleId": "scanner-6893a6c8b0861585", "level": "warning", "message": {"text": "Very low test-to-source ratio"}, "properties": {"repobilityId": "54a7de3f06314bf0", "scanner": "scanner-primary", "fingerprint": "6893a6c8b0861585", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["tests", "coverage"]}}, {"ruleId": "scanner-3ab5d313dda8e5f9", "level": "note", "message": {"text": "Debug logging residue appears in source files"}, "properties": {"repobilityId": "9fdcb24ae214f23a", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-72b2a6250083a784", "level": "warning", "message": {"text": "Placeholder or mock-heavy implementation detected"}, "properties": {"repobilityId": "01876fb78fe2a04f", "scanner": "scanner-primary", "fingerprint": "72b2a6250083a784", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "incomplete", "generated-repo-pattern"]}}, {"ruleId": "scanner-2d0c7b7ab8f8aacf", "level": "warning", "message": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "properties": {"repobilityId": "1b4ef3ace285dc6e", "scanner": "scanner-primary", "fingerprint": "2d0c7b7ab8f8aacf", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "critical-flow", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "8ccdb704cd3dabff", "scanner": "scanner-primary", "fingerprint": "ea8f3013f588db25", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-8424db9c75e04ba4", "level": "none", "message": {"text": "Very short observed git history"}, "properties": {"repobilityId": "ac96f2b964256e39", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-cc1491d856c1956d", "level": "warning", "message": {"text": "Network/subprocess call without timeout or try/except \u2014 scripts/check_secrets.py:28"}, "properties": {"repobilityId": "9482ccf7c7aa74d4", "scanner": "scanner-primary", "fingerprint": "cc1491d856c1956d", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-b31542d0a5ec05f9", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/SiteHeader.tsx:29"}, "properties": {"repobilityId": "add70ca790584d67", "scanner": "scanner-primary", "fingerprint": "b31542d0a5ec05f9", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-b1f705fa68939e78", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/CardEditor.tsx:40"}, "properties": {"repobilityId": "0c837df13826ce9f", "scanner": "scanner-primary", "fingerprint": "b1f705fa68939e78", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-2176c2e85dda8d19", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/components/KeyFigurePanel.tsx:184"}, "properties": {"repobilityId": "a12617048ca63db1", "scanner": "scanner-primary", "fingerprint": "2176c2e85dda8d19", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-a09c9a9874cd8542", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/upload/route.ts:35"}, "properties": {"repobilityId": "8f675c8765623c8c", "scanner": "scanner-primary", "fingerprint": "a09c9a9874cd8542", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-bb286724fb9bb3d4", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/file/route.ts:19"}, "properties": {"repobilityId": "8ceeddd5233211e1", "scanner": "scanner-primary", "fingerprint": "bb286724fb9bb3d4", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-1da091fec2901b92", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/drive/session/route.ts:38"}, "properties": {"repobilityId": "14ace78e84240ae1", "scanner": "scanner-primary", "fingerprint": "1da091fec2901b92", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-0b216cc63e43109d", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/rate/route.ts:48"}, "properties": {"repobilityId": "37ea73acd94c34c5", "scanner": "scanner-primary", "fingerprint": "0b216cc63e43109d", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-31ed10f108069388", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/commit/route.ts:16"}, "properties": {"repobilityId": "13b12a2a4d621cc8", "scanner": "scanner-primary", "fingerprint": "31ed10f108069388", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-941e0c45bfc13c6d", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/doi/route.ts:10"}, "properties": {"repobilityId": "bbbf5ef31deda486", "scanner": "scanner-primary", "fingerprint": "941e0c45bfc13c6d", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-12a4283452b7f29e", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/extract/route.ts:199"}, "properties": {"repobilityId": "423df2b30f7c8347", "scanner": "scanner-primary", "fingerprint": "12a4283452b7f29e", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-d73bef8dd25f7c85", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/app/api/comment/route.ts:52"}, "properties": {"repobilityId": "635555c450608443", "scanner": "scanner-primary", "fingerprint": "d73bef8dd25f7c85", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-4973180c848e6230", "level": "none", "message": {"text": "Commented-code block (5 lines) in webapp/lib/kb-remote.ts:1"}, "properties": {"repobilityId": "41c4899b17497545", "scanner": "scanner-primary", "fingerprint": "4973180c848e6230", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-710947023dcc46c1", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/kb-remote.ts:36"}, "properties": {"repobilityId": "ec361a138e79b697", "scanner": "scanner-primary", "fingerprint": "710947023dcc46c1", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-1b9b26325a99fec6", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/github-content.ts:40"}, "properties": {"repobilityId": "ef0417395975caf9", "scanner": "scanner-primary", "fingerprint": "1b9b26325a99fec6", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-e9ba8f2b337d5b88", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/team.ts:51"}, "properties": {"repobilityId": "fecea8542cf381b2", "scanner": "scanner-primary", "fingerprint": "e9ba8f2b337d5b88", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-126eded86bb1f733", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/domain-registry-server.ts:23"}, "properties": {"repobilityId": "2c83a77e0c055fb0", "scanner": "scanner-primary", "fingerprint": "126eded86bb1f733", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-21501f844a764e08", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/drive.ts:21"}, "properties": {"repobilityId": "a39a006086187aff", "scanner": "scanner-primary", "fingerprint": "21501f844a764e08", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-9d014306f1ce0194", "level": "none", "message": {"text": "Commented-code block (5 lines) in webapp/lib/llm.ts:1"}, "properties": {"repobilityId": "18692d283987e80c", "scanner": "scanner-primary", "fingerprint": "9d014306f1ce0194", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-73a3bfea889a4a4f", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/llm.ts:85"}, "properties": {"repobilityId": "80f35d81cda74059", "scanner": "scanner-primary", "fingerprint": "73a3bfea889a4a4f", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-4a739e72d1b4b1a7", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 webapp/lib/google.ts:20"}, "properties": {"repobilityId": "45dd79647cb96de6", "scanner": "scanner-primary", "fingerprint": "4a739e72d1b4b1a7", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-b0b5e7cb1208a7cd", "level": "note", "message": {"text": "13 env vars used in code but missing from .env.example"}, "properties": {"repobilityId": "2737b8666c1f7eeb", "scanner": "scanner-primary", "fingerprint": "b0b5e7cb1208a7cd", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "config-drift"]}}]}]}