The Harness Beats the Model - Skills, MCP, and the Agentic Stack That Actually Matters
After AI Engineer World's Fair 2026, the message is clear - stop chasing models and invest in the harness. The agentic stack is converging around skills governance and knowledge engineering, not which foundation model you run.
On this page
I spent three days at AI Engineer World’s Fair 2026 in San Francisco watching hundreds of practitioners converge on the same conclusion: the model is becoming commodity. The environment around it - the harness, the tools, the skills, the context layer - is where lasting value accrues.
This is not a theoretical position anymore. It is observable in production systems, in open standards governance, and in the architecture patterns that keep winning across companies of wildly different sizes and domains.
Here is what crystallized, why it matters, and what to do about it.
A Standard Agentic Architecture Is Emerging
Walk through enough demos, talks, and hallway conversations and the same stack keeps appearing:
Coding Agent → MCP Tools → Sub-agents → Skills
The coding agent is the outer loop - it receives a goal, plans, delegates, and verifies. MCP tools provide structured access to external systems. Sub-agents handle scoped tasks. Skills encode procedural knowledge that makes all of these components more effective.
Two layers sit beneath this:
Context layer - brings the right data to the agent at the right time. This includes system instructions, tool schemas, memory (short and long-term), and retrieved context from vector stores or knowledge graphs. Getting context right is 80% of the battle.
Workflow layer - the deterministic orchestration that sequences the work: Specify, Design, Break down, Implement, Verify. Not every task needs all five steps, but the ones that skip verification tend to produce garbage at scale.
The important insight: none of this is model-specific. You can swap Claude for GPT for Gemini for an open-weight model and the harness keeps working. The harness IS the product.
Two Standards Settled
The conference made clear that two cross-vendor standards have won:
MCP (Model Context Protocol) for tool integration. Now governed by the Linux Foundation, adopted by every major lab, supported in every serious agent framework. MCP gives agents a universal way to discover and invoke tools - file systems, APIs, databases, browser automation, anything with a schema. The protocol is simple, the ecosystem is massive, and the debate is over.
Agent Skills for procedural knowledge. Originated in Anthropic’s format (the CLAUDE.md and skills system), now adopted by OpenAI and others. Skills are structured instructions that tell an agent HOW to do something - not just what tool to call, but the full procedure including edge cases, verification steps, and quality criteria.
These two standards together mean that tool access and procedural knowledge are portable across models and frameworks. That portability is what makes the harness investment durable.
Skills Are the New Microservices
This was the biggest insight of the conference for me. Skills need the same engineering discipline we learned (painfully) to apply to microservices:
- Useful - solves a real, recurring problem
- Modular - does one thing well, has clear boundaries
- Discoverable - agents can find the right skill at the right time
- Reusable - works across contexts without modification
- Composable - combines with other skills to handle complex workflows
A skill is not a prompt. It is a deterministic, composable, reusable unit of procedural knowledge that produces higher-quality outcomes than ad-hoc prompting. The difference between “write me a PR description” and a skill that specifies exactly how to analyze diffs, group changes by concern, write a summary with test plan, and format for the team’s conventions - that difference compounds across thousands of invocations.
Without Governance: Chaos
I talked to three different teams running 50+ agents in production. Without skill governance, they all hit the same problems:
- Duplication - five different “deploy to staging” skills with subtle incompatibilities
- Quality decay - skills drift as people copy-paste and modify without testing
- Security risks - skills that bypass guardrails or expose credentials
- Poor discoverability - agents cannot find the right skill, so they improvise (badly)
With Governance: Compounding Returns
Teams that treat skills as first-class engineering artifacts - with reviews, tests, versioning, and a registry - see convergence across teams, higher quality outputs, lower token costs, and measurably higher developer productivity.
One team showed a 40% reduction in agent token usage after consolidating to a shared skill library. The agents stopped reinventing procedures on every invocation and started following proven paths.
Three Types of Knowledge
Microsoft’s keynote introduced a framework I have been thinking about ever since:
Intrinsic knowledge - what the model knows from training. This is the commodity layer. Every frontier model knows how to write Python, explain a concept, or reason about architecture. Competing here means waiting for the next model release.
Extrinsic knowledge - your company’s data, brought to the model via what Microsoft calls the “IQ layer” (retrieval, context injection, tool access). This is table stakes for enterprise AI. RAG, knowledge graphs, MCP tools - all mechanisms to inject extrinsic knowledge.
Learned knowledge - this is the interesting one. It emerges from doing work. When an agent successfully completes a task, the procedure, the decisions made, the edge cases encountered - all of that can be captured and reused. This is compound advantage. The more work your agents do, the better your skills become, the more effective future work is.
This is why skills governance matters so much. Learned knowledge is your moat. But only if you capture it, curate it, and make it discoverable.
Microsoft’s Agent Optimizer
One of the more practical talks showed Microsoft’s agent optimizer pattern:
- Evaluate baseline - run the agent on a test suite, measure quality
- Generate candidates - use hill-climbing to produce improved configurations (better instructions, different tool selections, refined skills)
- Deploy optimized configs - A/B test against baseline, promote winners
This is not magic. It is systematic improvement of the harness while holding the model constant. The teams doing this are improving agent quality 2-3x without changing models. They are tuning the environment, not waiting for the next release.
Thin Agents on a Smart Shared Substrate
The architectural pattern that keeps winning: thin agents that do minimal custom work, sitting on a rich shared substrate of tools, skills, memory, and context.
The losing pattern: thick agents with custom wiring, bespoke tool integrations, and duplicated procedural knowledge.
Think of it like the shift from monoliths to microservices, but for AI. The shared substrate (MCP servers, skill libraries, memory stores, guardrail systems) does the heavy lifting. Individual agents are thin orchestration layers that compose these shared capabilities.
Teams are consolidating on one primary harness and shared skill libraries rather than letting every team build their own agent framework. The economics are obvious once you see it - maintaining N custom agent implementations costs N times more than maintaining one good shared substrate.
Unhobling - Less Is More
Anthropic’s Tariq gave a fascinating talk about “unhobling” Claude for Fable’s use case. They removed 80% of the system prompt because newer models are actually constrained by overly specific examples rather than helped by them.
The insight: as models get more capable, the optimal system prompt gets shorter and more principled. Instead of providing 47 examples of how to format output, you provide clear principles and let the model’s intrinsic capability handle the details.
This maps directly to skill design. Early skills tend to be over-specified - long lists of steps, excessive examples, rigid formatting rules. Mature skills state the goal, the constraints, and the quality criteria, then trust the model to find the path.
The parallel to management is obvious. You do not micromanage senior engineers. You give them clear objectives and constraints, then get out of the way. The same principle applies to frontier models with well-designed skills.
What to Do Monday Morning
If you are building with AI agents, here is the priority stack:
1. Invest in context engineering. Get the right information to the agent at the right time. This means good retrieval, clean tool schemas, well-structured memory, and thoughtful system instructions. This matters more than model selection.
2. Build a skills library with governance. Treat skills as engineering artifacts. Review them. Test them. Version them. Make them discoverable. Start with your five most common agent tasks and write proper skills for each.
3. Set up fast CI feedback. Agents that can verify their own work in tight loops produce dramatically better results than agents that generate and hope. Linting, type checking, test execution, build verification - make all of it accessible to your agents.
4. Define explicit guardrails. What the agent must never do matters as much as what it should do. Security boundaries, data access controls, approval gates for destructive actions - bake these into the substrate, not into individual agent prompts.
5. Stop model-shopping. Pick a frontier model, commit for a quarter, and spend your energy on the harness. The 5% quality difference between Claude and GPT on a benchmark matters far less than the 50% quality difference between a well-harnessed agent and a naked API call.
The Stack Is Converging
The meta-message from AI Engineer World’s Fair 2026 is convergence. The wild experimentation phase of agent architecture is ending. A standard stack is emerging. The standards (MCP, Skills) are settling. The patterns (thin agents, shared substrate, fast feedback, skills governance) are proven.
The teams that win from here are not the ones with access to a secret model. They are the ones who engineer the best harness - the richest context, the most disciplined skills, the tightest feedback loops, and the most effective knowledge capture.
The model is the engine. The harness is the car. Nobody buys a car for the engine alone.
Related articles
The 15 MCPs & Skills That Supercharge My Claude Code Setup
The most important MCP servers and Claude Code skills I use to boost agentic AI productivity - what they do, why they matter, and copy-paste install instructions for each one.
AI in a Nutshell - Models, Concepts, and the 2026 Landscape
A concise overview of AI models, fundamental concepts, and the current state of AI engineering - from frontier models to local LLMs and agentic systems.
gstack - Garry Tan's Framework That Turns Claude Code Into a Virtual Engineering Team
How the Y Combinator CEO's open-source toolkit structures AI coding around 23 specialist roles - from product review to security auditing - and why the role decomposition pattern matters more than the tool itself.