What problem does it solve? Before letting an AI assistant work on an existing codebase, you need to know whether the project is operationally healthy — pinned dependencies, a working test runner, sane configuration. This Skill automates that audit and produces a structured report with prioritized fixes and an agent-readiness verdict. ## Core Features & Use Cases - Dependency and security audit: Detects the language family from project markers (package.json, Cargo.toml, pyproject.toml, go.mod, and more), checks lockfile presence, runs the ecosystem's audit tool (npm audit, pip-audit, cargo audit, govulncheck, etc.), and tiers findings by CVSS severity. - Test runner and CI/CD analysis: Detects the test framework, attempts a dry run, and evaluates CI pipeline coverage across lint, test, build, type-check, and security stages. - Prioritized fix report: Writes context/foundation/health-check.md with a healthy / needs-attention / critical-issues verdict, concrete fix commands, effort estimates, and cross-references to stack-assessment findings when available. - Use Case: You inherit a brownfield Node.js project and ask for a health check. The Skill runs npm audit, verifies the lockfile, detects Jest, notes the missing CI pipeline, and writes a report ranking what to fix before agent-assisted development. ## Quick Start Ask the assistant to run a health check on the project in the current directory and write the report to context/foundation/health-check.md.