Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/bouob/agent-harness/initgit clone --depth 1 https://github.com/bouob/agent-harnessWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00015 | $0.03167 |
| Opus 5 | $0.00008 | $0.01584 |
| Sonnet 5 | $0.00003 | $0.00633 |
| Haiku 4.5 | $0.00002 | $0.00317 |
Grade A, and why
init scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 313 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/agent-harness:init — Configure Model Routing
Walk the user through writing ~/.claude/agent-harness.json so /sprint
knows which Claude models and reasoning effort to assign to each role
(Planner, Evaluator, Generator). Defaults assume Opus access; this wizard
lets users on Pro/Team subscriptions, Sonnet-only API keys, or any other
access shape route around the assumption.
v2.3.0 added per-role effort (reasoning level). Each role is now
{model, effort}instead of a bare model string. v1 / v2 / v3 configs auto-lift to v4 on first read.
Schema reference: ${CLAUDE_PLUGIN_ROOT}/skills/sprint/references/config-schema.md.
Step 1 — Detect Existing Config
Try Read on ~/.claude/agent-harness.json. If the file exists:
- Parse the JSON. If
versionis missing or1/2/3, run the auto-lift described inreferences/config-schema.md§ Migration. v2 configs whose anymodels.<role>.engine != "claude"ABORT here with:"v2 config has engine= for role . v0.6.0 dropped multi-host support. Reconfigure?" and offer Reconfigure / Cancel.
- Show the user the current
modelsblock in a fenced code block. - Use
AskUserQuestion: "Existing config found. Reconfigure or keep?"Reconfigure→ continue to Step 2Show current and exit→ print the parsed config, stopCancel→ stop without printing
If the file does not exist, proceed straight to Step 2.
Step 2 — Ask Which Models the User Has Access To
Use AskUserQuestion to ask: "Which Claude models can you use? (works
for both Claude.ai subscriptions and direct API access)"
Use the preview field on each option to show a markdown table of
the resulting routing — this lets the user compare presets visually
without reading JSON.
Options (display text → internal preset → preview content):
Option 1 — Fable 5 + all models → frontier
preview:
| Role | Model | Effort |
|---------------------|--------|--------|
| Planner | Fable | high |
| Evaluator | Opus | high |
| Generator (code) | Sonnet | high |
| Generator (write) | Sonnet | high |
| Generator (research)| Sonnet | high |
| Generator (collect) | Haiku | — |
Note: Fable 5 planner costs ~2x the Opus planner. Haiku takes no effort.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 313 lines · 15 tokens per session scan A 726f2b17e65d
init is a command published in the GitHub repository bouob/agent-harness (5 stars, last pushed 1mo ago), licensed MIT. It adds 15 tokens to every session and 3,167 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
init
First-run teamctl onboarding — from no-teamctl-installed to a running supervised team in one conversation.
create
Scaffold a new plugin with directory structure, manifests, and marketplace registration.
adjust
Open-ended "talk to it" command for evolving an existing teamctl team — add or remove an agent session, modify its behaviour or capability stack (sub-agents / skills / /loop / hook), scope a channel, set up Telegram, add a project, or open a bridge.
bugfix
TDD-driven bugfix workflow: tester writes failing test (RED) → developer fixes (GREEN) → developer refactors (REFACTOR) → reviewer validates. Accepts issue number, description, or both. Auto-creates PR unless --no-pr flag is passed.
develop
Implement skill development issues with TDD-governed workflow.
dev-task
Create an agent team to develop: Developer teammate + Code-tester teammate + QA-tester teammate + Reviewer teammate + Researcher subagent → implements .dev/cdt/plans/plan-$TIMESTAMP.md in waves.