{"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-78fda485f2740102", "name": "Stray `console.log` in TS/JS \u2014 tests/e2e/red-team-api.spec.ts:511", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 tests/e2e/red-team-api.spec.ts:511"}, "fullDescription": {"text": "Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.\n\nWhy: Hygiene \u2014 easy to leak debug output.\nRule id: fq.console-leak"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-68ad5fab0b82bece", "name": "Stray `console.log` in TS/JS \u2014 scripts/build-og.ts:91", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 scripts/build-og.ts:91"}, "fullDescription": {"text": "Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.\n\nWhy: Hygiene \u2014 easy to leak debug output.\nRule id: fq.console-leak"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-3be2f70b3da77023", "name": "`truncate` class without `title=` for hover reveal \u2014 src/components/chat/Transcript.tsx:403", "shortDescription": {"text": "`truncate` class without `title=` for hover reveal \u2014 src/components/chat/Transcript.tsx:403"}, "fullDescription": {"text": "A truncated value should reveal the full text on hover. Pass the full string via `title={...}` so the user can read it.\n\nWhy: P2 in CHECKLIST.md \u2014 truncate without hover-reveal.\nRule id: fq.truncate.no-title"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "info", "confidence": 1.0}}, {"id": "scanner-37c951a42e3e9c3d", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/i18n/index.ts:44", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/i18n/index.ts:44"}, "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-9710c8d059e53154", "name": "No frontend routes/components detected", "shortDescription": {"text": "No frontend routes/components detected"}, "fullDescription": {"text": "No React/Vue/Next routes were found. This is fine for backend-only repos."}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "info", "confidence": 1.0}}, {"id": "scanner-6372cebde0220094", "name": "No auth library detected", "shortDescription": {"text": "No auth library detected"}, "fullDescription": {"text": "The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-141b30a41e03817b", "name": "No license file detected", "shortDescription": {"text": "No license file detected"}, "fullDescription": {"text": "No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake."}, "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 16 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-b9088664ace7f748", "name": "Composite production-readiness gap", "shortDescription": {"text": "Composite production-readiness gap"}, "fullDescription": {"text": "Multiple low-cost hardening controls are missing together: license, ci. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-7bcc2832ffd79603", "name": "Commented-code block (8 lines) in astro.config.mjs:33", "shortDescription": {"text": "Commented-code block (8 lines) in astro.config.mjs:33"}, "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-1f346970e99bcf67", "name": "`fetch()` without try/.catch or AbortSignal \u2014 scripts/prewarm-starters.mjs:90", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 scripts/prewarm-starters.mjs:90"}, "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-b1faf70d17489576", "name": "`fetch()` without try/.catch or AbortSignal \u2014 src/worker.test.ts:193", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/worker.test.ts:193"}, "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-278a6d21de5d61a6", "name": "Commented-code block (6 lines) in src/worker.ts:100", "shortDescription": {"text": "Commented-code block (6 lines) in src/worker.ts:100"}, "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-ce49a499994503e8", "name": "`fetch()` without try/.catch or AbortSignal \u2014 src/worker.ts:134", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/worker.ts:134"}, "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-ed704d4d309856c4", "name": "Commented-code block (5 lines) in src/quota-coordinator.ts:85", "shortDescription": {"text": "Commented-code block (5 lines) in src/quota-coordinator.ts:85"}, "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-4145b6e9d7e5ebd3", "name": "Commented-code block (5 lines) in src/components/chat/ChatIsland.tsx:35", "shortDescription": {"text": "Commented-code block (5 lines) in src/components/chat/ChatIsland.tsx:35"}, "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-729876a80f85ce86", "name": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/chat/ChatIsland.tsx:213", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/chat/ChatIsland.tsx:213"}, "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-e68bc4c1ff43f3f5", "name": "Commented-code block (6 lines) in src/components/chat/Transcript.tsx:189", "shortDescription": {"text": "Commented-code block (6 lines) in src/components/chat/Transcript.tsx:189"}, "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-c73058576888d403", "name": "Commented-code block (6 lines) in src/i18n/index.ts:39", "shortDescription": {"text": "Commented-code block (6 lines) in src/i18n/index.ts:39"}, "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}}]}}, "automationDetails": {"id": "repobility/25430"}, "properties": {"repository": "Divinci-AI/divinci-landing-template", "repoUrl": "https://github.com/Divinci-AI/divinci-landing-template", "branch": "main"}, "results": [{"ruleId": "scanner-78fda485f2740102", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 tests/e2e/red-team-api.spec.ts:511"}, "properties": {"repobilityId": "471d386ab05ca7cd", "scanner": "scanner-primary", "fingerprint": "78fda485f2740102", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-68ad5fab0b82bece", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 scripts/build-og.ts:91"}, "properties": {"repobilityId": "064a8dfcacb6b69f", "scanner": "scanner-primary", "fingerprint": "68ad5fab0b82bece", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-3be2f70b3da77023", "level": "none", "message": {"text": "`truncate` class without `title=` for hover reveal \u2014 src/components/chat/Transcript.tsx:403"}, "properties": {"repobilityId": "53adfe02041b33cd", "scanner": "scanner-primary", "fingerprint": "3be2f70b3da77023", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["frontend-quality", "fq.truncate.no-title"]}}, {"ruleId": "scanner-37c951a42e3e9c3d", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/i18n/index.ts:44"}, "properties": {"repobilityId": "9c9a8b491ffee8a1", "scanner": "scanner-primary", "fingerprint": "37c951a42e3e9c3d", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-9710c8d059e53154", "level": "none", "message": {"text": "No frontend routes/components detected"}, "properties": {"repobilityId": "44ca61485762e494", "scanner": "scanner-primary", "fingerprint": "9710c8d059e53154", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-6372cebde0220094", "level": "warning", "message": {"text": "No auth library detected"}, "properties": {"repobilityId": "a5b6035a5bbf8054", "scanner": "scanner-primary", "fingerprint": "6372cebde0220094", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["coverage", "auth"]}}, {"ruleId": "scanner-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "5dacf18d2e4fa7ac", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-72b2a6250083a784", "level": "warning", "message": {"text": "Placeholder or mock-heavy implementation detected"}, "properties": {"repobilityId": "bc5a4d1620b7c794", "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": "5c8d870d794524b6", "scanner": "scanner-primary", "fingerprint": "2d0c7b7ab8f8aacf", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "critical-flow", "generated-repo-pattern"]}}, {"ruleId": "scanner-b9088664ace7f748", "level": "note", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "5b79fdcd11137b9f", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["production-readiness", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-7bcc2832ffd79603", "level": "none", "message": {"text": "Commented-code block (8 lines) in astro.config.mjs:33"}, "properties": {"repobilityId": "2a079c905385647d", "scanner": "scanner-primary", "fingerprint": "7bcc2832ffd79603", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-1f346970e99bcf67", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 scripts/prewarm-starters.mjs:90"}, "properties": {"repobilityId": "a3da1e2317f5b68f", "scanner": "scanner-primary", "fingerprint": "1f346970e99bcf67", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-b1faf70d17489576", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/worker.test.ts:193"}, "properties": {"repobilityId": "13c9b6d19743eb84", "scanner": "scanner-primary", "fingerprint": "b1faf70d17489576", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-278a6d21de5d61a6", "level": "none", "message": {"text": "Commented-code block (6 lines) in src/worker.ts:100"}, "properties": {"repobilityId": "58360dbe49f936f7", "scanner": "scanner-primary", "fingerprint": "278a6d21de5d61a6", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-ce49a499994503e8", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/worker.ts:134"}, "properties": {"repobilityId": "fbf1dd6d09900168", "scanner": "scanner-primary", "fingerprint": "ce49a499994503e8", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-ed704d4d309856c4", "level": "none", "message": {"text": "Commented-code block (5 lines) in src/quota-coordinator.ts:85"}, "properties": {"repobilityId": "23b42cb3aebbf3f9", "scanner": "scanner-primary", "fingerprint": "ed704d4d309856c4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-4145b6e9d7e5ebd3", "level": "none", "message": {"text": "Commented-code block (5 lines) in src/components/chat/ChatIsland.tsx:35"}, "properties": {"repobilityId": "bcd4be6a5b957e3f", "scanner": "scanner-primary", "fingerprint": "4145b6e9d7e5ebd3", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-729876a80f85ce86", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/chat/ChatIsland.tsx:213"}, "properties": {"repobilityId": "5d8b103b4279957d", "scanner": "scanner-primary", "fingerprint": "729876a80f85ce86", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-e68bc4c1ff43f3f5", "level": "none", "message": {"text": "Commented-code block (6 lines) in src/components/chat/Transcript.tsx:189"}, "properties": {"repobilityId": "2bc21434bcdbef02", "scanner": "scanner-primary", "fingerprint": "e68bc4c1ff43f3f5", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-c73058576888d403", "level": "none", "message": {"text": "Commented-code block (6 lines) in src/i18n/index.ts:39"}, "properties": {"repobilityId": "0f968237d76d4028", "scanner": "scanner-primary", "fingerprint": "c73058576888d403", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}]}]}