Top 5 · 2026-03-25 · source-backed
Stripe Shows Its Cards: Minions Blueprint Architecture Uses 400 Tools, Deploys ~15 Per Run, and Ships 1,300+ PRs Weekly
Story
Stripe published Part 2 of its Minions engineering blog, and it's the most detailed production agent architecture I've read from any company this year. The numbers alone are worth the read: 1,300+ weekly merged PRs from coding agents. But the architecture decisions matter more than the throughput.
Here's what caught me off guard. Before any LLM runs, a deterministic orchestrator prefetches all the context the agent will need. It scans Slack threads for links, pulls Jira tickets, and runs Sourcegraph MCP queries. Then it curates roughly 15 tools from a central "Toolshed" MCP server that contains 400+ available tools. The LLM never sees all 400. It gets the 15 that are relevant.
This is the opposite of the "give the agent everything and let it figure it out" approach I see in most open-source agent frameworks. Stripe's insight: more tools degrades performance. Targeted tool curation saves tokens and produces better results. LangChain's own data backs this up, showing accuracy jumps from 17% to 92% with progressive skill disclosure.
The Blueprints pattern alternates between deterministic nodes (guaranteed execution, no LLM calls, no token spend) and agentic loops (LLM reasoning for ambiguous decisions). Each minion runs in an isolated, pre-warmed devbox that spins up in 10 seconds, with zero internet access and zero production access. That isolation lets them run infinite parallel agents safely.
I've been building something similar on a smaller scale, using deterministic context prefetching before Claude Code sessions. The pattern works. You spend a few hundred milliseconds gathering context upfront and save minutes of agent wandering. The lesson from Stripe: the hybrid deterministic-plus-agentic pattern is how you build production agents that actually ship code at scale. Pure autonomy is a demo. Structured orchestration is production.
For builders: steal this pattern. Build a small tool catalog, curate per-task, and front-load your context gathering with deterministic code. Don't let your agent discover what it needs. Tell it.
Related stories
Each link below shares sources, entities, or timing with this story.
Shared entities / Shared topic
10 Skills of the Day
Both cover Build, Claude Code, Each, LangChain; overlapping topics (agent, code, context, tool).
Shared entities / Shared topic / Earlier coverage
Hot Projects & Repos
Both cover Claude Code, Jira, LLM, MCP; overlapping topics (agent, blueprint); earlier Claude Code coverage from 2026-03-04.
Shared entities / Shared topic / What happened next / Tension
Sebastian Raschka Says Claude Code's Real Secret Sauce Is the Harness, Not the Model. The Leaked Source Proves It.
Both cover Build, Claude Code, LLM; overlapping topics (agent, architecture, code, context, tool); picks up the Build thread on 2026-04-01.
Shared entities / Shared topic / What happened next
10 Skills of the Day
Both cover Build, Claude Code, LLM, MCP; overlapping topics (agent, code, context); picks up the Build thread on 2026-05-20.
Awesome Design MD Hits 71K Stars: Your Brand System as Agent Context
Both cover Claude Code, MCP, Stripe, Then; overlapping topics (agent, code, context); picks up the Claude Code thread on 2026-05-16.
OpenAI Open-Sources Symphony: Your Linear Board Is Now an Agent Factory
Both cover Claude Code, Minions, PRs, Stripe; overlapping topics (agent, architecture, code); picks up the Claude Code thread on 2026-05-07.
Salesforce Just Made Its Entire Platform Into Agent Tooling. No Browser Required.
Both cover Claude Code, MCP, Slack, Stripe; overlapping topics (agent, pattern, tool); picks up the Claude Code thread on 2026-04-22.
Cloudflare's Two-Tool MCP Pattern Cuts 1.17M Tokens to 1,000
Both cover LLM, MCP, Then; overlapping topics (agent, code, context, pattern, tool); picks up the LLM thread on 2026-04-30.
Source trail
Entities
Provenance
- Canonical issue
- Ramsay Research Agent — March 25, 2026
- AI generated
- no
- Story unit
- 2026-03-25-stripe-shows-its-cards-minions-blueprint-architecture-uses-400-tools-deploys-15-per-run-and-ship
- Labels
- source-backed, canonical briefing excerpt