PluginBench
Skill
Fail
Audit score 45

agent-eval

affaan-m/everything-claude-code

Systematically compare coding agents on your tasks with pass rate, cost, time, and consistency metrics.

What is agent-eval?

A CLI tool for head-to-head benchmarking of coding agents (Claude Code, Aider, Codex, etc.) on reproducible tasks. Define tasks in YAML, run agents in isolated git worktrees, and generate comparison reports with pass rates, API costs, execution time, and consistency scores.

  • Define reproducible tasks in YAML with success criteria (pytest, grep, LLM judges)
  • Run multiple agents against the same task set with configurable trial counts
  • Isolate each agent run in a git worktree to prevent interference and ensure reproducibility
  • Collect metrics: pass rate, API cost, wall-clock time, and consistency across runs
  • Generate comparison reports in table format showing agent performance side-by-side
  • Support deterministic judges (tests, build commands) and pattern-based judges (grep) for reliable evaluation

How to install agent-eval

npx skills add https://github.com/affaan-m/everything-claude-code --skill agent-eval
Prerequisites
  • Git repository with tasks to evaluate
  • YAML task definitions with prompts and judge criteria
  • Access to the agents you want to compare (API keys, CLI tools, etc.)
Claude Code
Cursor
Windsurf
Cline

How to use agent-eval

  1. 1.Create a tasks/ directory and write YAML files defining each task (prompt, files to modify, judge criteria)
  2. 2.Run agent-eval with your chosen agents and number of trials: agent-eval run --task tasks/your-task.yaml --agent claude-code --agent aider --runs 3
  3. 3.Let the tool create isolated git worktrees for each run and execute the judge criteria
  4. 4.Generate a comparison report: agent-eval report --format table
  5. 5.Review metrics (pass rate, cost, time, consistency) to inform your agent selection

Use cases

Good for
  • Evaluate whether to adopt a new coding agent or model before team rollout
  • Run regression tests when an agent updates its model or tooling
  • Compare agent performance on your actual codebase rather than toy examples
  • Measure cost-effectiveness of different agents on your specific workload
  • Document agent capabilities with reproducible benchmarks for team decision-making
Who it's for
  • Engineering teams evaluating coding agent tools
  • Developers choosing between Claude Code, Aider, Codex, and other agents
  • Technical leads making tool adoption decisions
  • Researchers benchmarking agent performance

agent-eval FAQ

Do I need Docker to run agent-eval?

No. The tool uses git worktrees for isolation, not Docker. This keeps setup lightweight and reproducible.

How many runs should I do per agent?

At least 3 runs per agent per task to capture variance. Coding agents are non-deterministic, so multiple trials reveal consistency.

What judge types are supported?

Deterministic judges (pytest, npm run build, custom commands), pattern-based judges (grep), and LLM-as-judge (using an LLM to evaluate code quality).

Can I compare agents on my own codebase?

Yes. Tasks reference your repo and specific files. Pin the commit in your task YAML to ensure reproducibility across time.

Does agent-eval track API costs?

Yes, when available. The tool records API spend per task run, letting you compare cost-effectiveness alongside pass rates.

Full instructions (SKILL.md)

Source of truth, from affaan-m/everything-claude-code.


name: agent-eval description: Head-to-head comparison of coding agents (Claude Code, Aider, Codex, etc.) on custom tasks with pass rate, cost, time, and consistency metrics metadata: origin: ECC tools: Read, Write, Edit, Bash, Grep, Glob

Agent Eval Skill

A lightweight CLI tool for comparing coding agents head-to-head on reproducible tasks. Every "which coding agent is best?" comparison runs on vibes — this tool systematizes it.

When to Activate

  • Comparing coding agents (Claude Code, Aider, Codex, etc.) on your own codebase
  • Measuring agent performance before adopting a new tool or model
  • Running regression checks when an agent updates its model or tooling
  • Producing data-backed agent selection decisions for a team

Installation

Note: Install agent-eval from its repository after reviewing the source.

Core Concepts

YAML Task Definitions

Define tasks declaratively. Each task specifies what to do, which files to touch, and how to judge success:

name: add-retry-logic
description: Add exponential backoff retry to the HTTP client
repo: ./my-project
files:
  - src/http_client.py
prompt: |
  Add retry logic with exponential backoff to all HTTP requests.
  Max 3 retries. Initial delay 1s, max delay 30s.
judge:
  - type: pytest
    command: pytest tests/test_http_client.py -v
  - type: grep
    pattern: "exponential_backoff|retry"
    files: src/http_client.py
commit: "abc1234"  # pin to specific commit for reproducibility

Git Worktree Isolation

Each agent run gets its own git worktree — no Docker required. This provides reproducibility isolation so agents cannot interfere with each other or corrupt the base repo.

Metrics Collected

MetricWhat It Measures
Pass rateDid the agent produce code that passes the judge?
CostAPI spend per task (when available)
TimeWall-clock seconds to completion
ConsistencyPass rate across repeated runs (e.g., 3/3 = 100%)

Workflow

1. Define Tasks

Create a tasks/ directory with YAML files, one per task:

mkdir tasks
# Write task definitions (see template above)

2. Run Agents

Execute agents against your tasks:

agent-eval run --task tasks/add-retry-logic.yaml --agent claude-code --agent aider --runs 3

Each run:

  1. Creates a fresh git worktree from the specified commit
  2. Hands the prompt to the agent
  3. Runs the judge criteria
  4. Records pass/fail, cost, and time

3. Compare Results

Generate a comparison report:

agent-eval report --format table
Task: add-retry-logic (3 runs each)
┌──────────────┬───────────┬────────┬────────┬─────────────┐
│ Agent        │ Pass Rate │ Cost   │ Time   │ Consistency │
├──────────────┼───────────┼────────┼────────┼─────────────┤
│ claude-code  │ 3/3       │ $0.12  │ 45s    │ 100%        │
│ aider        │ 2/3       │ $0.08  │ 38s    │  67%        │
└──────────────┴───────────┴────────┴────────┴─────────────┘

Judge Types

Code-Based (deterministic)

judge:
  - type: pytest
    command: pytest tests/ -v
  - type: command
    command: npm run build

Pattern-Based

judge:
  - type: grep
    pattern: "class.*Retry"
    files: src/**/*.py

Model-Based (LLM-as-judge)

judge:
  - type: llm
    prompt: |
      Does this implementation correctly handle exponential backoff?
      Check for: max retries, increasing delays, jitter.

Best Practices

  • Start with 3-5 tasks that represent your real workload, not toy examples
  • Run at least 3 trials per agent to capture variance — agents are non-deterministic
  • Pin the commit in your task YAML so results are reproducible across days/weeks
  • Include at least one deterministic judge (tests, build) per task — LLM judges add noise
  • Track cost alongside pass rate — a 95% agent at 10x the cost may not be the right choice
  • Version your task definitions — they are test fixtures, treat them as code

Links