H-01Single-shot
One prompt in, one completion out. No loop, no tools, no feedback.
The harness is everything around the model: the loop, the state, the retries, the stopping rule. These fourteen plates cover the architectures that recur in almost every production agent — from a single forward pass to systems that run for days.
One prompt in, one completion out. No loop, no tools, no feedback.
The model alternates reasoning with tool calls, folding each observation back into context until it can answer.
Plan the whole task up front, then run the steps without further deliberation.
A plan is executed step by step, and rewritten whenever the environment disagrees with it.
One role produces a draft; a separate role critiques it; the draft is revised against the critique.
One agent performs the task; another independently checks whether it actually succeeded.
Sample several independent attempts in parallel and keep the one a judge scores highest.
On failure, classify what kind of failure it was — and only then decide how to retry.
The agent’s lifecycle is an explicit state machine; the model acts within states, the harness owns the transitions.
A manager agent decomposes the goal and delegates to specialized workers, integrating their reports.
Shard a partitionable task across independent agents and merge the results at one aggregation point.
The agent proposes; a gate routes risky actions to a human who approves or denies before execution.
The agent sleeps until an external event wakes it; its first decision is whether the event matters at all.
Work in bounded bursts, checkpoint durable state, sleep, and resume — for goals that outlive any single session.