The argument in one line.
Anthropic shipped five practical agent-building features at Code with Claude—routines, outcomes, multi-agent orchestration, Dreams memory, and doubled usage limits—that make it easier to build, schedule, and refine autonomous workflows in production.
Read if. Skip if.
- A developer or technical founder building with Claude's API or Code app who wants to understand what shipped at Anthropic's first developer event and how to use it.
- A product manager or technical leader evaluating Claude's capabilities against competitors and needs a concrete breakdown of five new features with live demos.
- Someone already using Claude Code who's wondering what changed in the last few weeks and wants a 12-minute overview instead of reading release notes.
- You primarily use Claude through the web interface and have no plans to build with the API, Claude Code app, or managed agents — most of these features are developer-focused.
- You're looking for deep technical documentation on implementation or API specs — this is a product announcement recap, not a how-to-build guide.
The full version, fast.
Anthropic's first developer event shipped five practical upgrades that push Claude Code from a chat-style coding assistant toward an agent platform you can schedule, grade, and stack. The core mechanism is a new set of primitives: Routines fire Claude Code jobs on a cron, GitHub webhook, or generic HTTP trigger, locally or in the cloud; Outcomes lets a managed agent self-grade against a markdown rubric and iterate up to twenty times until done; multi-agent orchestration defines an orchestrator plus up to twenty-five sub-agents with their own toolsets against one filesystem; and Dreams consolidates past sessions into written memories on demand. Five-hour usage limits doubled across Pro, Max, Team, and enterprise seats, so you can actually use it.
Chat with this breakdown — free.
Sign in and you get 23 free chat messages on us — ask for the hook, quote a framework, find the exact transcript moment, generate a markdown action plan. Bring your own key when you want unlimited.
Create a free account →Where the time goes.

01 · Cold open
Claire frames the video: she attended Code with Claude, will walk through five things in under ten minutes.

02 · Promise of five things
Sets the scope: what they are, how they work, what she'd build with each. Promises to keep it under ten minutes.

03 · Routines — live demo
Walks through the new Routines surface in the Claude Code app. Clicks New routine, names it Weekly newsletter, points it at changelog.md, sets Mondays at 6AM, picks a folder. Compares the feature to OpenCLAW crons.

04 · Routines — three trigger types
Slide breakdown: cron, HTTP webhook, GitHub webhook. Connectors (Slack, GitHub) come along. Runs local or in the cloud. Example use case: weekly PRD audit posted to team channel.

05 · Outcomes — rubric-graded agents
Anthropic's answer to OpenAI Codex 'slash goal'. Define what done looks like via a markdown rubric, the agent self-grades and iterates up to 20 times. Walks through a ChatPRD example: a rubric-graded 'Ship-ready PRD' mode.

06 · Multi-agent — coordinator + delegates
API lets you define a multi-agent team that shares one container and file system, up to 25 concurrent. Explicit orchestrator and sub-agent hierarchy, per-agent toolsets. Example: a PRD orchestrator with strategy, critic, and eng-review sub-agents working in parallel.

07 · Dreams — agent memory primitive
Memory framed as just writing markdown to disk. Most harnesses do it on a session-close hook. Dreams is different — it's an explicit API call to take N past sessions, review them, and surface what to commit to long-term memory. In research preview; she doesn't have access yet. Side-note about wanting a 'forgetting' counterpart.

08 · Usage limits doubled
Five-hour limits doubled across Pro, Max, Team, and seat-based Enterprise. Peak hours going away for Pro and Max. Opus API rate limits going up.

09 · Recap + SpaceX aside
Other stuff she didn't cover (data centers in space, SpaceX partnership). Re-summarizes the five practical takeaways. Lands on: none of it was mind-blowing, but it's all practical, and Anthropic is positioning as the agent platform of choice.

10 · Outro + show CTA
Bye + standard pod outro: like, subscribe, comment, find on Apple Podcasts / Spotify, see all episodes at howiaipod.com.
Lines worth screenshotting.
- Claude Code's Routines feature lets you trigger agent tasks on a cron, webhook, or GitHub event — without writing any infrastructure code.
- Outcomes let you define what done looks like as a markdown rubric, then the agent iterates up to 20 times until it satisfies the grading criteria.
- A 25-agent multi-agent framework with an orchestrator and explicit sub-agent hierarchy is now callable via a single API — no custom orchestration code required.
- Dreams is a memory primitive: you call it against a list of past sessions and it decides what to commit to long-term agent memory, the same way sleep consolidates human memory.
- Agent forgetting is as important as agent memory — nobody is building the purge equivalent yet, but they will need to.
- Peak usage hours are being removed for Claude Pro and Max plans, ending the most frustrating friction point for serious builders.
- Scheduling a weekly newsletter draft from a changelog.md is a routine that took one configuration form and zero code — something that previously required a cron job and custom prompting infrastructure.
- A strategy agent, a critic agent, and a technical review agent all working in parallel on the same file system is now a native primitive, not a custom build.
- Rubric-graded outcomes shift agent performance from 'did it complete?' to 'did it meet the success criteria?' — a fundamentally different quality bar.
- Anthropic's positioning is becoming clearer: they want to be the agent platform of choice for builders, not just the model provider underneath other platforms.
Steal the format.
A confident, calm 'I was there, here's what shipped' field report beats a hype reel every time — especially for changelog-style content.
- Set the contract in the first 30 seconds: number of items + time cap. 'Five things, under ten minutes' is a promise the viewer can hold you to — and is the reason they don't bounce.
- Use a split-screen frame: bold slide on the left, your face PiP on the right. Costs nothing in shoot time, doubles the perceived production value, and lets you read code on screen without looking like a screen-share.
- Per item, hit the same three beats: what it is, how it works, what you'd build with it. Repetition is the format — viewers feel the rhythm and stay.
- Pair every abstract primitive with one concrete demo. She tied Routines to a weekly-newsletter cron she actually built on camera. Outcomes got a 'ship-ready PRD' example. The viewer always has somewhere to land.
- End on a hot-take, not a recap. 'None of this was mind-blowing, but it's all practical' lands a thesis viewers can repeat — way stickier than 'so those were the five things'.
- Don't oversell what you don't have access to. She flagged Dreams as research-preview and admitted she hasn't touched it. That credibility carries the rest of the video.
Terms worth knowing.
- Claude Routines
- A Claude Code feature that lets users schedule automated agent tasks to run on a cron schedule, via HTTP webhook, or triggered by a GitHub event — without manually starting the session each time.
- Cron job
- A scheduled task in software that runs automatically at specified times or intervals (e.g., every Monday at 6am), commonly used to automate recurring processes.
- Rubric-graded outcomes
- A Claude evaluation method where the AI is given a scoring rubric and assesses its own output quality against defined criteria, enabling automated quality checks without human review.
- Claude Managed Agents
- Anthropic's API-level framework for building and orchestrating multi-agent pipelines, where Claude models can spawn sub-agents, delegate tasks, and coordinate work programmatically.
- Dreams (memory primitive)
- A research-preview memory feature in Claude that allows agents to consolidate and store important information from past sessions for long-term recall across separate runs.
- Webhook
- An HTTP callback — a URL that receives an automated notification when a specific event occurs in another system, used to trigger workflows between connected services.
- GitHub webhook
- A webhook configured in a GitHub repository that fires when specific events happen — like a push or pull request — enabling automated workflows to start in response to code changes.
- Tech debt
- Accumulated shortcuts, workarounds, or deferred improvements in a codebase that increase future development cost, typically invisible to end users but meaningful to engineering teams.
- Multi-agent framework
- A software architecture where multiple AI agents work in parallel or in sequence — each handling a specific role — coordinated by an orchestrating system to complete complex tasks.
- Usage limits (Claude)
- Caps on the number of messages or tokens a user can send to Claude within a rolling time period, enforced by subscription tier to manage compute costs.
Things they pointed at.
Lines you could clip.
“Define a rubric, give the agent the task, let it bang its head against that at least 20 times till it gets it right.”
“I think we think a lot about agent memory, but not a lot about agent forgetting.”
“This is what we do when we dream. We go through our day, we review it silently, and then we decide what to commit to memory.”
“None of this was mind blowing, but I think it's all really practical.”
“Anthropic is trying to be the agent platform of choice for builders.”
Word for word.
Don't just watch it. Burn it in.
See every word as it's spoken — crank it to 2× and still catch all of it. The same dual-channel trick behind Amazon's Kindle + Audible.
The bait, then the rug-pull.
Claire Vaux opens cold from her studio: she just got back from Code with Claude — Anthropic's first developer event — and has five things to show you in under ten minutes. No drama, no hype reel; she just sits down and starts naming what shipped, what's research preview, and what she'd actually build with each. The title screams power-up, but the video is closer to a calm field report from someone who reads changelogs for fun.
Named ideas worth stealing.
Three trigger types for Routines
- cron (schedule)
- HTTP webhook
- GitHub webhook
Routines in Claude Code can be fired three ways and run either locally on your laptop or in the cloud, with connectors (Slack, GitHub) attached.
Outcomes loop (Anthropic's Ralph-loop equivalent)
- markdown rubric
- grader
- up to 20 iterations
- result: satisfied | needs_revision | max_reached
Anchor an agent on a rubric, let a grader judge each iteration against that rubric, loop up to 20 times until the agent self-grades as satisfied. Anthropic's flavor of OpenAI Codex's slash-goal feature.
Coordinator + delegates pattern
- one orchestrator agent
- up to 25 sub-agents
- shared filesystem/container
- per-agent toolset
Programmatic multi-agent team where one master agent drives work and sub-agents each have their own tools but share state. Demo: PRD orchestrator with strategy, critic, and eng-review sub-agents.
Dreams memory loop
- take N past sessions
- review them asynchronously
- surface important memories
- write to disk
An explicit primitive to consolidate agent memory on demand rather than on every session-close hook. Async, runs up to 100 sessions per dream, watchable in real time.
How they asked for the click.
“If you enjoyed the show, please like and subscribe here on YouTube or even better, leave us a comment with your thoughts. You can also find this podcast on Apple Podcasts, Spotify, or your favorite podcast app.”
Soft, post-roll, after she's already said 'Bye' to camera. Standard podcast outro pattern — no hard pitch, just menu of where else to find the show. Mentions howiaipod.com at the very end.



































































