Catalog
affaan-m/agent-eval

affaan-m

agent-eval

Head-to-head comparison of coding agents (Claude Code, Aider, Codex, etc.) on custom tasks with pass rate, cost, time, and consistency metrics

global
origin:ECC
New~1.0k
v1.2Saved Jul 14, 2026

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

Metric What It Measures
Pass rate Did the agent produce code that passes the judge?
Cost API spend per task (when available)
Time Wall-clock seconds to completion
Consistency Pass 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
Files1
1 files · 1.0 KB

Select a file to preview

Overall Score

78/100

Grade

B

Good

Safety

75

Quality

78

Clarity

82

Completeness

72

Summary

A lightweight CLI framework for benchmarking and comparing coding agents (Claude Code, Aider, Codex, etc.) on reproducible tasks using declarative YAML task definitions, git worktrees for isolation, and multi-metric evaluation (pass rate, cost, time, consistency). The skill guides users through defining custom evaluation tasks, running multiple agents in parallel, and generating comparative performance reports.

Detected Capabilities

bash executionfile readfile writegit operationsyaml parsinghttp request (to GitHub for repo download)external command execution (pytest, npm, custom commands)environment variable read (for API cost tracking)

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

compare coding agentsbenchmark agent performanceagent evaluation frameworkmeasure agent cost timecoding agent comparison

Risk Signals

INFO

External repository cloning and code execution from git worktrees

Core Concepts section, Git Worktree Isolation
WARNING

Arbitrary command execution via judge definitions (command, pytest, npm, custom scripts)

Judge Types section
WARNING

LLM-as-judge capability relies on external API credentials for cost tracking

Metrics Collected and judge llm type
WARNING

No validation or sandboxing of YAML task definitions or judge commands

YAML Task Definitions

Referenced Domains

External domains referenced in skill content, detected by static analysis.

github.com

Use Cases

  • Benchmark multiple coding agents on your own codebase before adoption
  • Measure coding agent performance regressions when models or tooling update
  • Generate data-backed agent selection decisions for team tool standardization
  • Compare agent costs and speed alongside accuracy metrics for ROI analysis
  • Create reproducible evaluation benchmarks for agent capability validation

Quality Notes

  • Clear, well-structured documentation with concrete examples for task definition and workflow
  • Workflow is logically organized (Define → Run → Compare) making it easy to follow
  • Best Practices section provides actionable guidance on task design and reproducibility
  • Judge types are well-documented with multiple options (deterministic, pattern-based, LLM-based)
  • Git worktree isolation strategy is clearly explained and mitigates agent interference risks
  • Metrics table clarifies what each dimension measures
  • Missing: error handling guidance for common failure cases (agent timeout, judge failure, API errors)
  • Missing: guidance on task YAML validation or security considerations when accepting external task definitions
  • Missing: explicit limits on concurrent agent runs, resource consumption, or API rate limits
  • Missing: troubleshooting section for agents failing to initialize or judges producing unexpected results
  • Command example shows multiple agents (--agent claude-code --agent aider) but doesn't explain agent registration or plugin architecture
Model: claude-haiku-4-5-20251001Analyzed: Jul 14, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Version History

v1.2

Content updated

2026-07-14

Latest
v1.1

Content updated

2026-04-20

v1.0

No changelog

2026-04-12

Use affaan-m/agent-eval in your dev environment

Command Palette

Search for a command to run...