eval-harness
Formal evaluation framework for OpenAI Codex sessions implementing eval-driven development (EDD) principles
npx skills add mturac/everything-openai-codex --skill eval-harness --agent codex
Same command for any agent — swap --agent for claude-code, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Eval Harness Skill A formal evaluation framework for OpenAI Codex sessions, implementing eval-driven development (EDD) principles. ## When to Activate - Setting up eval-driven development (EDD) for AI-assisted workflows - Defining pass/fail criteria for OpenAI Codex task completion - Measuring agent reliability with pass@k metrics - Creating regression test suites for prompt or agent changes - Benchmarking agent performance across model versions ## Philosophy Eval-Driven Development treats evals as the "unit tests of AI development": - Define expected behavior BEFORE implementation - Run evals continuously during development - Track regressions with each change - Use pass@k metrics for reliability measurement ## Eval Types ### Capability Evals Test if Codex can do something it couldn't before: ```markdown [CAPABILITY EVAL: feature-name] Task: Description of what Codex should accomplish Success Criteria: - [ ] Criterion 1 - [ ] Criterion 2 - [ ] Criterion 3 Expected Output: Description of expected result ``` ### Regression Evals Ensure changes don't break existing functionality: ```markdown [REGRESSION EVAL: feature-name] Baseline: SHA or checkpoint name Tests: - existing-test-1:
- When to Activate
- Philosophy
- Eval Types
- Capability Evals
- Regression Evals
- Grader Types
- 1. Code-Based Grader
- 2. Model-Based Grader
- 3. Human Grader
- Metrics
- pass@k
- pass^k
- Eval Workflow
- 1. Define (Before Coding)
Check if file contains expected pattern grep -q "export function handleAuth" src/auth.ts && echo "PASS" || echo "FAIL" Check if tests pass npm test -- --testPathPattern="auth" && echo "PASS" || echo "FAIL" Check if build succeeds npm run build && echo "PASS" || echo "FAIL" Run capability evals Run regression evals npm test -- --testPathPattern="existing" Generate report
What does the eval-harness skill do?
Formal evaluation framework for OpenAI Codex sessions implementing eval-driven development (EDD) principles
How do I install it?
Run `npx skills add mturac/everything-openai-codex --skill eval-harness --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From mturac/everything-openai-codex, a repository with 84 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
