What problem does it solve? AI-assisted coding lacks a systematic way to verify that agent outputs actually meet requirements, making it hard to catch regressions or measure reliability across model and prompt changes. ## Core Features & Use Cases - Eval Definition Templates: Structured capability and regression eval formats with explicit success criteria defined before implementation begins. - Multiple Grader Types: Code-based graders (grep, test runners, build checks), model-based graders for open-ended outputs, and human review flags for high-risk changes. - Reliability Metrics: Tracks pass@k and pass^k metrics to measure first-attempt success rates and consecutive-run reliability. - Use Case: Before adding authentication to an app, define capability evals (user registration, login, session persistence) and regression evals (existing routes unchanged), then run evals after implementation and generate a report showing pass@3 of 100% before shipping. ## Quick Start Ask the agent to define an eval-driven development checklist with pass/fail criteria for the feature you are about to build.