{"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-d964537677a52fb7", "name": "Stray `console.log` in TS/JS \u2014 scripts/coaching-calendar-sync.js:94", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 scripts/coaching-calendar-sync.js:94"}, "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-267d948ca9456903", "name": "Stray `console.log` in TS/JS \u2014 scripts/setup-coaching-db.js:45", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 scripts/setup-coaching-db.js:45"}, "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-fd9d728aa069b283", "name": "Stray `console.log` in TS/JS \u2014 scripts/coaching-progress.js:86", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 scripts/coaching-progress.js:86"}, "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-90c05bd68ba13990", "name": "Stray `console.log` in TS/JS \u2014 scripts/coaching-client.js:76", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 scripts/coaching-client.js:76"}, "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-ff8011a006f68da9", "name": "Stray `console.log` in TS/JS \u2014 scripts/log-lesson.js:94", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 scripts/log-lesson.js:94"}, "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-ba92b07e53a10796", "name": "Stray `console.log` in TS/JS \u2014 scripts/generate-search-index.ts:242", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 scripts/generate-search-index.ts:242"}, "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-f357ea151c95a562", "name": "`truncate` class without `title=` for hover reveal \u2014 src/components/SearchBar.tsx:290", "shortDescription": {"text": "`truncate` class without `title=` for hover reveal \u2014 src/components/SearchBar.tsx:290"}, "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-60f0fb6ca38b89eb", "name": "`truncate` class without `title=` for hover reveal \u2014 src/components/admin/AdminDashboard.tsx:352", "shortDescription": {"text": "`truncate` class without `title=` for hover reveal \u2014 src/components/admin/AdminDashboard.tsx:352"}, "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-27e888a30caeb068", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/page.tsx:174", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/page.tsx:174"}, "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-175503d442cf9c78", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/layout.tsx:136", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/layout.tsx:136"}, "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-117ec834b917bbc2", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/about/page.tsx:101", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/about/page.tsx:101"}, "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-661e44cab174e1dd", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/blog/page.tsx:39", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/blog/page.tsx:39"}, "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-a745a6d3083e34b8", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/blog/[slug]/page.tsx:212", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/blog/[slug]/page.tsx:212"}, "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-39fbc6c601019a1c", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/contact/page.tsx:40", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/contact/page.tsx:40"}, "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-951bf4b55cedb736", "name": "Stray `console.log` in TS/JS \u2014 src/app/api/leads/route.ts:122", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 src/app/api/leads/route.ts:122"}, "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-ae54705b481b9d79", "name": "Stray `console.log` in TS/JS \u2014 src/app/api/stripe/webhook/route.ts:85", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 src/app/api/stripe/webhook/route.ts:85"}, "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-81dfef71df68e6c7", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/evaluation/page.tsx:83", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/evaluation/page.tsx:83"}, "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-8a754f0264adc452", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/quiz/page.tsx:34", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/quiz/page.tsx:34"}, "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-741f802670aaf427", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/events/page.tsx:87", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/events/page.tsx:87"}, "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-d19e2d7c992d9422", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/cohort/page.tsx:96", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/cohort/page.tsx:96"}, "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-41a9a81739152aa7", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/coaching/page.tsx:73", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/coaching/page.tsx:73"}, "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-cf1f84a3a007048c", "name": "Privileged port 465 in use", "shortDescription": {"text": "Privileged port 465 in use"}, "fullDescription": {"text": "Port 465 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer."}, "properties": {"scanner": "scanner-primary", "layer": "network", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-1cef3e15924556d0", "name": "Insecure pattern 'local_storage_auth_token' in src/components/admin/AdminDashboard.tsx:219", "shortDescription": {"text": "Insecure pattern 'local_storage_auth_token' in src/components/admin/AdminDashboard.tsx:219"}, "fullDescription": {"text": "Found a known-risky pattern (local_storage_auth_token). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-f07913bcebfb1466", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/page.tsx:174", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/page.tsx:174"}, "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-827c2fa894d0815f", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/layout.tsx:136", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/layout.tsx:136"}, "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-be7d9e456ce375a2", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/about/page.tsx:101", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/about/page.tsx:101"}, "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-15cfcd46d282fe78", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/blog/page.tsx:39", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/blog/page.tsx:39"}, "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-694cb21891ed20a7", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/blog/[slug]/page.tsx:212", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/blog/[slug]/page.tsx:212"}, "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-a74b7e20e6b049ad", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/contact/page.tsx:40", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/contact/page.tsx:40"}, "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-a9a8be815da37f06", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/evaluation/page.tsx:83", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/evaluation/page.tsx:83"}, "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-7389e6cb27282a97", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/quiz/page.tsx:34", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/quiz/page.tsx:34"}, "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-ec66b9f32175c31e", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/events/page.tsx:87", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/events/page.tsx:87"}, "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-71ac1d78fb920ce6", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/cohort/page.tsx:96", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/cohort/page.tsx:96"}, "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-93b8c2265f189a40", "name": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/coaching/page.tsx:73", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/coaching/page.tsx:73"}, "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-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-4601e3ad3bb28677", "name": "No CI/CD pipelines detected", "shortDescription": {"text": "No CI/CD pipelines detected"}, "fullDescription": {"text": "No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints."}, "properties": {"scanner": "scanner-primary", "layer": "cicd", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-ea3b5e389d8c9c0f", "name": "Low test-to-source ratio", "shortDescription": {"text": "Low test-to-source ratio"}, "fullDescription": {"text": "17 tests / 76 src (ratio 0.22)."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "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-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 75 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 22 placeholder/mock markers across 7 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-749d4bc1bd66df5f", "name": "Agent instructions exist but release-hardening basics are missing", "shortDescription": {"text": "Agent instructions exist but release-hardening basics are missing"}, "fullDescription": {"text": "AI-coder instruction files were found, but the repo is missing license, ci. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable."}, "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-cc55229a7a3c078d", "name": "Agent authority lacks a verifier contract: .mcp.json", "shortDescription": {"text": "Agent authority lacks a verifier contract: .mcp.json"}, "fullDescription": {"text": "This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-116fe7df9ba7ea0d", "name": "Agent authority lacks a verifier contract: .claude/commands/funnel.md", "shortDescription": {"text": "Agent authority lacks a verifier contract: .claude/commands/funnel.md"}, "fullDescription": {"text": "This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-fcfc79dbe054d428", "name": "Agent authority lacks a verifier contract: .claude/commands/coaching-sync.md", "shortDescription": {"text": "Agent authority lacks a verifier contract: .claude/commands/coaching-sync.md"}, "fullDescription": {"text": "This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-34aad6bd93bbdc2b", "name": "Agent authority lacks a verifier contract: .claude/commands/coaching-new.md", "shortDescription": {"text": "Agent authority lacks a verifier contract: .claude/commands/coaching-new.md"}, "fullDescription": {"text": "This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-d88e565ab15fec34", "name": "Agent authority lacks a verifier contract: .claude/commands/coaching-log.md", "shortDescription": {"text": "Agent authority lacks a verifier contract: .claude/commands/coaching-log.md"}, "fullDescription": {"text": "This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-95eb45e08c718691", "name": "Agent authority lacks a verifier contract: .claude/commands/book-court.md", "shortDescription": {"text": "Agent authority lacks a verifier contract: .claude/commands/book-court.md"}, "fullDescription": {"text": "This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-af614914c6f48491", "name": "Agent authority lacks a verifier contract: .claude/commands/coaching.md", "shortDescription": {"text": "Agent authority lacks a verifier contract: .claude/commands/coaching.md"}, "fullDescription": {"text": "This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6d6a517d7f3949ed", "name": "Commented-code block (6 lines) in tests/seo.spec.ts:28", "shortDescription": {"text": "Commented-code block (6 lines) in tests/seo.spec.ts:28"}, "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-2245379ee08ecdb8", "name": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/LeadForm.tsx:73", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/LeadForm.tsx:73"}, "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-d68a94e97c5e0ade", "name": "Legacy-named symbol `daysOld` in src/components/admin/AdminDashboard.tsx:47", "shortDescription": {"text": "Legacy-named symbol `daysOld` in src/components/admin/AdminDashboard.tsx:47"}, "fullDescription": {"text": "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."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-0aa98189f7caef31", "name": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/admin/AdminDashboard.tsx:102", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/admin/AdminDashboard.tsx:102"}, "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-a7d0452ba5e6e2f0", "name": "Commented-code block (5 lines) in src/app/api/eval-book/route.ts:45", "shortDescription": {"text": "Commented-code block (5 lines) in src/app/api/eval-book/route.ts:45"}, "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-95eb00564a348e24", "name": "Legacy-named symbol `daysOld` in src/app/api/admin/leads/route.ts:93", "shortDescription": {"text": "Legacy-named symbol `daysOld` in src/app/api/admin/leads/route.ts:93"}, "fullDescription": {"text": "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."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-629d3091cd0a782f", "name": "Commented-code block (5 lines) in src/app/api/cron/follow-up/route.ts:41", "shortDescription": {"text": "Commented-code block (5 lines) in src/app/api/cron/follow-up/route.ts:41"}, "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-3482f7e5dd70cd1a", "name": "6 env vars used in code but missing from .env.example", "shortDescription": {"text": "6 env vars used in code but missing from .env.example"}, "fullDescription": {"text": "Drift between code and config docs. The first few: `CI`, `DRIP_SECRET`, `E2E_PORT`, `NODE_ENV`, `NOTION_COACHING_LESSONS_DB_ID`, `NOTION_COACHING_PARENT_PAGE_ID`. 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/18851"}, "properties": {"repository": "sammorrispb/sam-morris-website", "repoUrl": "https://github.com/sammorrispb/sam-morris-website", "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-d964537677a52fb7", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 scripts/coaching-calendar-sync.js:94"}, "properties": {"repobilityId": "b7dc65ee9db3a7ea", "scanner": "scanner-primary", "fingerprint": "d964537677a52fb7", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-267d948ca9456903", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 scripts/setup-coaching-db.js:45"}, "properties": {"repobilityId": "e4ce6b8770c07b6a", "scanner": "scanner-primary", "fingerprint": "267d948ca9456903", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-fd9d728aa069b283", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 scripts/coaching-progress.js:86"}, "properties": {"repobilityId": "6f4cf918e4ab1d5a", "scanner": "scanner-primary", "fingerprint": "fd9d728aa069b283", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-90c05bd68ba13990", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 scripts/coaching-client.js:76"}, "properties": {"repobilityId": "da5973f15cca0232", "scanner": "scanner-primary", "fingerprint": "90c05bd68ba13990", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-ff8011a006f68da9", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 scripts/log-lesson.js:94"}, "properties": {"repobilityId": "e3c6ed85bc12d91f", "scanner": "scanner-primary", "fingerprint": "ff8011a006f68da9", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-ba92b07e53a10796", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 scripts/generate-search-index.ts:242"}, "properties": {"repobilityId": "1a98ca519ce67ba8", "scanner": "scanner-primary", "fingerprint": "ba92b07e53a10796", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-f357ea151c95a562", "level": "none", "message": {"text": "`truncate` class without `title=` for hover reveal \u2014 src/components/SearchBar.tsx:290"}, "properties": {"repobilityId": "2ce8d4a12db6c853", "scanner": "scanner-primary", "fingerprint": "f357ea151c95a562", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["frontend-quality", "fq.truncate.no-title"]}}, {"ruleId": "scanner-60f0fb6ca38b89eb", "level": "none", "message": {"text": "`truncate` class without `title=` for hover reveal \u2014 src/components/admin/AdminDashboard.tsx:352"}, "properties": {"repobilityId": "1374f53c2b0c808a", "scanner": "scanner-primary", "fingerprint": "60f0fb6ca38b89eb", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["frontend-quality", "fq.truncate.no-title"]}}, {"ruleId": "scanner-27e888a30caeb068", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/page.tsx:174"}, "properties": {"repobilityId": "4d4ab3e03315f684", "scanner": "scanner-primary", "fingerprint": "27e888a30caeb068", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-175503d442cf9c78", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/layout.tsx:136"}, "properties": {"repobilityId": "0d72350965068f5b", "scanner": "scanner-primary", "fingerprint": "175503d442cf9c78", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-117ec834b917bbc2", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/about/page.tsx:101"}, "properties": {"repobilityId": "8fd3d3d868e82023", "scanner": "scanner-primary", "fingerprint": "117ec834b917bbc2", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-661e44cab174e1dd", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/blog/page.tsx:39"}, "properties": {"repobilityId": "41b4d8ab3226bd10", "scanner": "scanner-primary", "fingerprint": "661e44cab174e1dd", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-a745a6d3083e34b8", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/blog/[slug]/page.tsx:212"}, "properties": {"repobilityId": "edc166468e8868e7", "scanner": "scanner-primary", "fingerprint": "a745a6d3083e34b8", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-39fbc6c601019a1c", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/contact/page.tsx:40"}, "properties": {"repobilityId": "11ed0cc1fc8f990a", "scanner": "scanner-primary", "fingerprint": "39fbc6c601019a1c", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-951bf4b55cedb736", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 src/app/api/leads/route.ts:122"}, "properties": {"repobilityId": "2bae8ea969c2f8fc", "scanner": "scanner-primary", "fingerprint": "951bf4b55cedb736", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-ae54705b481b9d79", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 src/app/api/stripe/webhook/route.ts:85"}, "properties": {"repobilityId": "e3501193b3efa3b7", "scanner": "scanner-primary", "fingerprint": "ae54705b481b9d79", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-81dfef71df68e6c7", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/evaluation/page.tsx:83"}, "properties": {"repobilityId": "bcd728d0402ca726", "scanner": "scanner-primary", "fingerprint": "81dfef71df68e6c7", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-8a754f0264adc452", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/quiz/page.tsx:34"}, "properties": {"repobilityId": "59c24e1caa4bbc77", "scanner": "scanner-primary", "fingerprint": "8a754f0264adc452", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-741f802670aaf427", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/events/page.tsx:87"}, "properties": {"repobilityId": "d8d1573c12ad837c", "scanner": "scanner-primary", "fingerprint": "741f802670aaf427", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-d19e2d7c992d9422", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/cohort/page.tsx:96"}, "properties": {"repobilityId": "ee4f9332c8300d82", "scanner": "scanner-primary", "fingerprint": "d19e2d7c992d9422", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-41a9a81739152aa7", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 src/app/programs/coaching/page.tsx:73"}, "properties": {"repobilityId": "3c2a737c7f952464", "scanner": "scanner-primary", "fingerprint": "41a9a81739152aa7", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-cf1f84a3a007048c", "level": "warning", "message": {"text": "Privileged port 465 in use"}, "properties": {"repobilityId": "bcd1f06b60a2b6bc", "scanner": "scanner-primary", "fingerprint": "cf1f84a3a007048c", "layer": "network", "severity": "medium", "confidence": 1.0, "tags": ["security", "ports"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/lib/email.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-1cef3e15924556d0", "level": "warning", "message": {"text": "Insecure pattern 'local_storage_auth_token' in src/components/admin/AdminDashboard.tsx:219"}, "properties": {"repobilityId": "21aabf622e1e20b6", "scanner": "scanner-primary", "fingerprint": "1cef3e15924556d0", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "local_storage_auth_token"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/components/admin/AdminDashboard.tsx"}, "region": {"startLine": 219}}}]}, {"ruleId": "scanner-f07913bcebfb1466", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/page.tsx:174"}, "properties": {"repobilityId": "88fd235b712bda65", "scanner": "scanner-primary", "fingerprint": "f07913bcebfb1466", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/page.tsx"}, "region": {"startLine": 174}}}]}, {"ruleId": "scanner-827c2fa894d0815f", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/layout.tsx:136"}, "properties": {"repobilityId": "0bca654fa2052eb0", "scanner": "scanner-primary", "fingerprint": "827c2fa894d0815f", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/layout.tsx"}, "region": {"startLine": 136}}}]}, {"ruleId": "scanner-be7d9e456ce375a2", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/about/page.tsx:101"}, "properties": {"repobilityId": "7ba73de1c01fa8e9", "scanner": "scanner-primary", "fingerprint": "be7d9e456ce375a2", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/about/page.tsx"}, "region": {"startLine": 101}}}]}, {"ruleId": "scanner-15cfcd46d282fe78", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/blog/page.tsx:39"}, "properties": {"repobilityId": "0f7434f401785d28", "scanner": "scanner-primary", "fingerprint": "15cfcd46d282fe78", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/blog/page.tsx"}, "region": {"startLine": 39}}}]}, {"ruleId": "scanner-694cb21891ed20a7", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/blog/[slug]/page.tsx:212"}, "properties": {"repobilityId": "df5a2a4c38f975f6", "scanner": "scanner-primary", "fingerprint": "694cb21891ed20a7", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/blog/[slug]/page.tsx"}, "region": {"startLine": 212}}}]}, {"ruleId": "scanner-a74b7e20e6b049ad", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/contact/page.tsx:40"}, "properties": {"repobilityId": "97a54c40ac5659cf", "scanner": "scanner-primary", "fingerprint": "a74b7e20e6b049ad", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/contact/page.tsx"}, "region": {"startLine": 40}}}]}, {"ruleId": "scanner-a9a8be815da37f06", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/evaluation/page.tsx:83"}, "properties": {"repobilityId": "b15dca535ac91498", "scanner": "scanner-primary", "fingerprint": "a9a8be815da37f06", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/evaluation/page.tsx"}, "region": {"startLine": 83}}}]}, {"ruleId": "scanner-7389e6cb27282a97", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/quiz/page.tsx:34"}, "properties": {"repobilityId": "d5f1ee58672b55b0", "scanner": "scanner-primary", "fingerprint": "7389e6cb27282a97", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/quiz/page.tsx"}, "region": {"startLine": 34}}}]}, {"ruleId": "scanner-ec66b9f32175c31e", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/events/page.tsx:87"}, "properties": {"repobilityId": "3435f1e41d62ab98", "scanner": "scanner-primary", "fingerprint": "ec66b9f32175c31e", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/programs/events/page.tsx"}, "region": {"startLine": 87}}}]}, {"ruleId": "scanner-71ac1d78fb920ce6", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/cohort/page.tsx:96"}, "properties": {"repobilityId": "94f2203ec43b1fd1", "scanner": "scanner-primary", "fingerprint": "71ac1d78fb920ce6", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/programs/cohort/page.tsx"}, "region": {"startLine": 96}}}]}, {"ruleId": "scanner-93b8c2265f189a40", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in src/app/programs/coaching/page.tsx:73"}, "properties": {"repobilityId": "a3ae047864f097b5", "scanner": "scanner-primary", "fingerprint": "93b8c2265f189a40", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/app/programs/coaching/page.tsx"}, "region": {"startLine": 73}}}]}, {"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-4601e3ad3bb28677", "level": "warning", "message": {"text": "No CI/CD pipelines detected"}, "properties": {"repobilityId": "c3ee439bce2bc51e", "scanner": "scanner-primary", "fingerprint": "4601e3ad3bb28677", "layer": "cicd", "severity": "medium", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-ea3b5e389d8c9c0f", "level": "note", "message": {"text": "Low test-to-source ratio"}, "properties": {"repobilityId": "ef7b2552cc00a375", "scanner": "scanner-primary", "fingerprint": "ea3b5e389d8c9c0f", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["tests"]}}, {"ruleId": "scanner-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "0df0902914c89da8", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-3ab5d313dda8e5f9", "level": "note", "message": {"text": "Debug logging residue appears in source files"}, "properties": {"repobilityId": "92b952f6e92133f0", "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": "526a2005b7d8bc5e", "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": "2eb41048fb411c83", "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": "c2276366e3505c56", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["production-readiness", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-749d4bc1bd66df5f", "level": "warning", "message": {"text": "Agent instructions exist but release-hardening basics are missing"}, "properties": {"repobilityId": "19609d3a2f9f5a6b", "scanner": "scanner-primary", "fingerprint": "749d4bc1bd66df5f", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "ceadc9593767cb94", "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": "c721680493bebca4", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-cc55229a7a3c078d", "level": "warning", "message": {"text": "Agent authority lacks a verifier contract: .mcp.json"}, "properties": {"repobilityId": "51942fb3d5b8b5b4", "scanner": "scanner-primary", "fingerprint": "cc55229a7a3c078d", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "verification", "mcp_config"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".mcp.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-116fe7df9ba7ea0d", "level": "warning", "message": {"text": "Agent authority lacks a verifier contract: .claude/commands/funnel.md"}, "properties": {"repobilityId": "f1c552a7647923bd", "scanner": "scanner-primary", "fingerprint": "116fe7df9ba7ea0d", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "verification", "claude_instruction"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".claude/commands/funnel.md"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-fcfc79dbe054d428", "level": "warning", "message": {"text": "Agent authority lacks a verifier contract: .claude/commands/coaching-sync.md"}, "properties": {"repobilityId": "ff462ebdd387d0a1", "scanner": "scanner-primary", "fingerprint": "fcfc79dbe054d428", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "verification", "claude_instruction"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".claude/commands/coaching-sync.md"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-34aad6bd93bbdc2b", "level": "warning", "message": {"text": "Agent authority lacks a verifier contract: .claude/commands/coaching-new.md"}, "properties": {"repobilityId": "723c8de5351823e6", "scanner": "scanner-primary", "fingerprint": "34aad6bd93bbdc2b", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "verification", "claude_instruction"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".claude/commands/coaching-new.md"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-d88e565ab15fec34", "level": "warning", "message": {"text": "Agent authority lacks a verifier contract: .claude/commands/coaching-log.md"}, "properties": {"repobilityId": "8f4caf6fb49510ca", "scanner": "scanner-primary", "fingerprint": "d88e565ab15fec34", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "verification", "claude_instruction"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".claude/commands/coaching-log.md"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-95eb45e08c718691", "level": "warning", "message": {"text": "Agent authority lacks a verifier contract: .claude/commands/book-court.md"}, "properties": {"repobilityId": "ab9f92cf2bd581e9", "scanner": "scanner-primary", "fingerprint": "95eb45e08c718691", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "verification", "claude_instruction"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".claude/commands/book-court.md"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-af614914c6f48491", "level": "warning", "message": {"text": "Agent authority lacks a verifier contract: .claude/commands/coaching.md"}, "properties": {"repobilityId": "1a9acd374421cfb8", "scanner": "scanner-primary", "fingerprint": "af614914c6f48491", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "verification", "claude_instruction"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".claude/commands/coaching.md"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-6d6a517d7f3949ed", "level": "none", "message": {"text": "Commented-code block (6 lines) in tests/seo.spec.ts:28"}, "properties": {"repobilityId": "c3849e3dcbb78770", "scanner": "scanner-primary", "fingerprint": "6d6a517d7f3949ed", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-2245379ee08ecdb8", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/LeadForm.tsx:73"}, "properties": {"repobilityId": "964d8a875c36be9e", "scanner": "scanner-primary", "fingerprint": "2245379ee08ecdb8", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-d68a94e97c5e0ade", "level": "note", "message": {"text": "Legacy-named symbol `daysOld` in src/components/admin/AdminDashboard.tsx:47"}, "properties": {"repobilityId": "9930e590c0556c2a", "scanner": "scanner-primary", "fingerprint": "d68a94e97c5e0ade", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "legacy-marker", "dead-code"]}}, {"ruleId": "scanner-0aa98189f7caef31", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 src/components/admin/AdminDashboard.tsx:102"}, "properties": {"repobilityId": "775a025dff63b4ad", "scanner": "scanner-primary", "fingerprint": "0aa98189f7caef31", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-a7d0452ba5e6e2f0", "level": "none", "message": {"text": "Commented-code block (5 lines) in src/app/api/eval-book/route.ts:45"}, "properties": {"repobilityId": "36154406632cc6ce", "scanner": "scanner-primary", "fingerprint": "a7d0452ba5e6e2f0", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-95eb00564a348e24", "level": "note", "message": {"text": "Legacy-named symbol `daysOld` in src/app/api/admin/leads/route.ts:93"}, "properties": {"repobilityId": "4f0a2900e10feee3", "scanner": "scanner-primary", "fingerprint": "95eb00564a348e24", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "legacy-marker", "dead-code"]}}, {"ruleId": "scanner-629d3091cd0a782f", "level": "none", "message": {"text": "Commented-code block (5 lines) in src/app/api/cron/follow-up/route.ts:41"}, "properties": {"repobilityId": "7a649b8ee270d60c", "scanner": "scanner-primary", "fingerprint": "629d3091cd0a782f", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["integrity", "commented-code", "dead-code"]}}, {"ruleId": "scanner-3482f7e5dd70cd1a", "level": "note", "message": {"text": "6 env vars used in code but missing from .env.example"}, "properties": {"repobilityId": "1da70f25aa46f6e9", "scanner": "scanner-primary", "fingerprint": "3482f7e5dd70cd1a", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "config-drift"]}}]}]}