Skip to content

Production and Frontier

The landscape and the future

Where agents are heading

The capstone. A grounded map of where agents actually are in 2026: what genuinely works, what is still hype, the open problems that gate real deployment, and where the field is credibly heading. Then the most important part: how to keep learning after this course, and why now is the moment to build.

Where we actually are

Two things are true at once in 2026, and holding both is the whole skill. Agents are really in production, and reliability, not raw intelligence, is what still blocks most of them. The best empirical snapshot is LangChain's State of Agent Engineering 2025 (1,340 respondents): 57% run agents in production and another ~30% are actively building, with large enterprises leading at ~67%. The top use cases are unglamorous and real: customer service (~26%), research and data analysis (~24%), internal workflow automation (~18%).[1]

The blockers tell the real story. The top two are quality (~32%) and latency (~20%), while cost fell down the list year-over-year, because caching and routing worked. 89% of teams have observability but only ~52% run offline evals: teams can see failures but cannot reliably catch regressions before they ship. And the architecture is more sober than the hype: 75%+ use multiple models in production and ~57% do not fine-tune at all, leaning on retrieval and context engineering instead.[1]

The definition finally converged

After years of "agent = anything," 2025 settled on a mechanistic, buildable definition: "an LLM agent runs tools in a loop to achieve a goal."[2] Simon Willison collected 211 crowdsourced definitions before this consensus emerged; the load-bearing phrase is in a loop.[3] That clarity is itself a 2025 milestone.

What genuinely works vs what is still hype

Separate the signal cleanly. The wins are concentrated where outcomes are verifiable and the scaffold is engineered; the disappointments cluster where autonomy is stretched past what reliability supports.

Works today

Coding agents that write, run, read, iterate (Claude Code, Codex): verifiable via tests, the flagship domain.[2] Deep research: orchestrator-worker agents that fan out, gather, and synthesize. Workflows dressed as agents: most production systems are predefined code paths, usually the right, more predictable call.[4] Single agent plus a sharp toolbox, with a human on irreversible actions.

Still fragile / oversold

Naive multi-agent everywhere: powerful but ~15x the tokens of a chat turn; only pays for breadth-first, parallel work.[5] "Fully autonomous" long-horizon runs with no checkpoints: errors compound. "It replaces your team next quarter": partial autonomy with human verification is the honest state of the art.[6] Benchmark scores as production readiness: they are ceilings, not guarantees.

The 2025 to 2026 story in one line

"The harness caught up to the model." The models that felt like party tricks in 2024 became genuinely useful in 2025, not because of a bigger brain, but because the scaffold matured: code-execution loops, long-running harnesses, and context engineering. Same models, but now they make incremental progress across many context windows instead of one-shotting.[7]

Tap a node to see what it does.

The field's timeline of ideas and scaffolds, not just models. The unlock in 2025 was engineering the loop, the tools, and the context, not a step change in model IQ.

The capability trend: a landscape map

How fast is the ground moving? METR's measures the length of task (timed on skilled humans) that an agent finishes at 50% success. It has doubled roughly every 7 months since 2019, and the 2024 to 2025 subset trends faster, closer to about 4 months. Claude 3.7 Sonnet sat around 50 to 59 minutes in early 2025.[8]

1 week 1 day 1 hr 1 min 2019 2021 2023 2025 2027 2026 · now GPT-2 GPT-4 Claude 3.7 ≈ 1 hr extrapolation ~7-month doubling (recent subset ~4 mo)
Figure 2 - The landscape as a trajectory. The solid line is measured; the shaded cone is extrapolation, and it is a scenario, not a schedule. This is a 50%-success line on curated tasks with roughly ±10× timing uncertainty - enough to shift any "day-long autonomy" arrival by about two years either way.2

Read the curve honestly

Models are near-perfect on sub-4-minute tasks and drop below ~10% success past ~4 hours.[8] The exponential is real and the error bars are enormous. "Week-long autonomy by year X" is a plausible scenario to plan around, never a promise to bet the company on.

The frontier products, by capability

Three application areas define what "agentic" means to most engineers in 2026, each with a real capability and a real limit.

AreaThe capabilityThe limit
Coding agentsThe write, run, read, iterate loop is the default; tests give ground-truth feedback so the loop self-corrects. The flagship domain.Still needs human review.
Deep researchAn orchestrator delegates to parallel sub-agents that explore with clean windows and return condensed summaries.[5] Big quality gains at a known token premium.Cost and citation discipline.
Computer & browser useAgents that drive a real UI like a person. The most general capability.The most brittle: slow, error-prone, and a security surface. Reliability.
The three frontier product areas of 2026. Each is real, and each is gated by a specific limit rather than by model IQ.

The open problems board

Here is the honest state of the frontier, the problems that gate real deployment. The through-line: what limits agents in 2026 is reliability, not IQ.

OPEN PROBLEMS BOARD reliability, not IQ, gates deployment Long-horizon reliability Errors compound across steps; 95%^10 ≈ 60% end-to-end. No multi-day session benchmark exists yet. blocks · autonomy Memory Durable, persistent memory across sessions is still bolted on, not native - the context window is finite. blocks · continuity Evaluation Trajectory-level grading is immature; offline evals lag observability (52% vs 89%). You can't gate what you can't score. blocks · trust Cost Falling fast (caching, routing, batching) - but multi-agent still burns ~15× a chat turn. Value must clear the bar. blocks · scale Security Prompt injection and the "lethal trifecta" have no clean fix. Every tool a model calls is attack surface. blocks · deployment
Figure 3 - The open problems board. Reliability and memory are the hardest; evaluation is the discipline that catches the rest; security is the one with no probabilistic escape hatch. Cost is the problem the field is actually solving.

The bottleneck is reliability, not capability

This is the single most important frame to leave the course with. A model that succeeds 80% of the time per run can be ~2% reliable across 8 unattended tries (), which is why compounding errors and durable execution, not benchmark peaks, decide what actually ships.[9] Quality and latency top the production-blocker list precisely here.[1]

Where this is credibly heading

Skip the science fiction; here are four directions the primary sources actually support, each gated by reliability, cost, and verification, not by model IQ alone.

  1. Longer autonomy. The time-horizon curve points toward day- and eventually week-long tasks late this decade, with wide uncertainty.[8] Karpathy's framing holds: move the autonomy slider rightward over time, keeping a human in the verification loop, "a decade-long transition, not a single launch."[6]
  2. Agentic organizations. The credible near-term shape is teams of specialized agents coordinating like a human org, an orchestrator delegating to workers, already worth +90% quality on breadth-first research at a ~15x token cost.[5] Gated by coordination cost and verification.
  3. Better interoperability. Two protocols are consolidating the plumbing: MCP for the vertical agent-to-tool interface and A2A for the horizontal agent-to-agent interface. Standard interfaces are what let agentic orgs actually compose.
  4. Agentic RL. Training directly on verifiable rewards (RLVR) is sharpening models on exactly the code/math tasks where agent loops already work best, reinforcing coding as the flagship domain.[10] The frontier of how agents are trained was the previous lesson.

How to keep learning

The field moves monthly, so the durable skill is knowing where to look. Your two anchors are the curated resources list (primary sources, landmark papers, high-signal communities) and this course's reference shelf. Come back to them often.

  1. Read the primaries. Start where the field started: Building Effective Agents,[4] Willison's tools-in-a-loop,[2] Weng's agent anatomy, and Huyen's when-not-to.[9]
  2. Use the shelf. The glossary for any term, the patterns cheatsheet when you are designing, and the frameworks comparison when you are choosing tooling.
  3. Stay current. Track the frontier without the hype: the communities and newsletters in the resources list. Read the practical guides from the labs[11] and re-derive claims against your own evals.

And re-run the arc yourself. Everything you learned composes into one workflow:

ModuleYou can now...Anchor lessons
0 - OrientationPlace any system on the workflow-to-agent spectrum1, 2
1 - Reasoning corePick a model; reason about tokens, context, test-time compute3, 4
2 - Loop & actingBuild the ReAct loop with tools, structure, planning, reflection6, 7
3 - Memory & knowledgeEngineer context, embeddings, RAG, and durable memory11, 13
4 - Multi-agentOrchestrate specialists and route handoffs15, 16
5 - Protocols & frameworksWire tools via MCP; interoperate via A2A17, 19
6 - Reliability & safetyEvaluate, trace, guard, and defend against injection20, 23
7 to 8 - Applied & productionShip coding/computer-use agents that survive real traffic24, 27
The whole course as one composable workflow. Each module is a capability you can now reach for.

Check yourself

Match each open problem on the frontier board to its crux.

drop here

compounding errors block unattended autonomy

drop here

durable cross-session recall is still bolted on

drop here

you cannot gate what you cannot score

drop here

prompt injection has no clean probabilistic fix

In the 2025 to 2026 landscape, which factor most gates real agent deployment?

How should you read METR's extrapolation toward day-long autonomous tasks?

What does 'the harness caught up to the model' mean, and why did it change the field in 2025?

What matured, if not the model? Try to state it, then check.

Most production 'agents' are actually workflows. Why is that usually the right call?

What does autonomy cost? Try to state it, then check.

You finished Agent Academy

Twenty-eight lessons: from "what is an agent" to shipping one that survives production traffic. You can now define an agent precisely, build the loop, engineer its context and memory, evaluate it like an instrument, defend it, and reason honestly about the frontier. The field is early, the harness is still being invented, which is exactly why the best way to learn what is next is to build it. Start with the simplest thing that works, put it in front of one real user, measure, and move the autonomy slider one notch at a time. Go build.

Lock it in

  • Agents are really in production, 57% of teams, but reliability, not capability, is the bottleneck. Quality and latency top the blocker list; cost is the problem the field is actually solving.
  • The harness caught up to the model. The 2025 unlock was engineering the loop, tools, and context, code-execution agents, long-running harnesses, context engineering, not a bigger brain.
  • Capability is on a steep exponential (~7-month, recently ~4-month, doubling of task horizon), but it is a 50%-success line on curated tasks with plus-or-minus 10x uncertainty. Plan for it; do not bet on it.
  • The open problems are long-horizon reliability, memory, evaluation, cost, and security. Four are engineering problems; security is the one with no probabilistic escape hatch.
  • Start simple, measure, escalate only on need, the one principle that outlives every model release. Then build something and put it in front of a real user.

Primary source

LangChain, State of Agent Engineering 2025

The single best grounded read on where agents actually are: 1,340 practitioners on production adoption, the real blockers (quality and latency over cost), the observability-vs-evals gap, and multi-model reality. The empirical map of the 2026 landscape.

Sources

  1. 1.LangChain, State of Agent Engineering 2025
  2. 2.Simon Willison, Tools in a loop (2025)
  3. 3.Simon Willison, I think agent may finally have a definition
  4. 4.Anthropic, Building Effective Agents
  5. 5.Anthropic, Building a multi-agent research system
  6. 6.Latent Space, Andrej Karpathy interview (S3)
  7. 7.Anthropic, Effective harnesses for long-running agents
  8. 8.METR, Measuring AI ability to complete long tasks
  9. 9.Chip Huyen, Agents (2025)
  10. 10.Andrej Karpathy, 2025 LLM year in review
  11. 11.OpenAI, A practical guide to building AI agents