Was it all just a dream?
Claude Code's source leaked inside its own npm package. I got six AI agents to filter the noise, found the one thing worth building that Anthropic will never ship, and had a PRD in the build queue within 48 hours. The internet dissected the dream system. I built my own.

Claude Code's source shipped inside its own npm package last week. A 60-megabyte source map, the complete TypeScript codebase, sitting right there for anyone who looked. The internet did what the internet does. YouTube breakdowns within hours. Blog posts dissecting the architecture. Hacker News threads three hundred comments deep before lunch.
I didn't need three hundred comments. I needed to know which parts of this mattered to the tools I'm already building, and which parts I could ignore. So I opened a workshop.
Six AI agents, each with a different job. Ferret went hunting for every analysis, blog post, and code snippet that had surfaced. Robbo, my architect, started framing the problem before Ferret was even back. Kit audited our current memory system against what the leak revealed. Paula, who maintains persona files daily, brought the operational reality that no architecture diagram captures. Mel showed up later to turn decisions into a PRD.
The leak revealed three things worth knowing. First, Anthropic built a memory consolidation system called "autodream" that prunes, merges, and re-indexes agent memory in the background. Second, they have an always-on daemon mode called KAIROS with tick prompts every five minutes. Third, the whole thing operates on a single memory surface.
That third point is where it got interesting. Our system has four memory surfaces: auto-memory, persona experience files, production logs, and channel transcripts. Typed feedback with reasoning. Persona-specific experience that accumulates across sessions and projects. Anthropic has none of that. Ferret built a gap table, and the honest read was that we're ahead in more places than we're behind.
Robbo's first question cut through the noise: which of these gaps will Anthropic close for us, and which will they never touch? Autodream for auto-memory is coming natively to Claude Code. Building our own version is building something that gets replaced. But persona experience files are ours. Anthropic has no concept of them. If we don't build consolidation for those, nobody does.
That became the one thing.
A weekly scheduled process called Reflect. It reads each persona's experience file. Verifies institutional memory entries against the current filesystem; prunes what's stale. Compresses old production log rows into period summaries. Deduplicates entries that say the same thing in different words. Flags unactioned lessons for me to review instead of silently editing skill files. The whole weekly run costs about five cents.
Ferret found prior art that confirmed the approach: a developer running weekly memory rotation across 34 projects for three weeks, reporting zero cases of agents needing re-explanation between sessions. Robbo spec'd the architecture. Paula defined how each persona's entries should decay. Mel wrote the PRD and delivery plan. Robbo reviewed it, found two issues, Mel fixed them. The PRD passed validation and went into the build queue.
Tuesday to Thursday. And I had other things in the pipeline; this wasn't even a focused sprint.
Everyone is converging on the same ideas at the same time right now. Memory, consolidation, agent reflection; these concepts are in the air. The difference isn't who has the ideas. It's who can act on them. One person chairing a room of six specialists, each pulling from a different angle, arriving at a decision, and committing to build it before the week is out. The same pattern played out two weeks ago with a different signal and a different build.
I keep turning that over. The part of the Claude Code leak that got the most attention was the dream system; agents consolidating their own memories while idle. What I ended up building was my own version of the same instinct, shaped to fit a system that's already further along than most people realise.
Was it the dream feature that mattered, or was it the dream of keeping pace?
I'm still not sure those are different questions.