# 3 Founders Shipped Claude Managed Agents to Production in 2 Weeks. Here's the Playbook

> Source: <https://www.the-ai-corner.com/p/managed-ai-agents-playbook>
> Published: 2026-09-24 15:06:48+00:00

Demos take a weekend now. Production still takes a fight.

Claude Managed Agents hit the scene saying their bots could run by themselves, no babysitting needed.

I called three founders who bought in. They launched: meeting briefs that check their own work, a dashboard tracking a whole squad of sales agents, and an agent that reads customer code and sends pull requests. All this, live in under two weeks.

Here’s the real story: the late nights, the tight deadlines, and the parts no one puts on a slide. This is what happens when you have to deliver for actual users.

Here’s how each one did it.

*together with Oracle:*

Bots are forgetful.

 **Oracle’s crew came up with a fix and spelled it out in a [playbook](https://fandf.co/4yeXV7i):**

They gave agents [four kinds of memory](https://fandf.co/4yeXV7i): working, semantic, episodic, and procedural. In their tests, agents scored almost 94% on LongMemEval and used a tenth of the tokens after 80 turns.

▫️ Plays nice with any framework: Claude Agent SDK, LangGraph, OpenAI Agent SDK. Every one has a notebook to get you started[.](https://github.com/oracle-devrel/oracle-ai-developer-hub/tree/main/notebooks/agent_memory)

▫️ One client and one pip install: oracleagentmemory.

▫️ Includes audit, tenant isolation, and ways to wipe data if you want.

Now, the founders. Same skeleton each time: what shipped, the clock, where it nearly broke.

### 1. One Wrong Name Nearly Shipped, and It Rebuilt the Product

Saj’s team builds a meeting assistant. Core feature: briefs. Who you’re meeting, what you agreed to last time.

Then one day it pulled the wrong LinkedIn profile for a real meeting.

“If you’re talking to a person named Tom and it gives you information about the wrong Tom, it’s actually almost destructive because the moment you end up in the meeting, you click to learn more about them and you end up confused.”

“Almost destructive” is the right phrase. A wrong name attached to genuine context beats an empty screen at one thing only: sending the user into a meeting armed with confident nonsense.

The fix: a second agent that grades every brief before a user sees it. Fail the grade, show nothing. Silence over confident error.

That’s the design principle behind [outcomes](https://theaicorner1.substack.com/p/ai-agent-reliability-playbook), and I’d apply it anywhere your system touches someone’s identity.

## 2. A Sales Agent Fleet, Shipped in 2 Weeks (Not a Typo)

Mahir’s team went the opposite direction on scale. One agent per account, [always running](https://theaicorner1.substack.com/p/brian-armstrong-coinbase-1200-ai-agents-operating-model-2026), each accumulating memory on its own account for as long as the relationship lasts.

Except reps rarely think in single accounts. A rep with 100 needs today’s 5. A manager needs next quarter. So a cross-account layer grew on top of the fleet: Watchtower.

“We spun that up on managed agents in about 2 weeks. It’s now one of our most used features, and it powers a lot of other parts of the product.”

Two weeks. I asked twice.

Build the [narrow agent](https://theaicorner1.substack.com/p/build-ai-agents-without-code) first. The cross-cutting need will introduce itself.

Planning to run the same math on your own product, start here:

▫️ [How to Build Three AI Agents Without Writing Code](https://theaicorner1.substack.com/p/build-ai-agents-without-code)

▫️ [How to Build Your First AI Agent in a Day](https://www.the-ai-corner.com/p/how-to-build-your-first-ai-agent-2026)

▫️ [Yang Zhilin’s Agent Playbook: 10 Bets Founders Should Steal](https://theaicorner1.substack.com/p/yang-zhilin-kimi-agent-playbook-10-takeaways-2026)

## 3. Why “Independent” Is the Whole Point

Back to Saj’s grader, because the load-bearing detail is easy to miss.

“The fully independent clean context window means that you can assess the quality of the work as part of deploying it.”

The grader gets a rubric (right person, right context, readable structure) and its own [context window](https://theaicorner1.substack.com/p/context-engineering-guide-2026). It never sees how the answer got made.

An agent reviewing its own trace will pass itself every time. Hand the grade to a stranger and the rubric starts meaning something.

## 4. Two Kinds of Memory, Learned the Expensive Way

Watchtower forced a distinction Mahir’s team now treats as gospel.

“There’s memory on an account and across accounts. There’s memory on a user level and an org level.”

Account memory is deep and specific: one customer’s history, tracked forever, [tuned to stay stable](https://theaicorner1.substack.com/p/self-evolving-agent-stack-playbooks-memory-skills-2026). [Cross-account memory](https://www.the-ai-corner.com/p/ai-agent-memory-context-as-topology-playbook-2026) is different: how this org defines a “qualified” deal, what its messy internal fields mean. Closer to infrastructure than to knowledge.

Mix the two and everything works fine for months. Then three engineers spend a quarter untangling it.

## 5. What Actually Needs a Sandbox

Todd’s product should make you a little nervous. It snapshots a customer’s codebase, compares it against the live application, and proposes fixes, often as a PR pushed straight to a live repo.

“You can imagine that people interacting with an agent, and you get access to someone’s source code, you can potentially get secrets.”

A code snapshot carries credentials, internal logic, things the customer never meant to hand anyone. Every tool that agent touches has to be scoped with that in mind from day one.

Todd’s team looked at building that [isolation](https://www.the-ai-corner.com/p/give-your-agent-its-own-computer-2026) themselves and passed. Getting it right immediately mattered more than owning it. Unheroic, correct.

## 6. Build vs. Buy: 3 Founders, 1 Test

Three founders, three products. I expected three answers and got one.

“It really comes back to if you don’t need to roll your own infrastructure for it because it’s not the thing that defines the quality of what you’re building, choose to buy, and in the cases where it is, build it yourself.”

The test runs both directions. Saj: a voice-controlled assistant would need its own runtime, because there the runtime *is* the product. Briefs didn’t, so they bought that layer and spent the saved weeks on the feature. Todd came from the other side: homegrown solution, wall, proper bake-off against a managed option, then the rebuild decision.

Four questions before building anything yourself: control, cost, time, and (Todd’s addition) whether you’re still validating that the idea works at all.

Every founder at that table had rolled their own infrastructure once. Every one replaced it when it stopped being what made their product special.

## 7. Idea to 1,000x in a Few Weeks

The number that reframed the conversation for me: Saj’s briefs feature, self-grading included, took a day.

“It allowed us to build the first version of the feature in a day and then ramp up with like 100 to 1,000x scale up in the user base over the course of a few weeks.”

A day to working. A few weeks of dogfooding to 100-1,000x the users. Infrastructure untouched throughout. Watchtower ran a similar clock, with roughly one weekend of dogfooding wedged in the middle.

So the time went where it should: figuring out what users needed, testing against real usage, repeating. Once infrastructure is solved, speed is [iteration cycles](https://theaicorner1.substack.com/p/context-engineering-claude-code-playbook), never [headcount](https://www.thevccorner.com/p/ai-native-product-operating-model-2026).

## 8. The Eval Problem Nobody Has Solved

I pushed on evals. Every team admitted the same open wound.

“I don’t think we found a good way to eval given memory. A system that’s very stateful with this memory that is live.”

The early playbook is universal: trust your gut, dogfood internally, go systematic once it sticks. Dogfooding overfits to your own team; [eval sets from real customer queries](https://theaicorner1.substack.com/p/loop-engineering-masterclass-self-improving-ai-systems-2026) mostly cure that.

State is the part that stays broken. Live memory won’t hold still for a clean offline eval. Todd hits the same wall through MCP, where Slack tool calls carry state his team controls none of, so any eval suite drifts no matter how carefully built. Mocking the whole surface would work in theory. Nobody thought it was worth the engineering.

One founder gave me the industry’s actual state of the art in four words:

“Phase zero is vibes-based.”

If you’re building your own version of this loop, start here:

▫️ [Why Most Self-Improving AI Loops Fail, and How to Build One That Works](https://theaicorner1.substack.com/p/build-ai-loops-that-work)

▫️ [The Loop Engineering Masterclass on Goals, Evals, Memory, and Guardrails](https://theaicorner1.substack.com/p/loop-engineering-masterclass-self-improving-ai-systems-2026)

▫️ [How to 10x Any AI Skill Using Karpathy’s Autoresearch Method](https://www.the-ai-corner.com/p/karpathy-autoresearch-method)

## 9. New Models, New Failure Modes (And Yes, More Em Dashes)

My favorite detour of the whole conversation: upgrades as a source of new problems.

“The whole five series of models tends to produce writing in a way that has actually a lot more AI telltale signs than previous series of models.”

The playbook these teams landed on inverts the upgrade instinct. Skip chasing the last 1% of performance, each generation hands you that for free. Spend the energy catching failure modes specific to the new model, whether that’s [Claude Opus 5](https://theaicorner1.substack.com/p/claude-opus-5-playbook-benchmarks-pricing-effort-dial-2026), [Claude Fable 5](https://theaicorner1.substack.com/p/claude-fable-5-guide), or [Kimi K3](https://theaicorner1.substack.com/p/kimi-k3-playbook-benchmarks-cost-setup-2026), before a live user does.

A good eval suite catches most of it, on one condition: the prompts weren’t over-tuned to [the previous model family’s quirks](https://theaicorner1.substack.com/p/claude-code-playbook-boris-cherny). Otherwise you’re testing nostalgia.

New model, new tells.

## 10. The Cost Levers, and the Missing One

Every founder here worries about cost. Good.

“If we’re running things 24 hours in advance, we could probably save 50% to 75% on cost and make that possible.”

That’s Saj describing a batch mode that fits briefs perfectly, since they run 24 hours ahead anyway, and would [cut costs by more than half](https://www.the-ai-corner.com/p/ai-inference-engineering-playbook-2026). It mostly doesn’t exist yet. Mahir already splits by task instead: the agent coordinating a Watchtower search gets [frontier intelligence](https://theaicorner1.substack.com/p/claude-opus-5-playbook-benchmarks-pricing-effort-dial-2026), the agents fanning across 500 accounts run [cheap](https://theaicorner1.substack.com/p/best-github-repos-llm-performance-optimization), because fanning out is cheap work.

Today’s levers: effort settings, orchestration that separates cheap work from expensive, model selection, and that missing batch mode, worth roughly 2x when it lands.

All three founders gave me a version of the same advice. Be mindful, spend well, and save the fine-grained optimization for when the product has earned it. Cost work pays off the day it makes something buildable that wasn’t. Before that day it’s a well-organized distraction from shipping.

If cost is what keeps you up, reading order:

▫️ [Your AI Bill Is Mostly Wasted Tokens](https://www.the-ai-corner.com/p/llm-token-cost-optimization-playbook-2026)

▫️ [Why You’re Overpaying for Intelligence Right Now](https://theaicorner1.substack.com/p/you-are-overpaying-for-intelligence)

▫️ [The Inference Engineering Playbook for the 80% Cost Cut Most Teams Miss](https://www.the-ai-corner.com/p/ai-inference-engineering-playbook-2026)

## The Managed Agents Playbook

Buy the stack when it’s a commodity. Build it when it’s the product. Every founder at this table proved both halves inside the same year, and it’s the test [most teams skip before reaching for an agent at all](https://www.the-ai-corner.com/p/ai-workflow-vs-ai-agent-business-guide).

▫️ **Founders:** 2 of the 3 products here started as one feature and became a second product only when a cross-cutting need showed up on its own. Ship narrow. Let the second product earn its place.

▫️ **Investors:** Teams that bought the stack spent their first 2 weeks studying user behavior. Teams that built spent it on infrastructure. Ask which one a team actually did.

▫️ **Operators:** A second agent with its own context window, grading against a rubric, catches what self-review sails past. Copy the outcomes pattern before you ship anything agent-graded.

▫️ **Everyone else:** Nobody at this table has closed the eval gap for live-memory systems. Assume your evals are stale until proven otherwise.

### The 4 Principles to Steal

1. **Buy until infrastructure is the product.** Roll your own[stack](https://www.the-ai-corner.com/p/one-person-startup-operating-system-2026) when it’s the thing that makes your feature different, and only then.
2. **Grade with a second, independent agent.** The agent that did the work loses its vote on whether the work was right.
3. **Split memory by scope.** Account memory needs deep customization. Cross-account memory is infrastructure. Mixing them is a bill that arrives later, with interest.
4. **Hedge against new failure modes.** The last 1% improves on its own with every release. New failure modes wait for you to find them.

Speed compounds. 2 of these teams shipped in 2 weeks and both are still on that layer today. The teams still rolling their own infrastructure are doing it on purpose, for the one piece that’s supposed to feel different from everyone else’s.

If this saved you a rebuild, send it to one founder or investor who needs it.

3 founders, 3 products, 1 conversation. Watch it start to finish.

**Keep reading: Build vs. buy**

▫️ [The One-Person Business, Built on Claude](https://theaicorner1.substack.com/p/build-one-person-business-with-claude)

▫️ [Inside OpenAI: The Operating Model That Makes 2 Engineers Beat 200](https://www.thevccorner.com/p/ai-native-product-operating-model-2026)

▫️ [How Granola’s Growth Playbook Turned an MCP Pivot Into a Moat](https://www.thevccorner.com/p/granola-growth-playbook-unicorn-2026)

**Keep reading: Memory, evals, and reliability**

▫️ [Your AI Agent Is Going to Hallucinate at Scale](https://www.the-ai-corner.com/p/ai-agent-memory-context-as-topology-playbook-2026)

▫️ [The Head of Claude Code Stopped Prompting Claude. Most Builders Missed Why](https://www.the-ai-corner.com/p/loop-engineering-coding-agents-2026)

▫️ [Stop Blaming the Model, Fix the Architecture](https://theaicorner1.substack.com/p/ai-agent-reliability-playbook)

**Keep reading: Cost and the model layer**

▫️ [The Claude Opus 5 Playbook: Benchmarks, Pricing, Effort Dial](https://theaicorner1.substack.com/p/claude-opus-5-playbook-benchmarks-pricing-effort-dial-2026)

▫️ [The AI Code Review Checklist That Prevents the Next $1M Production Incident](https://www.the-ai-corner.com/p/ai-code-review-checklist-2026-failure-modes-prompts)

▫️ [Anthropic Deleted 80% of Claude Code’s Prompt. It Got Smarter](https://theaicorner1.substack.com/p/claude-code-playbook-boris-cherny)
