What problem does it solve? Manually running lint, typecheck, and structural audits across a Next.js codebase produces scattered output with no unified quality signal. This Skill executes all project quality checks, detects technical debt and architecture violations, and computes a single 0-10 health score with historical trend tracking. ## Core Features & Use Cases - Automated Quality Checks: Runs ESLint, TypeScript type checking, module structure analysis, and technical debt detection via a cross-platform Node.js script with no bash pipe dependencies. - Composite Scoring: Computes a 0-10 score from four weighted checks (linter 3pts, TypeScript 3pts, structure 2pts, debt 1pt) minus penalties for files over 1000 lines. - Persistent Reporting: Writes detailed reports to .agents/health/health-report.md and appends score history to .health-history.jsonl for trend analysis. - Use Case: Before a release, ask for a health check to get the current score, see whether it improved or regressed versus previous runs, and receive prioritized fix suggestions for lint errors, type errors, and monolithic files. ## Quick Start Run a full code health check on this project and show me the score with prioritized fixes.