Index/ The Harness
Agent Architecture, Under the Hood

The Harness

The model is the engine — one combustion stroke per call, nothing more.

The harness is the loom bolted around it: fuel line, ignition map, governor, actuators, dashboard. Everything that turns a single stroke into a running vehicle.

Engine plus loom, wired together, is what “agent” means.

Ask a raw model a question and it fires once — no memory of the last stroke, no way to touch anything outside the cylinder. An agent isn’t a different model. It’s the same engine bolted into a car — and the wiring that makes it run is the harness.

That loom is the harness. Engine plus harness, wired together, is what “agent” means. Every part below carries its engineering name — and, so it sticks, its part number under the hood.

01

One cycle, four strokes

AGENT model + harness, wired 1 · INTAKE 2 · COMPRESSION 3 · POWER STROKE ECU MAP system prompt the tune it fires to FUEL TANK memory & context ENGINE the model one stroke, then it’s spent GOVERNOR guardrails ACTUATORS · TOOLS SEARCH RUN CODE FILES THE ROAD environment feeds ignition permitted actuates denied → retry or: no call needed DASHBOARD output, rendered HUMAN driver — steers & brakes RELEASE — in the loop approves the action before it fires STEERS — above the loop sets the destination & the tune 4 · EXHAUST piped back into the tank instead of vented — that’s what makes it a loop TURBO exhaust spins it up — boosts the next intake MODEL — one stroke at a time HARNESS — every wire, every tool CUTOFF — governor says no
One turn, four strokes:
Intake — draws memory into the engine.
Compression — the forward pass.
Ignition — sparks the power stroke: the proposed action runs the governor, then fans out through the actuators onto the road.
Exhaust — instead of venting, piped back into the tank and spinning up a turbo that boosts the next intake.

The dashed outline is the agent: the engine plus everything wired around it. The engine (blue) only ever sees the top row; every copper line is the harness.

And the human is in it, not just at the end: above the loop they steer the tune and set the destination; in the loop they release a consequential action before it fires. The driver isn’t just reading the dashboard — hand on the wheel, foot on the brake.
02

Engine vs. harness

AttributeModel — the engineHarness — the wiring loom
StateNone — same weights, same forward pass, every single call.Holds the conversation, files, and task state between turns.
One call doesFires once — intake, compression, one stroke — then it’s spent.Keeps the crank turning: strokes the cycle again, and again, and again.
Can it act?Only proposes an action in text; can’t execute anything itself.Actuates the tool call against the real world and hands the result back.
LimitsNo concept of permissions, budgets, or what’s off-limits.The governor — enforces guardrails, sandboxing, and rate limits before anything fires.
03

What’s in the wiring

ECU map
The system prompt — standing instructions the model is re-shown every call, the tune it fires to, saying who it’s being right now and what matters.
Actuators
Tools — usually more than one: search, code execution, a filesystem. Each is a function definition plus the code that actually runs it and returns a result.
Fuel tank
Memory & context — the transcript and task state the harness assembles and re-feeds each stroke, since the engine itself remembers nothing.
The road
Sandbox / environment — the actual place actions happen, kept separate from anything the harness doesn’t want the actuators touching.
Governor
Guardrails — permission checks, rate limits, and approval gates enforced before a proposed action is allowed to fire.
Wiring loom
Orchestration — scheduling and coordination across calls or subagents. This is the harness itself: the loom routing signals between every part above.

The name isn’t a metaphor stretched thin. Pop the hood on an actual engine and the wiring harness is exactly this: the bundle of copper that carries fuel data, ignition timing, and governor signals between every part, then routes the exhaust back around.

Swap engine for model, driver for user, and the analogy holds all the way down. No wiring, no car — no matter how good the engine is.