Harness-1 Debuts at 20B Parameters, Agent Engineering Surpasses Prompting, and Google Questions the Transformer Era
The AI conversation shifted hard from model capabilities to the scaffolding around them, with a new open-source 20B search agent and a flurry of harness engineering frameworks dominating the timeline. Meanwhile, Google published research on memory-cached RNNs that could challenge transformer dominance, and OpenAI faced accusations of using client engagements as data pipelines.
Daily Wrap-Up
If there was one word that defined today's AI discourse, it was "harness." Not the model inside the agent, but the system wrapped around it. The launch of Harness-1, a 20B parameter open-source search agent that reportedly rivals Opus-4.6 on long-horizon tasks at a fraction of the cost, crystallized a shift that's been building for months: the real engineering work in AI is no longer about picking the right model. It's about building the right scaffolding. Multiple posts across the timeline converged on this idea from different angles, from @Vtrivedy10's five-step agent optimization recipe to @ByteMohit's firsthand account of building a harness from scratch to @cyntro_py's analysis showing that codified workflows are already making the "skills" paradigm obsolete.
The second thread worth watching is the growing tension between frontier model costs and commodity inference. Brian Armstrong laid out a case for 80% of workloads running on 99% cheaper models within 18 months, while @mfishbein accused OpenAI of treating its Forward Deployed Engineering clients as little more than data sources for future products. Together, these posts paint a picture of an industry that's simultaneously racing toward more capable models and desperately trying to make the cheaper ones good enough.
The most practical takeaway for developers: stop trying to write better prompts and start building self-healing agent loops. The consensus across today's top posts is that the path from "chatbot" to "autonomous operator" runs through harness engineering, dynamic workflows, and verification loops, not clever system prompts. If you haven't yet, set up a /goal or /supergoal loop in your coding agent this week and watch how much further it gets without you.
Quick Hits
- @PenguinWeb3 discovered that asking ChatGPT to "restore" a nonexistent photo with an apologetic, no-questions-asked prompt causes the model to hallucinate genuinely unsettling nightmare images, a weird edge case that reveals how the image generation pipeline handles contradictory instructions.
- @humzaakhalid posted a practical 7-day Obsidian onboarding roadmap covering vaults, PARA folders, plugins, daily notes, and weekly reviews, a solid bookmark if you've been meaning to build a second brain but keep closing the app after one blank note.
- @0xSero shared a minimal essential software stack list topped by Tailscale for secure networking, VibeProxy for unified AI subscription access, and the Codex app.
- @mercor_ai announced the APEX newsletter, an AI benchmark digest tracking the model race, for those who want model evaluation data delivered rather than manually tracked.
- @steipete pointed followers to two open-source projects, clawsweeper and crabfleet, where he's exploring agentic loop ideas in the wild.
The Harness Era: Agent Engineering Comes of Age
The single most important idea circulating today is that agents are not models. An agent is a model plus a harness, and the harness is where the real engineering happens. This framing, laid out clearly by @Vtrivedy10, provides a mental model that explains much of the current AI tooling landscape. His five-step optimization loop starts simple: build a v1 agent with a sensible base harness and task-specific tools, then iterate through harness engineering, supervised fine-tuning on collected traces, reinforcement learning for those with the bandwidth, and a final round of light harness tuning. Crucially, he notes that most companies can reach acceptable performance at step two, just good harness engineering with eval-driven iteration.
> "Harness engineering will probably be the dominant way ppl will optimize agents. but i expect a large number of companies to onboard through this entire loop on some trial project of interest in the next year." - @Vtrivedy10
This isn't just theory. @patpcj introduced Harness-1, a concrete artifact of this philosophy: a 20B parameter search agent with a state-externalizing architecture that reportedly achieves frontier-level long-horizon search rivaling Opus-4.6 while maintaining what they describe as Context-1-level cost and latency. The model externalizes candidates, evidence, verification, and search history rather than trying to hold everything in context, an architectural decision that directly embodies the harness-first philosophy.
The open-source ecosystem is racing to fill this harness layer from multiple directions. @Fluyeporlaweb highlighted Goose, the Jack Dorsey-backed agent donated to the Linux Foundation that runs locally, orchestrates other agents like Claude Code and Codex as subagents, and ships with 70+ MCP extensions. Meanwhile, @ByteMohit documented his experience building an agentic harness from scratch in Python, noting that the process of construction taught him more about what agents actually are than any amount of model experimentation. @PrajwalTomar_ shared a SOUL .md template for the Hermes Agent that includes sections for Stance, Autonomy, and Mission, the three pillars that allegedly separate an autonomous operator from a chatbot. And @robertcourson released /supergoal, a self-healing, self-governing, and self-verifying upgrade to the /goal command, building on @steipete's recurring argument that you shouldn't be prompting coding agents but designing loops that prompt them.
What connects all of these is a rejection of the idea that better models alone solve problems. The harness is the product now. Models are infrastructure.
Claude Code, Loops, and Long-Running Agent Workflows
If the harness is the product, then Claude Code is becoming the default testbed for figuring out how it should work. @bcherny shared five concrete tips for running Opus autonomously for hours or even days, and the advice reads like a handbook for the harness era: use auto mode for permissions so the agent doesn't stall waiting for approval, deploy dynamic workflows to orchestrate hundreds of sub-agents, use /goal or /loop to keep the agent pushing forward, run Claude Code in the cloud so you can close your laptop, and critically, give the agent a way to self-verify its work end-to-end, whether through browser extensions for web tasks, sim MCPs for mobile, or full server startup for backend work.
> "You're not supposed to prompt Claude. You're supposed to build a system that prompts itself." - Anthropic engineer, via @eng_khairallah1
That quote, shared by @eng_khairallah1, captures the paradigm shift perfectly. His breakdown of how most people misuse Claude is instructive: users lose 14% of context to CLAUDE.md before typing a word, most have never installed the plugins that would transform their workflow, and starting every chat from zero is described as "the slowest way to use Claude." Meanwhile, @mvanhorn documented the emerging debate between Peter Steinberger and Boris Cherny over what a "loop" actually means in practice, a sign that the community is still actively negotiating the vocabulary of this new paradigm.
The throughline is clear: the gap between someone typing into a chat window and someone running a team of orchestrated agents is not about model access. It's about system design.
The Builder's Toolkit: Frameworks and Tutorials
A parallel conversation today focused on how people are actually learning to build in this new paradigm, and the answers ranged from structured curricula to hands-on tool walkthroughs. @0x0SojalSec surfaced a two-hour Stanford lecture that breaks down four levels of LLM mastery from prompting to fine-tuning to RAG to agents, covering Chain-of-Thought, ReAct, Tree of Thoughts, and Andrew Ng's four agentic patterns. For someone trying to understand the theoretical landscape, it's a useful roadmap.
On the practical side, @petergyang published interviews with five AI builders that read like case studies in production agent work. The lineup includes @kieranklaassen walking through the Compound Engineering system with its /ce-plan, /ce-work, and /lfg commands, @ryancarson running a startup solo with OpenClaw, Codex, and Devin, and @Shpigford demonstrating a 25-year product veteran's approach to custom skill stacks. These aren't tutorials in the traditional sense. They're workflows that people have battle-tested in production.
@gregisenberg contributed a 43-minute Hermes Desktop walkthrough covering sessions, profiles, artifacts, and cost optimization, positioning the app as a potential competitor to OpenClaw with what he describes as Apple-level design polish. And @geoffreylitt offered a glimpse of agents in domestic life, sharing a family agent that handles groceries, runs the household budget, and is helping plan a move, all anchored by what he calls a "butler's book" for maintaining context.
AI Economics, Data Ethics, and the Future of Work
The economic undercurrents of the AI industry surfaced in two very different posts that, together, frame the central tension of the moment. @mfishbein posted a clip of OpenAI's Head of Forward Deployed Engineering speaking at South Park Commons, arguing that FDE service revenue doesn't matter to OpenAI. What matters is recurring product revenue. To get there, OpenAI needs subject matter expertise, training context, and engineering. And FDE clients are paying OpenAI to acquire all three. The accusation is blunt: clients are a data source, not a customer.
> "OpenAI's FDE clients don't matter to them. They're just a data source." - @mfishbein
On the other side of the margin equation, @brian_armstrong responded to an analysis of AI cost trends with a prediction that 80% of workloads will run on models that are 99% cheaper within 12 to 18 months, while the remaining 20% will continue paying premium rates for maximum IQ on tasks like scientific breakthroughs and orchestrator agents. He noted that Coinbase is actively routing prompts to cheaper models where appropriate, keeping costs roughly flat even as token usage grows exponentially. The implications are significant: if compute and energy become the limiting factors rather than model quality, then the harness engineering conversation becomes even more urgent. Your competitive advantage isn't having the smartest model. It's having the most efficient scaffolding around whatever model is cheap enough for the job.
Google's Memory-Cached RNNs Challenge the Transformer Status Quo
Amid all the tooling talk, @HowToAI_ surfaced a research development that deserves more attention than it received. Google published a paper on Memory Caching RNNs with Growing Memory, and the premise directly addresses the transformer's most fundamental limitation: quadratic complexity. For seven years, the transformer architecture has powered every major AI model, but the computational cost of processing every token against every other token has made long-context inference prohibitively expensive.
The Google approach gives RNNs what amounts to a save button, allowing them to cache checkpoints of hidden states as they read, dynamically growing memory capacity as sequences lengthen. Four variants were tested, including sparse selective mechanisms where the model actively chooses which checkpoints to retain. On long-context understanding and recall-intensive tasks, these memory-cached RNNs reportedly closed the gap with transformers without the explosive compute cost. If the results hold up under broader scrutiny, this isn't just an incremental improvement. It's a proof point that the billions spent scaling transformers may have been solving the wrong problem. We didn't need to reprocess the entire history every time. We just needed a smarter cache. Whether this actually unseats the transformer in production remains to be seen, but it's the kind of architectural challenge that could reshape the economics Armstrong was describing.
Sources
How to Actually Set Up Claude Projects That Most Users Don't Know
https://t.co/Lb2gtM9SNs
I Built an Agentic Harness From Scratch. That Taught Me What Agents Actually Are
Everyone is building with agents. Almost nobody talks about what is actually inside one. Not the model. The harness around it. I spent the last few mo...
How to Build Your Second Brain using Obsidian (FREE)
How I set up Obsidian + Claude as my second brain
A dynamic workflow like this consumes ~10M tokens but delivers a comprehensive market research report that previously would have required dozens of deep research runs and hours of data compilation I'm running this for every project that applies to @cyberfund and gets through first interview phase.
Here’s your monthly reminder that you shouldn’t be prompting coding agents anymore. You should be designing loops that prompt your agents.
The most basic way AI could blow up imo. I'm not saying it does but this is the most obvious way I can see it happening - Per seat subscriptions are massively subsidized. The flat fee was priced way below what heavy usage actually costs - For real business use you have to move to the API anyway. Data protections, work integrations and compliance officer approval - On the API you pay metered rates, and businesses are burning credits way faster than the per seat pricing ever led them to expect - This is everywhere right now. Internally for us, Codex users, Uber torching its entire 2026 AI budget in 4 months, the Microsoft comments. Just go try an API I shared more on this here: https://t.co/iZrqrCAIRW - And I don't think most businesses have the money to keep paying increasing API rates without a real change to how they operate (caps needed) - Because they have a cheap alternative. They can reach open source models through any aggregator (OpenRouter, Venice, Baseten, Together) and still get strong privacy. Venice private data centers, or E2EE/TEE serving GLM 5.1. More on open source inference provider raises here: https://t.co/7kf56P44yQ - And the discount is enormous. DeepSeek V4 codes within a hair of Opus on SWE bench at roughly 1/30th the price, and the cheapest open models run closer to 1/100th - Chinese labs open source frontier grade models. The model is the single biggest cost an inference provider has, and they get it for free - This idea dies if China goes closed source. That is actually bullish web2 AI labs, because if everyone is closed you pay up for the best intelligence. China goes closed source if they are tired of giving away an asset and they want the revenue and data flow to train new models - Is this showing up in web2 AI lab revenue yet? No. Revenue is off the charts. Anthropic went from 9B to 47B run rate in five months - So go forward, what happens? - I think revenue slowly starts leaking to the open source inference providers (see Venice usage, OpenRouter's $113M raise, Baseten is raising at $11B or triple its valuation in three months, on revenue that went from $200M to $600M annualized in a single quarter) - It doesnt move overnight, but it caps the labs ability to raise prices, and margins are already deeply negative. OpenAI is reportedly running near negative 122% - With margins that bad there is no cash flow, so the labs are fully dependent on outside capital to buy GPUs, train models, and keep subsidizing usage (I.e. see Google tapping $80b equity sale, granted 30b for employee RSU taxes. Clearly they think Equity is overvalued or you wouldn't sell it) - The break comes when that capital stops. Pricing is capped so margins cant improve, and the moment investors lose conviction on payback, the whole flow reverses - Why would they lose conviction on payback? Back to the start - the inability to improve margins or get businesses to pay more - This is also limiting, if we start making new drugs with AI or create entirely new businesses, you better believe people will pay up to the max for AI usage
Your family agent needs a butler's book
Can coding agents stay coherent over a 1 billion token budget? Can they build Slack from scratch? Rewrite a JAX codebase in PyTorch? Build a C compiler in Rust? Enter SWE-Marathon: a benchmark for autonomous long-horizon software work. https://t.co/K97VHyLvIX
WTF Is a Loop? Peter Steinberger vs. Boris Cherny
The most repeated sentence in AI coding this week is six words long, and almost nobody saying it can define it. One tweet had the entire timeline in a...