Dan Shipper on Agent-Native Architecture & Every's AI Apps

How to Become Agent-Native: Dan Shipper Built a Viral App Between Meetings. Then It Broke. Here's What He Learned.

The CEO of Every sat down with The Neuron to explain agent-native architecture, compound engineering, and what happened when his vibe-coded document editor went viral and fell apart.

Written By
Grant Harvey
Grant Harvey
Mar 27, 2026
13 minute read

Dan Shipper vibe-coded a collaborative document editor called Proof. He launched it for free. It went viral; thousands of documents were created in the first 48 hours. And then it started breaking, repeatedly, in ways he couldn't fix without help.

That story alone would be worth an episode. But the conversation we had with Dan on The Neuron LIVE went much further: into the frameworks he's built for how software actually gets made in 2026, how his 25-person company runs a parallel org chart of AI agents, and why his new product lets you skip all the hard setup with a single click.

Here's the full breakdown.


First up, the TL;DR

Dan Shipper, CEO of Every, joined The Neuron LIVE to walk through his journey building Proof, an agent-native document editor he vibe-coded and launched for free. It went viral immediately, with thousands of documents created in the first two days, but the underlying architecture had serious problems that kept taking the site down.

Here's what happened:

  • Dan built Proof using Codex and a collaborative editing library called YJS, but the AI skipped key best practices during the initial build
  • Bugs kept compounding because each fix was a "duct tape" patch rather than addressing the root architecture
  • Dan brought in an expert who stabilized the whole thing in a couple of days, also using Codex
  • Every launched Plus One, a hosted OpenClaw agent that lives in Slack and comes pre-loaded with every tool and skill they've built internally
  • Dan explained his agent-native architecture framework and the compound engineering process their team uses to ship products without writing code by hand

Why this matters: Dan's story is a live case study in how software gets built in 2026. The tools are powerful enough that a CEO can build and launch a production app in a week. But the failure modes are new, too. If you skip the planning phase, the AI will duct-tape its way into a mess that's architecturally incoherent. The lesson: an extra 30 seconds explaining what you want clearly can save you a week of sleepless nights.

Our take: The most interesting thing Dan said was that Codex "doesn't know" YJS best practices, even though it's a popular library. That should concern anyone building production software with AI. The planning step, making the agent research best practices before writing code, is where compound engineering earns its keep. Dan's Proof saga is the strongest real-world argument for that workflow we've seen.

Who is Dan Shipper?

Dan is the co-founder and CEO of Every, a media company that started as a daily AI newsletter and has grown into something much weirder and more ambitious. Every now runs five AI-powered products, a consulting arm, and what Dan described as a "parallel organizational chart" where every employee has their own AI agent that mirrors them.

The company has about 25 people now. Their engineers write virtually zero code by hand. Dan has become one of the most vocal proponents of what he calls "agent-native" software, and his frameworks for building in this era have been adopted well beyond his own company. Anthropic's VP of Product, Mike Krieger (co-founder of Instagram), told Dan he uses agent-native architecture as a skill in his own workflow.

Advertisement

The Every Product Suite

Before diving into frameworks, here's what Every actually ships. Dan walked through the full lineup during the opening of our conversation:

  • Cora: An AI agent for your email. It has a CLI (command-line interface, meaning other agents can use it), and they're launching a new inbox where you can manage everything through the agent.
  • Spiral: An AI ghostwriter with taste. It builds style guides from your writing samples and X posts, then writes in your voice. Dan's own agent, R2-C2, talks to Spiral agent-to-agent to draft tweets, getting far more context than a human-to-agent workflow ever could.
  • Monologue: A speech-to-text app similar to WhisperFlow. They're building a feature where activating it sends your voice directly to your Plus One like a walkie-talkie.
  • Sparkle: An AI file organizer for Mac. A new version with an internal agent is coming soon.
  • Proof: The agent-native document editor. Free, open source. More on this below.
  • Plus One: Hosted OpenClaw agents that live in Slack with one-click setup. Launched the day of our interview.

Dan said they're about 70% of the way to making everything agent-native, and they reset their product suite every three to six months to take advantage of new model capabilities.

OpenClaw and the Parallel Org Chart

The most surprising part of the conversation was how Every actually runs day-to-day. Every person in the company has their own OpenClaw agent (or Plus One) that functions as a kind of digital twin. Dan's is named R2-C2. It handles bug reports for Proof, has opinions on YouTube headlines, does his book notes, and is apparently really into quantum physics.

The key insight: because these agents are public (they live in Slack where teammates can see them), there's a natural trust-transfer mechanism. When Dan uses R2-C2 for bug triage and people see it working well, they start trusting R2-C2 for the same kinds of tasks. Dan compared it to having a kid: "You don't want your kid messing up because it reflects on you." That psychological incentive, caring about your agent's reputation, turns out to solve a lot of the trust problems that plague AI deployments.

People on the team even come to R2-C2 instead of Dan when they have a question about Proof. Instead of tagging the CEO into every bug report, they tag his agent. Dan admitted he was "tired of being tagged into bugs" and having an always-on first line of defense changed how he could spend his time.

Corey Noles, who co-hosts The Neuron LIVE, shared his own experience running an OpenClaw agent. He's set up cron jobs that check in at the end of each day, asking what's on for tomorrow, what he missed, and what's urgent. The fact that it talks to him through Telegram makes it feel like getting a message from a real person, and he's more likely to respond to it than to any task app he's ever tried.

Advertisement

The Proof Story: A Masterclass in What Can Go Wrong

This is the part of the conversation everyone should watch. Dan walked through the full arc of building Proof, from the initial build to the viral launch to the week of sleepless nights.

What Proof actually is: An agent-native document editor. Think Google Docs, but designed from the ground up for agents to be first-class users. When an agent writes a markdown file (a plan, a research document, a bug report), it can put it in Proof as a shareable web page. Humans and agents collaborate on the same document, and the editor tracks who wrote what so you know which sections were AI-generated and which a human specifically wanted in there.

What went wrong: Collaborative document editing is a solved problem; there are well-known libraries (YJS and Hocus Pocus) that handle the hard parts. Dan asked Codex to use them, and it did. But the AI hadn't read the best practices documentation. There are specific things you need to do at the very start of a project, specific ways data should flow, and specific rules about who gets to write data when. Codex just didn't know about them.

As bugs emerged, each fix was a local patch that didn't consider the whole system. Dan described it perfectly: the agent was solving problems in one place without zooming out to check whether its solutions were consistent with how it solved the same type of problem elsewhere. "That's what a good engineer would do," Dan said. "The AI just wasn't thinking like that."

The result: complexity spiraled. Each duct-tape fix kind of worked but kind of made things worse. The site kept going down. Dan was up all night for a week.

How he fixed it: Dan did something brave. He posted publicly that his thing was broken, and YJS experts came out of the woodwork offering to help. He sent them the repo and "ducked," fully expecting them to judge the code. Their response surprised him: "Yeah, this is actually very reasonable. It just lacks some amount of coherence."

He brought in a talented engineer who went back to first principles. That person used Codex to do the actual rewrite, ripping out the duct-tape patches and rebuilding the architecture properly. The whole stabilization took a couple of days.

The lesson Dan took from it: Two things. First, the "pirate and architect" model for early product teams. The pirate (Dan) goes as fast as possible, trying to find something that works and that people like. The architect comes in for a few hours a week to make sure the core is stable. You don't need a full-time architect in early product work. You need a pirate going hard and an architect tucking in the edges.

Second, and more practically: always have a buddy system. If you're vibe-coding a production app, someone else needs to know the codebase so you're not alone in the foxhole when things break at 2 AM.

Agent-Native Architecture, Explained

Dan coined the term "agent-native" in his foundational essay back in January, and he broke it down for our audience in the clearest terms we've heard.

Traditional software is a recipe. A programmer writes out every step ahead of time, and the code follows those steps exactly. Agent-native software replaces the recipe with a prompt. You build a nice UI with familiar buttons, but when you press a button, it sends a prompt to an agent, and the agent figures out how to get the job done.

Dan's shorthand: agent-native apps are "Claude Code in a trench coat." On the surface they look like normal software. Under the hood, it's an agent in a loop, using basic tools to accomplish whatever you asked for.

This has a few powerful effects:

  • Anything a user can do, an agent can do. If you can push a button that activates a prompt, the agent has to be able to do anything in the app. That creates parity between humans and agents.
  • Features are goals, not instructions. Developers name the result they want; the agent handles the how. This makes apps faster to build, fix, and change.
  • Emergent capabilities appear. Dan pointed to Claude Code as the canonical example: Anthropic built it for coding, but people started using it for everything (organizing files, planning schedules, managing workflows). That flexibility is what led to Cowork.

The key philosophical shift: traditional programmers want to predict what will happen. They build machines where they know how every part works. Agent-native software is the opposite. "You give it a basic set of general tools and let it run in a loop," Dan said, "and people will figure out how to use it for whatever their specific use cases are."

Dan also drew an important distinction about different types of agent-native. An app can be agent-native because it has an agent at its core (like Proof), or because all agents can use it natively (like Figma, which now has a CLI). Both count.

Advertisement

Compound Engineering: Making Each Feature Easier Than the Last

The compound engineering framework was developed by Dan and Kieran Klaassen, the GM of Cora at Every. Dan called Kieran "a true trailblazer" and one of the few senior engineers willing to give up manual coding before it was obvious it would work.

The core insight: in traditional engineering, each feature you build makes the next feature harder. The codebase grows in complexity, everything becomes interdependent, and you accumulate technical debt. In compound engineering, each feature makes the next feature easier.

How? A four-step loop:

  • Plan: The agent researches the codebase, its commit history, and internet best practices. It builds a really detailed plan before any code gets written. This is where 80% of the work happens.
  • Work: You kick off agents (often multiple, running in parallel) to execute the plan.
  • Review/Assess: You test, maybe manually, maybe with a fleet of agents. You figure out what went wrong.
  • Compound: You take everything you learned and push it back into step one. Every bug, every missed best practice, every lesson gets documented so future agents start with better context.

That's why it's called compounding. Each cycle makes the next one better. Dan explicitly connected this to the Proof fiasco: if he'd used compound engineering's planning step from the beginning, the agent would have researched YJS best practices before writing a single line of code, and the whole disaster probably wouldn't have happened.

Every has packaged this workflow into the compound engineering plugin for Claude Code (it also works with Codex, Gemini CLI, and others). It's free and open source.

Dan also made an important observation about why compound engineering works even outside of coding. The core principle is that getting models to think more, use more tokens, and do more research on your problem produces better results. The plugin is a structured way to make that happen, whether you're writing code, drafting documents, or planning a product launch.

"Surf the Models": Dan's Career Advice for the AI Era

Dan kept coming back to one phrase: "Surf the models." Every time a new model comes out, use it. Push it as far as it can go. His reasoning: no model is better than you at using itself, because it wasn't trained on itself. The people who find the new capabilities first are the ones who stay valuable.

He applied this to products, too. His philosophy of resetting every three to six months to take advantage of new model capabilities is what keeps Every's tools ahead of the curve. "You have to be willing to throw out your whole product or most of your product every 3 to 6 months as the models change," he said. "That kind of sucks, but also it's kind of awesome."

On whether models will make apps unnecessary: "Surf the models. Every time there's a new better model, you can build a new better product right on top of it that the model can't do by itself."

On prompt engineering: Dan doesn't think people will "study" prompt engineering as a discipline. Instead, everyone will know some basics plus deep expertise for their specific workflows. He compared it to writing: you write in all different circumstances, and you can get better at writing broadly, but what really matters is getting good at the specific things you're trying to accomplish.

Advertisement

The OpenAI vs. Anthropic Dynamic

One of the most candid segments was Dan's take on how OpenAI fell behind on the agent paradigm. He traced it to a specific decision: OpenAI kept splitting "regular knowledge work" (ChatGPT) from "professional pair programming" (Codex), while Anthropic built Claude Code as an agent with access to your whole computer from day one.

That meant Claude Code users discovered you could use it for everything, not just coding. ChatGPT, meanwhile, was "really a website and now it's a mobile app and now it has a desktop app," but it didn't have access to your computer or your life. Dan credits OpenAI for pivoting hard in the last two to three months, noting that their Super Bowl commercial was for Codex, not ChatGPT.

He also had a practical take on where each tool shines today. Dan mostly uses Codex for building, but reaches for Claude when he needs "empathy" (designing APIs that agents have to use) or better UI design. "Codex's design skills are a little rigid," he said. "If you're a front-end designer, you can get it to do exactly what you want. But if you're not, Claude gives you a better result on front end."

What We Didn't Get To

Grant mentioned two questions he wished he'd asked Dan: how and which model Dan uses in his writing process (Every publishes some of the highest-quality AI writing on the internet, and they've slowly embraced AI as part of it), and Dan's take on benchmarks.

Corey and Grant did dig into the benchmarks question after Dan left, with Corey arguing that benchmarks are "cooked" and the only benchmark that matters is a list of real tasks the AI can accomplish. "I don't want to know a 46 versus a 51," Corey said. "I want to see what it wrote versus what the other one wrote."

Key Takeaways

If you're building with AI agents in 2026, here are the practical lessons from this conversation:

  • Always make your agent research best practices during the planning phase. This is the single biggest lesson from the Proof story. Codex didn't know YJS best practices even though it's a popular library. An extra step in the plan mode asking "can you figure out all the best practices for this?" would have saved a week of pain.
  • Have a buddy. If you're vibe-coding something you plan to ship, someone else needs to understand the codebase well enough to help when things break.
  • Agent-native is a real paradigm, and it's worth understanding. Whether you're building software or just using AI tools, the shift from "code as recipe" to "prompt as goal" changes what's possible.
  • Compound engineering applies beyond code. The four-step loop (plan, work, review, compound) works for any workflow where you want the AI to do better work over time.
  • Surf the models. New model drops are opportunities. Push them as far as you can.
Advertisement

Watch the Full Episode

The full conversation with Dan Shipper runs about 75 minutes and covers everything above in much more detail, plus live audience Q&A and a post-interview discussion between Grant and Corey about Anthropic's shipping pace, the future of benchmarks, and AI regulation.

Related reading:

Every's product suite (all included in one subscription): Spiral | Sparkle | Cora | Monologue | Proof

Stay curious,

The Neuron Team


Grant Harvey

Grant Harvey is the Lead Writer of The Neuron, where he continues to lead the publication's daily coverage of AI news, tools, and trends.

The Neuron Logo

Don't fall behind on AI. Get the AI trends & tools you need to know. Join 700,000+ professionals from top companies like Microsoft, Apple, Salesforce and more.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.