What problem does it solve? AI-assisted coding lacks objective quality gates, making it hard to know whether an agent's output actually works or whether a prompt change broke existing behavior. This Skill provides a formal evaluation framework that treats evals as unit tests for AI development. ## Core Features & Use Cases - Capability and Regression Evals: Define expected behavior before implementation and verify existing functionality stays intact after changes. - Multiple Grader Types: Use deterministic code graders, model-based LLM-as-judge rubrics, or human review flags depending on the output type. - Reliability Metrics: Track pass@k and pass^k metrics with recommended thresholds (pass@3 >= 0.90 for capability, pass^3 = 1.00 for release-critical paths). - Use Case: Before adding authentication to an app, define capability evals (registration, login, session persistence) and regression evals (public routes, API responses), then run evals after implementation and generate a structured pass/fail report. ## Quick Start Ask the agent to define an eval for a new feature with pass/fail criteria before writing any implementation code.