---
title: Inside Anthropic’s 2026 Developer Conference
subtitle: What it was like in the room, plus what the new Managed Agents features look like in production
description: What it was like in the room, plus what the new Managed Agents features look like in production
authors: [Dan Shipper, Marcus Moretti, Katie Parrott]
publication: Chain of Thought
publication_slug: chain-of-thought
published_at: "2026-05-07T12:00:00-04:00"
canonical_url: "https://every.to/chain-of-thought/inside-anthropic-s-2026-developer-conference"
audience: everyone
slug: inside-anthropic-s-2026-developer-conference
---
_Was this newsletter forwarded to you? <u><a href="https://every.to/account" rel="noopener noreferrer" target="_blank">Sign up</a></u> to get it in your inbox._

* * *

To our surprise, the biggest launch from Anthropic’s <u><a href="https://claude.com/code-with-claude" rel="noopener noreferrer" target="_blank">developer conference</a></u> in San Francisco yesterday wasn’t a model or a feature. Instead, it was the company’s announcement of <u><a href="https://www.anthropic.com/news/higher-limits-spacex" rel="noopener noreferrer" target="_blank">a deal with SpaceX</a></u> to allocate all of the capacity in the latter’s Colossus supercluster to Claude.

Anthropic has been riding a historic demand surge over the last year as Claude Code opened up a new wave of agentic coding for engineers and non-engineers alike. But compute constraints have caused friction even amongst its most die-hard fans—we’ve written previously about <u><a href="https://every.to/context-window/get-your-hands-dirty#signal" rel="noopener noreferrer" target="_blank">being frustrated</a></u> with its OpenClaw restrictions and the speed of its latest models like <u><a href="https://every.to/vibe-check/opus-4-7" rel="noopener noreferrer" target="_blank">Opus 4.7</a></u>.

The deal with SpaceX changes that equation. Anthropic has already doubled rate limits for subscription plans, removed peak-hour limits on Pro and Max accounts, and raised API rate limits by as much as almost 17 times for certain tiers.

Other than that, the big story is Claude Managed Agents, Anthropic’s hosted agent product. The company released <u><a href="https://claude.com/blog/new-in-claude-managed-agents" rel="noopener noreferrer" target="_blank">three new features</a></u>:

- **Multi-agent orchestration:** a coordinator agent that spins up subagents in parallel baked into the platform
- **Dreaming:** Anthropic’s general-purpose version of <u><a href="https://every.to/guides/compound-engineering" rel="noopener noreferrer" target="_blank">compound engineering</a></u>, a feature that allows agents to learn from past sessions to improve between runs
- **Outcomes:** Anthropic’s answer to Codex’s /goals command, allowing developers to specify an outcome and run an agent in a loop until the outcome is achieved

By themselves, these features are nice but not groundbreaking. What’s more important is that _what an AI platform is_ has changed. In the GPT-3 days, the platform was a text completion end-point: Send text in, get text out. Now, with Claude Managed Agents, the platform is an AI model with a harness and host computer—all provided with unlimited scaling by the model companies.

**[Cora](https://cora.computer)** general manager **[Kieran Klaassen](https://every.to/@kieran_1355)** and I reported live from conference with our biggest takeaways, including the xAI compute deal, doubled Claude usage limits, Claude Managed Agents, and why the battle lines between OpenAI and Anthropic are starting to become clearer. Watch now:

[![](https://img.youtube.com/vi/4YNHb0XNV1A/maxresdefault.jpg)
 ![](https://d24ovhgu8s7341.cloudfront.net/static/emails/youtube-logo.png)
](https://www.youtube.com/watch?v=4YNHb0XNV1A)

We also recorded a conversation with **Angela Jiang** , head of product for the Claude platform, and **Katelyn Lesse** , head of platform engineering. The full episode drops tomorrow on _[AI & I](https://every.to/podcast)_—highlights below.—_<u><a href="https://every.to/@danshipper" rel="noopener noreferrer" target="_blank">Dan Shipper</a></u>_

## 
* * *

## Vibe Check: Claude Managed Agents 

#### Spiral general manager Marcus Moretti uses the platform’s new features

Anthropic launched Claude Managed Agents in April, and since then, Every’s AI writing tool **<u><a href="https://writewithspiral.com/" rel="noopener noreferrer" target="_blank">Spiral</a></u>** has used the platform to power its API and command line interface (CLI), which lets developers and other agents talk to Spiral outside the web app. Claude Managed Agents run on Anthropic’s servers, instead of us having to run them on our own.

We set up a new Managed Agent in an afternoon and <u><a href="https://every.to/context-window/the-missing-layer-in-ai-adoption#spiral-is-experimenting-with-agent-to-agent-workflows" rel="noopener noreferrer" target="_blank">deployed it to power our API</a></u> the next day. We’ve incorporated two of the new features Anthropic announced yesterday (memory and multi-agent orchestration) and are deploying the third (outcomes) soon.

**Memory:** Every’s editorial and social expertise—how to write a good X post, for example—lives in an Anthropic-hosted global memory store. The memory store lets us avoid including every piece of editorial and social expertise in the agent system prompt—the standing instructions that tell the agent what to do every time it runs. When a user asks for a podcast description, the agent doesn’t need to also recall how to craft a great LinkedIn post. It only pulls the relevant expertise with each request, thereby making responses faster.

Each Spiral subscriber also gets their own personal memory store. When you tell Spiral that you prefer em-dashes over semicolons or that your company name is one word and not two, it will remember and apply your rules by default the next time you run it.

**Multi-agent orchestration:** When users request a single draft of a piece of writing, one agent using <u><a href="https://every.to/vibe-check/opus-4-6" rel="noopener noreferrer" target="_blank">Opus 4.6</a></u> Fast handles the workflow end-to-end. For multi-draft requests, a coordinator agent using <u><a href="https://every.to/vibe-check/vibe-check-claude-haiku-4-5-anthropic-cooked" rel="noopener noreferrer" target="_blank">Haiku 4.5</a></u> spins up multiple Opus 4.6 Fast subagents to compose drafts in parallel. Before multiagent orchestration, multi-draft requests were handled serially, and each draft added 20 to 30 seconds to the overall request time. A multiagent approach also reduced our costs for multi-draft requests by about a third because we were able to use cheaper models for part of the work.

**Outcomes:** Anthropic’s new outcomes capability is a feedback loop where one “grader” AI checks another AI’s work against a specified goal. Spiral’s main value proposition is writing quality, so we’re using outcomes to set up a rubric to ensure the writer agent’s output meets Spiral’s editorial standards and matches the user’s style guide. The rubric the grader AI uses is generated on-the-fly based on the global standards, the user’s writing style, and their writing preferences from memory.

Memory and multi-agent orchestration are live in production, and outcomes is coming soon. You can see the features in action by running npm i -g @every-env/spiral-cli && spiral login or logging into Spiral and using the install command on the <u><a href="https://app.writewithspiral.com/settings/api-keys" rel="noopener noreferrer" target="_blank">Agent and API keys page</a></u>.

Having set these features up in production, here’s what I think:

**You are not totally locked into Anthropic’s universe.** Every engineer worries that when a company offers a hosted version of something, it will be hard to leave. With Managed Agents, the agents themselves, sessions, and memory are all stored on Anthropic machines, and the agents themselves can only be powered by Claude—a managed agent can’t run on GPT-5.5 or Gemini.

I’ve mitigated this lock-in in two ways: First, we save agent runs to our own database in addition to Anthropic’s. This way, chats from the API appear in the web app just as web chats do, but it doubles as a safety net. If we ever wanted to leave Anthropic, we’d have all our historical data. Second, the Managed Agents platform lets you define custom tools for the agents. Those tools run on our servers, which means we can use whatever model we want inside the tools themselves. The coordinator agent is locked to Claude, but we control the layer underneath.

**Using multiple agents has trade-offs.** Multi-agent orchestration has allowed us to create multiple drafts faster and cheaper. However, coordination between agents adds overhead that prevents greater speed gains. Debugging also gets harder: If a Spiral draft comes back subpar, we have to investigate both the coordinator agent and the writer agent to identify the root cause. I’d recommend multi-agent orchestration only when your agent benefits from running subagents in parallel or using a mixture of models. Otherwise, a single agent works well.

**Memory’s design is intuitive.** Each memory is just a folder of markdown files, and each memory store is attached to a session with instructions that tell the agent when to consult it. Anthropic designed this feature thoughtfully—they kept it simple.—_<u><a href="https://every.to/@marcus_fd8302_1" rel="noopener noreferrer" target="_blank">Marcus Moretti</a></u>_

## 
* * *

## The feature to watch: Dreaming 

#### Cora general manager Kieran Klaassen sees his own philosophy mirrored back at him

Kieran has spent the last year trying to get agents to learn his preferences instead of forcing him to restate them every time. That’s <u><a href="https://every.to/guides/compound-engineering" rel="noopener noreferrer" target="_blank">compound engineering</a></u> in a nutshell—each run leaves the system better prepared for the next one. So when Anthropic officially announced dreaming at yesterday’s Code with Claude event, he had a <u><a href="https://every.to/context-window/if-saas-is-dead-linear-didn-t-get-the-memo" rel="noopener noreferrer" target="_blank">familiar feeling</a></u>: The thing he’d been building was now a feature.

Dreaming is Anthropic’s name for a background process that <u><a href="https://claude.com/blog/new-in-claude-managed-agents" rel="noopener noreferrer" target="_blank">reviews an agent’s past sessions and memory stores</a></u>, finds patterns, and rewrites memory so the agent improves between runs. OpenClaw <u><a href="https://every.to/context-window/every-is-half-agent-now#do-agents-dream-of-electric-sheep" rel="noopener noreferrer" target="_blank">introduced</a></u> a similar feature in April, but Anthropic’s take seems more focused on what teams of agents learn collectively than what a single agent remembers. The system learns from repeated corrections, recurring mistakes, and workflows that run well—creating, over time, an institutional knowledge base.

The feature currently lives inside Claude Managed Agents as a <u><a href="https://claude.com/blog/new-in-claude-managed-agents" rel="noopener noreferrer" target="_blank">research preview</a></u>, which is where Marcus has been testing it—with early success. Every plans to have its production agents dream as soon as the feature ships in a stable public release. But Kieran’s immediate question was: When is this coming to Claude Code?

Claude Code, after all, is where developers spend their days teaching agents the same repo quirks, the same testing rituals, the same “please don’t do it that way” preferences. Those preferences can go into memory files, but memory files get messy. They collect duplicates, stale rules, one-off notes, and contradictions—and as Marcus notes, memory introduces overhead, so you trade speed for quality every time you use it.

A dream cleans that up. It takes <u><a href="https://platform.claude.com/docs/en/managed-agents/dreams" rel="noopener noreferrer" target="_blank">up to 100 past sessions</a></u> and produces a reorganized memory store with duplicates merged, contradicted entries replaced, and new insights pulled out—memory that organizes itself, in Marcus’s framing. If Anthropic brings that loop to Claude Code, memory starts to look less like a notes folder and more like accumulated taste.—_<u><a href="https://every.to/@katie.parrott12" rel="noopener noreferrer" target="_blank">Katie Parrott</a></u>_

* * *

## Inside Anthropic 

### What the company’s platform team told us off-stage

While at the conference, Dan sat down with **Angela Jiang** , Anthropic’s head of product for the Claude platform, and **Katelyn Lesse** , head of platform engineering, for a recorded conversation. Three things that stood out:

**The generic harness is dead.** Angela told us that building a generalized harness that lets you switch any underlying model for a different one—standard practice even a few months ago—is a losing strategy. Different harnesses paired with the same model produce “drastically different” results on Anthropic’s own evaluations. When the team built memory for Managed Agents, they tested multiple harness designs, and the performance gaps were large enough to make model selection feel secondary.

Our own experience backs this up: Our agents run on Claude with a harness tuned specifically for how Claude works. If we don’t want to risk getting locked in, we have to—as Marcus writes above—build the harness in a way that lets us swap in GPT or Gemini. But Angela’s argument is that the bigger risk is leaving performance on the table.

**Infrastructure is the real wall.** Katelyn told us that most people building agents expect the hard part to be the prompting, context window management, and tool setup required to get the most out of the model. In practice, everyone hits the same wall: infrastructure. They have to keep servers running, securely sandbox, prevent connection drops, and store transcripts. Before Marcus set up Managed Agents in an afternoon and deployed it the next day, we spent months on exactly that kind of plumbing.

**Your agent needs a babysitter.** Dan raised this problem directly: Agents get stale fast, running old models and old prompts with nobody responsible for updating them. Our solution so far has been to assign every agent an owner to keep an eye on it. Katelyn said the Anthropic team has built skills to help agents upgrade themselves to new models. “The most <u><a href="https://every.to/chain-of-thought/toward-a-definition-of-agi" rel="noopener noreferrer" target="_blank">AGI</a></u>-pilled people,” she added, “are running agents that monitor their agents.”

The full episode with Angela and Katelyn drops tomorrow on _[AI & I](https://every.to/podcast)_—we go deeper on where the platform is headed, what “outcome + budget” means as a design philosophy, and why Anthropic thinks Claude should eventually pick its own sub-agents.—_KP_

* * *

**_[Katie Parrott](https://every.to/@katie.parrott12)_** _is a staff writer at Every. You can read more of her work in_ _[her newsletter](https://katieparrott.substack.com/). To read more essays like this, subscribe to <u><a href="https://every.to/subscribe" rel="noopener noreferrer" target="_blank">Every</a></u>, and follow us on X at <u><a href="http://twitter.com/every" rel="noopener noreferrer" target="_blank">@every</a></u> and on <u><a href="https://www.linkedin.com/company/everyinc/" rel="noopener noreferrer" target="_blank">LinkedIn</a></u>._

_We <u><a href="https://every.to/studio" rel="noopener noreferrer" target="_blank">build AI tools</a></u> for readers like you. Write brilliantly with <u><a href="https://writewithspiral.com/" rel="noopener noreferrer" target="_blank">Spiral</a></u>. Organize files automatically with_ **_<u><a href="https://makeitsparkle.co/?utm_source=everyfooter" rel="noopener noreferrer" target="_blank">Sparkle</a></u>_** _. Deliver yourself from email with <u><a href="https://cora.computer/" rel="noopener noreferrer" target="_blank">Cora</a></u>. Dictate effortlessly with_ **_<u><a href="https://monologue.to/" rel="noopener noreferrer" target="_blank">Monologue</a></u>_** _. Collaborate with agents on documents with_ **_[Proof](https://www.proofeditor.ai/)_**_._

_We also do AI training, adoption, and innovation for companies. <u><a href="https://every.to/consulting?utm_source=emailfooter" rel="noopener noreferrer" target="_blank">Work with us</a></u> to bring AI into your organization._

_For sponsorship opportunities, reach out to sponsorships@every.to._

[Subscribe](https://every.to/subscribe?source=post_button)
