plaited/agent-eval-harness · Archived

trial-runner

End-to-end eval-suite orchestration with the `eval` command: run -> grade -> compare -> calibrate, using strict JSON contracts and schema discovery.

First seen May 9, 2026

Installation

$ npx skills add plaited/agent-eval-harness --skill trial-runner

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from plaited/agent-eval-harness · top by installs.

npx skills add plaited/agent-eval-harness

Browse all from plaited/agent-eval-harness

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseISC

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,724 B
  • docs SUMMARY.md 168 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Trial Runner

Use this skill to build or operate an eval suite around:

agent-eval-harness eval '<json>'

Required workflow

  1. Use grill-me first to clarify:

- evaluation goal and reliability target - target agent CLI(s) - task corpus source and metadata - grading evidence and pass policy - comparison strategy and calibration cadence

  1. Use tdd to build in vertical slices:

- one task JSONL row - one adapter contract test - one run smoke test - one grader - one grade smoke test - one compare check - one calibrate check

  1. Use schema discovery for contracts (do this instead of copying field lists):

- eval --schema task - eval --schema adapter-input - eval --schema adapter-output - eval --schema grader-input - eval --schema grader-output - eval --schema trial-row

Canonical pipeline

agent-eval-harness eval '{"mode":"run",...}' > raw.jsonl
agent-eval-harness eval '{"mode":"grade",...}' < raw.jsonl > graded.jsonl
agent-eval-harness eval '{"mode":"compare",...}'
agent-eval-harness eval '{"mode":"calibrate",...}'

run and grade stream compact trial_result JSONL rows to stdout. compare and calibrate emit one bounded JSON object.

Suite-owned concerns (outside harness contract)

  • workspace setup and cleanup
  • resume/dedupe policy
  • retry policy
  • filtering and slicing strategy
  • CI gating policy
  • cost/token analysis scripts
  • secrets via environment/wrappers (not JSON config)