Yet Another Coding Harness Testbed
Project description
YACHT
Yet Another Coding Harness Testbed.
YACHT is an evaluation control plane for agentic coding systems. It runs the same coding course across different agents, models, tools, prompts, memory systems, and runtime environments, then records the evidence needed to decide whether a change actually helped.
The goal is not only to produce benchmark scores. A useful YACHT run should also answer:
- Did the setup solve the task?
- Was the runtime available, isolated, and configured as claimed?
- Which tools were actually used?
- How many tokens did the run spend?
- What did it cost?
- How long did it take?
- Which artifacts prove the result?
YACHT is designed as open-source infrastructure for reproducible, inspectable coding-agent evaluation.
Current Status
YACHT now has a real end-to-end benchmark smoke path:
- containerized Pi baseline vs containerized Pi+fff
- explicit secret injection
- runtime and rigging preflight
- SWE-bench Lite task context loading
- per-task repository checkout at the benchmark base commit
- agent task attempts and transcripts
- candidate patch extraction
- native SWE-bench Docker grading
- benchmark scorecards with outcome, token, cost, duration, and tool-use metrics
The first verified real benchmark smoke used django__django-11099; both
baseline and fff vessels resolved the task. A two-task smoke using
django__django-11099 and django__django-11179 has also completed end to
end. That is a foundation, not a final tool. The next phase is making this
easier for humans to run, inspect, and extend.
Core Concepts
| Concept | Meaning |
|---|---|
| Course | A benchmark suite, task set, or evaluation route. |
| Vessel | An agent, model, runtime, or full coding setup being evaluated. |
| Rigging | Tools, prompts, skills, MCP servers, memory systems, and policies added to a vessel. |
| Runtime | The reproducible environment used to run a vessel. |
| Preflight | Machine evidence that a runtime and its rigging are available, configured, and isolated before spending task tokens. |
| Wake | The artifacts left by a run: transcripts, metrics, logs, tool calls, patches, reports. |
| Logbook | The persisted directory containing a run's wake and scorecards. |
| Scorecard | The final comparison view across vessels. |
The nautical vocabulary is part of the project identity, but the artifacts stay plain JSON so other tools can consume them.
First Real Benchmark
Prerequisites:
- Python 3.12 or newer available to
uv uv- Git on
PATH - Docker installed, running, and usable by the current user
- network access for the first
uvdependency sync, SWE-bench metadata, and Docker image build - no manual SWE-bench install: uv resolves the
swebenchharness on demand for native benchmark launches, andyacht doctorperforms and verifies the first resolution - an Anthropic API key exported as
ANTHROPIC_API_KEY - the repo-local Pi runtime image built with the command below
Build the Pi runtime image:
docker build -t yacht/pi-agent-runtime:pi-0.74.0 containers/pi-agent-runtime
Run the benchmark smoke:
LOGBOOK=/private/tmp/yacht-real-benchmark-$(date +%Y%m%d-%H%M%S)
uv run yacht doctor examples/container-pi-fff-real-benchmark-smoke.toml
uv run yacht run examples/container-pi-fff-real-benchmark-smoke.toml \
--logbook "$LOGBOOK" \
--workspace . \
--secret anthropic=@env:ANTHROPIC_API_KEY
uv run yacht status --logbook "$LOGBOOK"
uv run yacht report --logbook "$LOGBOOK"
uv run yacht report --logbook "$LOGBOOK" --vessel pi-container-fff
The default smoke config runs one SWE-bench Lite instance to keep iteration
cheap. For a slightly broader two-instance check, use
examples/container-pi-fff-real-benchmark-small.toml with the same commands.
Fish shell:
set -x LOGBOOK /private/tmp/yacht-real-benchmark-(date +%Y%m%d-%H%M%S)
uv run yacht doctor examples/container-pi-fff-real-benchmark-smoke.toml
uv run yacht run examples/container-pi-fff-real-benchmark-smoke.toml \
--logbook "$LOGBOOK" \
--workspace . \
--secret anthropic=@env:ANTHROPIC_API_KEY
uv run yacht status --logbook "$LOGBOOK"
uv run yacht report --logbook "$LOGBOOK"
The status report is the first thing to inspect after a run. It shows which
benchmark artifacts exist, what is missing, and the next recommended command.
The benchmark report then summarizes benchmark outcome, agent usage metrics,
notable deltas, per-task outcomes, per-task usage, and the relevant per-vessel
artifact paths. Use --vessel and --task to narrow the detailed sections
when inspecting a specific run. After a scorecard exists, yacht status
recommends a filtered inspection command for the first challenger/task outcome.
For example:
Benchmark scorecard: container-pi-fff-real-benchmark-small / swe-bench-lite
Status: complete
Comparisons: 1 | Vessels: 2 | Measured: 2 | Missing: 0
Usage: Attempts: 4 | Failed: 0 | Tool calls: 15 | Tokens: 63084 | Cost: 0.020688 | Duration: 210.332s
Artifacts: logbook=/private/tmp/yacht-real-benchmark-... | scorecard=/private/tmp/yacht-real-benchmark-.../benchmark-scorecard.json | attempts=/private/tmp/yacht-real-benchmark-.../task-attempt-scorecard.json | launch=/private/tmp/yacht-real-benchmark-.../benchmark-launch-result.json | grading=/private/tmp/yacht-real-benchmark-.../benchmark-grading-collection.json
Notable deltas:
container-pi-vs-pi-fff-benchmark-small: pi-container-fff vs pi-container-baseline | resolved +0 | rate +0.000 | tokens +10988 | cost +0.001650 | duration +7.792s | tool_calls +3
comparison | baseline | challenger | resolved_delta | rate_delta | measured | missing | eligible | preflight
container-pi-vs-pi-fff-benchmark-small | pi-container-baseline | pi-container-fff | +0 | +0.000 | 2/2 | 0 | 2 | preflight-passed:2
Agent usage by task:
comparison | vessel | task | tools | tokens | cost | duration | attempt_artifact
container-pi-vs-pi-fff-benchmark-small | pi-container-fff | django__django-11179 | fffind:1, read:1, bash:1, edit:1 | 25492 | 0.006795 | 75.793s | /private/tmp/yacht-real-benchmark-.../task-attempts/.../django__django-11179.json
Development Smoke
For a no-token local harness check:
uv run yacht validate examples/local-agent-preflight-smoke.toml
uv run yacht run examples/local-agent-preflight-smoke.toml --logbook logbook
uv run yacht status --logbook logbook
uv run yacht report --logbook logbook
This validates the control-plane path without Pi, SWE-bench, Docker grading, or provider credentials.
Documentation
- Project vision
- Roadmap
- Audit-backed plan
- Codebase structure
- Command reference
- Release checklist
- Schema contract
- Architecture decisions
- Changelog
License
YACHT is licensed under the Apache License 2.0.
Design Principles
- Prefer reproducible, inspectable evidence over agent attestation.
- Keep runtime provisioning separate from benchmark task grading.
- Make secrets explicit and never copy user-home auth state implicitly.
- Treat benchmarks, smoke tests, and future evaluators as adapters.
- Keep public artifacts language-neutral and stable enough for other tools to consume.
- Report success together with cost, tokens, time, tool use, and failure modes.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yacht_eval-0.2.0.tar.gz.
File metadata
- Download URL: yacht_eval-0.2.0.tar.gz
- Upload date:
- Size: 107.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31f29c0e9c296238add9f9a4bd7b05f6d5f968b4cdc66309c97633278f4f4e47
|
|
| MD5 |
631b335b251e42feda8f6e7c5df69a47
|
|
| BLAKE2b-256 |
75ab5e85555f5da9846e8dfcc97b15a4615f1865a10429d5d8f04ef98da29d48
|
File details
Details for the file yacht_eval-0.2.0-py3-none-any.whl.
File metadata
- Download URL: yacht_eval-0.2.0-py3-none-any.whl
- Upload date:
- Size: 160.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2b6b3e0d861add1a2ff5f98b5a8d68f72dd6887062c13e6f90886f0d36b88c9
|
|
| MD5 |
2ba427c2e413be71716efb0f4d793d9d
|
|
| BLAKE2b-256 |
413391f2c2fb34ce77feea68a6698319bf9c090df3b4a9ebfff2633daa473ec7
|