Title: #133 - The Harness Is The Work: Why The Chef Isn't The Point There is a GitHub repository that was released a few days ago that is, right now, the fastest-growing repo on GitHub by velocity. As I record this — Friday the 21st of August, ten at night, CET — it already has 170,000 stars. It's called DeepSeek Harness. And two days after DeepSeek released theirs, OpenAI released one too. Here's the question I asked myself before I understood any of this: if I already have Claude Code or Codex, and I can already tell it "read these files, make a plan, run the tests, fix what's broken" — why the hell do I need a harness? Isn't a harness just a very long prompt with a fancy name? Then it clicked. The model is not the company. The model is the brilliant chef. Claude can be an incredible chef. GPT can be an incredible chef. DeepSeek can be an incredible chef. Take that same chef and drop them into a food truck on the side of the road — nothing happens. Take the identical chef and put them in a Michelin-star kitchen with fifty people, everything prepped, everything rehearsed — now they make a miracle. The harness is the kitchen. 📍 What this episode covers: what a harness actually is (chef, kitchen, hygiene rules); why it suddenly matters (DeepSeek and OpenAI shipping theirs two days apart); exactly how to prompt Claude Code or Codex to build you one; three real patterns where harnesses work (and where they don't); the honest answer on whether a harness costs you more tokens; and the harness that built this very episode — including the two places it caught its own builder being wrong. 🍳 Same brain, different kitchen. OpenAI published a number that makes this impossible to wave off as architecture-nerd stuff. Same model — GPT-5.6 Sol. Standard harness on ARC-AGI-3: 13.3%. Turn on OpenAI's harness — retained reasoning, compaction: 38.3%. Nearly three times better. And it used roughly six times fewer tokens doing it. The chef didn't change. The kitchen did. 🔧 How do you actually build one. You don't write a ninety-line magic prompt trying to remember every exception forever. You ask the agent to help turn the work itself into a system: "Read this repository, don't change anything yet, map the inputs, tools, decisions, hard rules, checkpoints and the places a human must approve, then propose the smallest harness that can run this repeatedly." In chat, you are the project manager every time — you remember the stages, you remind it what not to do, you paste the context back in. In a harness, that discipline lives in the environment. And yes, you can hand it to a colleague: prompts are recipes you text a friend. Harnesses are kitchens you can franchise. 📋 Where a harness is actually good — three real patterns. 1. The infrastructure you can't touch. The most common blocker isn't technical and it isn't money. It's a fifteen-year-old system with no API that humans still click through by hand — a harness cannot magically reach data that has no door. And a very European problem sits right behind it: the works council. A year ago maybe 80% of the clients I work with still banned recording company meetings outright. Today it's dropped — but it's still 40 to 50 percent. Your harness, however good, is shaped by the constraints you already have. 2. Reconciliation with moving goalposts. Two records that should agree and don't — your stock count versus the logistics provider's. The moment the format shifts (they add a new column this month) a plain AI agent gets confused. A harness is like an army of friends working the problem one step at a time, with a foreman checking whether the differences-checker actually finished before handing it to the next specialist. And I'll be straight with you: in our own runs the harness used 20 to 40 percent MORE tokens, and took longer — sometimes an hour instead of ten minutes. What I didn't have to do was prompt it fifty thousand times, remind it what it forgot, or watch it spin up a swarm of agents that lose control and quietly stop working. 3. Long checklists and hard gates. Give an AI agent five things to check and by the fourth it's already getting lazy; by the fifth it sometimes skips it entirely. A harness doesn't care how long the list is. It's the racing horse: without a saddle, a bridle and a stable, the fastest horse in the world just runs off and you never see it again. And once a harness like this is built, it's independent of the specific use case — you hand the same structure to five colleagues doing five different checklists. 🪞 The harness that built this very episode. Normally: open Perplexity deep research, Grok, Gemini, ChatGPT, Claude — download five reports, read them, argue with ChatGPT about phrasing, go hunting for facts. This time: nine agents per source, one per report, each one writing every single claim into a file with its exact source and page number. Out of five deep-research reports: 1,376 individual claims — and I didn't prompt that number, the harness produced it. Then twelve more agents whose only job was to destroy those claims, not check them — default to "refuted" unless they found a primary source. Forty-one survived clean. Fifty-three needed the wording fixed. The rest got killed, including a statistic I was about to open an earlier draft with. 🎯 What you actually do this weekend 1. Find your crate. Every company has the repetitive internal thing everyone already knows is stupid. Start there, not with an autonomous agent wandering the company. 2. Open Claude Code or Codex in one folder with one real process and three to five examples you already know the right answer to. Ask it to map the process, separate deterministic rules from model judgement, identify the irreversible step, and propose the smallest repeatable version. Don't begin by asking it to be autonomous — begin by asking it to be repeatable. 3. Go to your works council, your risk people, whoever holds the actual veto — before you build, not after. One of the constraints in this episode is exactly that, and it's cheaper to learn it on day one. 4. Ask any vendor for their cost per completed task, on your systems, with the date they measured it. A percentage with no date is a screenshot, not a fact. 🍽️ The line I'd keep: your company is already a harness. It has suppliers, like a restaurant has suppliers. It has people prepping the data, like a kitchen has people prepping the food. It has standards. It has a team. The question isn't whether to build a harness — you're standing in one. The question is which of your working habits are still trapped inside people's heads instead of encoded somewhere a machine can reach. ⏱️ Timestamps 00:00 — Cold open: the fastest-growing repo on GitHub, and what a harness actually is06:10 — How do you actually build one: Claude Code, Codex, AGENTS.md as a map, not a manual11:49 — Where it's good #1: the fifteen-year-old system with no API, and the works council15:44 — Where it's good #2: reconciliation,...