plaited/agent-eval-harness · Archived

trial-adapters

Build command-only adapters for `eval` run mode using strict stdin/stdout JSON contracts.

First seen Jun 17, 2026

Installation

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

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,565 B
  • docs SUMMARY.md 111 B

History

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

SKILL.md

Trial Adapters

This skill is for executable adapters used by:

agent-eval-harness eval '{"mode":"run",...}'

Required approach

  1. Use grill-me to pin down:

- target coding-agent CLI and invocation - docs/MCP source for real command behavior - approval/automation flags - prompt/session mechanics - trajectory capture strategy - failure mapping and safe metadata

  1. If command semantics are unclear, ask the user for docs/MCP access or run --help/docs discovery first.
  2. Use tdd for adapter executable contract tests.

Adapter executable contract

  • Read one adapter-input JSON object from stdin.
  • Write exactly one adapter-output JSON object to stdout.
  • Write logs only to stderr.
  • Always include trajectory (can be []).
  • For completed status, include non-empty final message.

Use schema discovery as source of truth:

agent-eval-harness eval --schema adapter-input
agent-eval-harness eval --schema adapter-output

Contract tests to write first

  1. valid stdin -> valid stdout object
  2. exactly one stdout JSON object
  3. stderr-only logging
  4. schema-valid trajectory
  5. multi-prompt behavior (prompts array handling)
  6. explicit failure output behavior

Safe optional metadata examples

  • model/provider name
  • provider run id
  • adapter name/version
  • agent CLI version
  • token usage
  • cost estimate
  • safe config summary
  • suite tags