What problem does it solve? Keeping a growing skill library and codebase healthy requires two kinds of checks that are easy to skip: validating that every skill meets the conformance bar (frontmatter, manifest, resolver coverage) and running the project test suite with enough context to tell real regressions from stale tests and flakes. This Skill automates both. ## Core Features & Use Cases - Skill conformance validation: Verifies every skill directory has a SKILL.md with valid YAML frontmatter, required sections, manifest.json coverage, RESOLVER.md round-trips, and no duplicate triggers across skills. - Tiered test execution: Runs unit tests, evals, integration tests, and system health checks (disk, memory, CPU, service liveness) in structured phases. - Regression intelligence: Uses git history to classify each failure as REGRESSION, STALE, FLAKE, NEW, or INFRA, with a safe auto-fix protocol for stale tests and strict escalation for security failures. - Use Case: A daily cron fires, runs bun test and system health checks, diffs the last 24 hours of commits, and reports that one failing test is a regression caused by a specific commit while two others are known flakes. ## Quick Start Ask the agent to run the tests and tell you what's broken, and it will execute the tiered suite and return a regression-classified report.