AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Harness Orchestrator

skill-chetan25-harness-claude-skills-harness-orchestrator · by chetan25

Use to drive a multi-step build from a requirement — decompose it into tasks and run each through the harness loop (ground → plan → build → verify → test). Coordinates the other harness skills and tracks progress. Invoke when the user asks to implement a feature "with the harness" or wants grounded, verified, end-to-end generation.

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-chetan25-harness-claude-skills-harness-orchestrator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-chetan25-harness-claude-skills-harness-orchestrator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Harness Orchestrator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Harness Orchestrator

Drive a requirement from idea to verified, tested code by running a disciplined loop. You are the orchestrator — you decompose the work and run each step using your own tools and the other harness skills. There is no external runner.

The loop

Requirement
   ↓
Decompose into ordered tasks
   ↓
For each task:
   ground  → load project context  (harness-context-loader)
   plan    → decide the approach against that context
   build   → implement the change
   verify  → lint / type-check / format / patterns  (harness-verifier)
   test    → add and run tests; fix until green
   ↓
Feature complete

Procedure

1. Ensure grounding

If the project has no generated project-* grounding skills under .claude/skills/ (and no wired CLAUDE.md), run harness-analyzer first. It generates those skills and wires CLAUDE.md so the flow below is the default for every request. Everything downstream relies on this grounding.

2. Initialize loop state

Create .claude/harness/state.md — the resumable source of truth for this run. Write the user-ask summary and the (about-to-be-decomposed) task list. Keep it small:

## User ask

## Tasks
- [ ] 1. 
- [ ] 2. 

## Done so far
- (nothing yet)

Task markers: [ ] pending, [>] in-progress, [x] done (with a one-line result). If state.md already exists (resuming a run), read it instead of overwriting and continue from the first non-[x] task.

3. Decompose

Break the requirement into the smallest sensible, independently-verifiable tasks. Order them by dependency. Track them with a todo list (TodoWrite) so progress is visible and nothing is dropped. Example:

> "Add email/password auth" → > 1. Auth context + useAuth hook > 2. Login form > 3. Signup form > 4. Protected-route wrapper > 5. Integration tests

Write the decomposed tasks into the ## Tasks list of .claude/harness/state.md (in addition to TodoWrite). state.md is what survives compaction and restarts; TodoWrite is the live in-session view of the same list.

4. Run each task through the loop

Mark the task [>] in .claude/harness/state.md (and in-progress in TodoWrite), then:

  • Ground — invoke harness-context-loader to produce the task brief + acceptance criteria.
  • Plan — state the approach and the files you'll touch, consistent with the brief.
  • Build — implement it, following the project's real patterns.
  • Verify — invoke harness-verifier. If it fails, read the errors and fix; re-verify. Do not move on while red.
  • Test — add tests in the project's style and run them. Iterate until green.

When verify + test both pass, update .claude/harness/state.md: set the task to [x] with a one-line result, and add a one-line entry to ## Done so far. Keep Done so far to a line or two per task — it is a rolling summary, not a transcript. Then move to the next task. The loader reads this file each loop to build the task's context packet.

5. Parallel vs serial

  • Serial when tasks share state or depend on each other (the common case).
  • Parallel only for genuinely independent tasks. Before dispatching, invoke harness-model-router with the parallel task list to get a routing table (task → model tier). Then dispatch subagents with the Agent tool (see the superpowers:dispatching-parallel-agents skill), passing model: "" from the routing table for each task. Give each a self-contained brief and use worktree isolation if they touch overlapping files.

`` Agent({ prompt: "", model: "haiku", // or "sonnet" / "opus" — tier from harness-model-router routing table }) ``

6. Recover from failures

If a task can't pass verification after a couple of focused attempts, stop and debug deliberately (superpowers:systematic-debugging) rather than thrashing. Surface the blocker to the user instead of forcing a broken result.

Progress tracking

.claude/harness/state.md is the durable source of truth (user-ask summary, task list with status, rolling "done so far"). TodoWrite mirrors the task list for live in-session visibility. On re-entry after a restart or compaction, read state.md and resume from the first non-[x] task — the in-progress task is re-grounded from scratch by harness-context-loader (the per-task packet is ephemeral by design).

Definition of done

  • Every decomposed task is complete.
  • harness-verifier passes on the changed code.
  • Tests exist in the project's style and are green.
  • You've reported results honestly — including anything skipped or still failing.

See also

  • harness-analyzer — generates grounding (run first)
  • harness-context-loader — builds the per-task brief
  • harness-verifier — quality gate after each build
  • superpowers:test-driven-development, superpowers:dispatching-parallel-agents, superpowers:systematic-debugging

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.