Agent skill · AI & Agents

eval-harness

Formal evaluation framework for OpenAI Codex sessions implementing eval-driven development (EDD) principles

mturacgithub.com/mturacGitHub ↗
codexcopilotcursorMIT
Install
npx skills add mturac/everything-openai-codex --skill eval-harness --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/eval-harness/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 84
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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:

What's inside
Steps it walks through
  1. When to Activate
  2. Philosophy
  3. Eval Types
  4. Capability Evals
  5. Regression Evals
  6. Grader Types
  7. 1. Code-Based Grader
  8. 2. Model-Based Grader
  9. 3. Human Grader
  10. Metrics
  11. pass@k
  12. pass^k
  13. Eval Workflow
  14. 1. Define (Before Coding)
Commands it runs
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
More from everything-openai-codex
All skills →
About this skill
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.

Keep going