harness

harness is a skill for Claude Code from uppifyagency/claude-harness. It costs 88 tokens per session (1,457 once invoked), scanned A, original, MIT.

A workflow that coordinates three separate coding agents: one plans the work, one builds the application, and one tests it. They pass plans and test reports through files and repeat the cycle when changes are needed.

In plain words
What is it for?
Use it to build a complete application from a brief, run a plan-build-test cycle, and revise the application based on evaluation reports.
Why use it?
It separates planning, implementation, and checking so one agent is not judging its own work. Fresh working contexts also keep long application builds organized.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents; names the TodoWrite tool.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the claude-harness plugin — 4 skills, 3 agents, 1 hook shipped together

Good fit Use it to build a complete application from a brief, run a plan-build-test cycle, and revise the application based on evaluation reports.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add uppifyagency/claude-harness
Claude Code
/plugin install claude-harness

Made for: Claude Code.

Or install claude-harness, the plugin that ships this one along with the rest of its 4 skills, 3 agents, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for harness

README.md
[![agentmods](https://agentmods.dev/badge/skills/uppifyagency/claude-harness/harness/github.svg)](https://agentmods.dev/skills/uppifyagency/claude-harness/harness)
Your own site
<a href="https://agentmods.dev/skills/uppifyagency/claude-harness/harness"><img src="https://agentmods.dev/badge/skills/uppifyagency/claude-harness/harness/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for harness

Your own site · 80×15
<a href="https://agentmods.dev/skills/uppifyagency/claude-harness/harness"><img src="https://agentmods.dev/badge/skills/uppifyagency/claude-harness/harness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,457 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00088 $0.01457
Opus 5 $0.00044 $0.00728
Sonnet 5 $0.00018 $0.00291
Haiku 4.5 $0.00009 $0.00146

Measured 9d ago against content hash eaee983d9ca6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

harness 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 9d 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.

skills/harness/SKILL.md · 155 lines

How it starts

The opening of the file, as written. The whole thing — 155 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Harness — Multi-Agent Build Orchestrator

Overview

Orchestrate long-running application development using three specialized agents: Planner, Generator, and Evaluator. Based on Anthropic's harness design pattern where separating the agent doing the work from the agent judging it produces dramatically better results than solo generation.

The harness runs a Plan-Build-Evaluate loop. Each agent gets a fresh context with only file-based handoff artifacts — context reset is structural, not manual.

Architecture

User brief → Planner → spec.md → Generator → app code → Evaluator → eval-report.md
                                       ↑                                    |
                                       └────── iterate/pivot ───────────────┘

Three agents, three distinct contexts, file-based communication:

  • Planner (cyan): Expands brief into product spec. High-level only — no implementation details.
  • Generator (magenta): Builds the application from spec. Runs in worktree isolation.
  • Evaluator (yellow): Tests the running app like a real user. Skeptical by default.

Execution Flow

Phase 1: Initialize

Create the harness workspace in the current project:

.harness/
├── config.json          # Harness configuration
├── state.json           # Current phase, round, active components
├── spec.md              # Planner output (Phase 2)
├── build-summary-N.md   # Generator output per round
└── eval-report-N.md     # Evaluator output per round

Read .harness/config.json if it exists to check for disabled components (from /harness-simplify).

Initialize .harness/state.json:

{
  "phase": "planning",
  "round": 0,
  "maxRounds": 5,
  "components": {
    "planner": true,
    "evaluator": true
  },
  "brief": "<user's brief>"
}

Phase 2: Plan

Dispatch the harness-planner agent with the user's brief.

The planner writes .harness/spec.md. After it completes, present the spec summary to the user and ask for approval before proceeding. The user may request changes — re-dispatch the planner if needed.

Read the full file on GitHub · 155 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 9d ago First seen · 155 lines · 88 tokens per session scan A eaee983d9ca6

Subscribe to this mod's changes

harness is a skill published in the GitHub repository uppifyagency/claude-harness (5 stars, last pushed 5mo ago), licensed MIT. It adds 88 tokens to every session and 1,457 once invoked, about $0.0004 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.