What problem does it solve? Code audits often produce destructive false positives — flagging Prisma junction tables, schema building blocks, or allowed FSD imports as dead code — leading to costly recovery work. This Skill enforces a conservative, cross-repo-verified audit process that never recommends dropping code without proof. ## Core Features & Use Cases - Cross-Code Verification Checklists: Mandatory grep-based checks across all repos before any DROP recommendation, covering Prisma models, M2M junctions, lookup tables, OpenAPI schemas, and asset loaders. - FSD Layer-Inversion Rules: Distinguishes allowed imports (widgets → features) from real inversions (features → widgets, shared → upper layers) to avoid false flags. - Confidence-Graded Reports: Every finding is reported as KEEP / REFACTOR / DROP with a confidence level (high / medium / low / skeptical) and documented grep evidence. - Use Case: Before retiring a Zod schema or a React hook like useSoundEffects, run this audit to verify all consumers across api, shared, and frontend repos, ensuring replacements are feature-complete and no test or type imports break. ## Quick Start Ask the agent to audit a repository or slice for dead code and FSD violations using the code-audit skill, and require cross-repo grep verification before any DROP recommendation.