Building a 100x Business with AI — Vasuman (vas)
Vas left Meta and built an enterprise agent deployment company to $3M ARR. Four lessons from the trenches that map almost perfectly to how we’re building Ray Data Co. The through-line: agents aren’t magic — they’re systems engineering problems where context, architecture, and exception handling determine whether you get a $1M agent or a $0 agent.
Lesson 1: Context Is Everything
Most people chain tools and let the agent guess. It fails immediately. Three context dimensions matter:
- What the agent remembers — history across interactions
- How information flows — structured handoffs between steps
- What it knows about the domain — grounding in the specific problem space
Bad context looks like: agent calls the same tool repeatedly, contradicts earlier decisions, treats every task as brand new. Good context looks like: agent connects dots across information without explicit instructions.
“Context is often the biggest difference between an agent worth $1M and an agent worth $0.”
This is the same argument Block makes in their hierarchy-to-intelligence thesis — the “world model” IS context, and the company that accumulates it fastest wins. It’s also why we built the vault as a compounding knowledge layer indexed by QMD — every doc, every decision, every SOP becomes retrievable context for the next task. The compound engineering framing says the same thing: context that compounds is the moat, not the model.
See also talking to agents is all you need — the “context is the moat” connection runs through all of these.
Lesson 2: Agents Multiply Outcomes
Wrong framing: “This will do the work so we don’t have to hire someone.” Right framing: “This will let three people do what used to require fifteen.”
Agents eliminate the friction around human judgment, not the judgment itself. Companies getting real value aren’t removing humans — they realized most human work was overhead to get to the valuable part. Deploy faster by handling common cases well and routing the weird stuff to humans with full context.
This is our operating model in SOUL.md. The founder provides vision and judgment; I provide execution, delegation, and operational leverage. We’re not replacing the founder — we’re multiplying what one founder can do across multiple projects simultaneously. The AI Workforce pitch is this exact framing sold to enterprises: not “replace your analysts” but “let three analysts do what fifteen used to.”
Lesson 3: Memory and State (Architecture Patterns)
Three agent architectures, each with different tradeoffs:
- Solo agents — one job, start to finish. Easiest but context window fills up.
- Parallel agents — faster but coordination problems (contradictory conclusions, race conditions).
- Collaborative agents — handoff in sequence (triage → research → resolution). Handoffs are where things break.
Enterprise deployments are usually a mix of parallel + collaborative. These are architectural decisions, not implementation schematics.
This maps directly to our skills-as-building-blocks hierarchy: solo agents = skills (single function), parallel agents = agent teams (fan out, gather), collaborative agents = loops and sequential pipelines. The infrastructure decisions we made — LaunchAgent + tmux for dedicated instances, skills for reusable blocks, QMD for shared memory — are exactly the kind of architectural choices Vas is describing. The architecture determines the ceiling, not the prompt.
Lesson 4: Catch Exceptions
“Please for the love of every single person on this planet do not create another dashboard.”
Agents should catch problems when they happen and route them with full context. Don’t add missing receipts to a report — flag immediately, figure out who needs to provide what, block until resolved. Move with urgency, not weekly reviews.
This is how we run: morning/evening standups surface what matters, iMessage for urgent flags, Discord for everything else. The agent doesn’t wait for the founder to check a dashboard — it pushes the exception to the right channel with enough context to act.
Takeaways for Ray Data Co
- Context accumulation is our moat. The vault + QMD architecture is doing exactly what Vas describes — building the “world model” that makes every subsequent agent interaction more valuable.
- Multiply, don’t replace. The phdata pitch and our own operating model both work because we’re amplifying human judgment, not automating it away.
- Architecture > prompts. Our skills/loops/agent teams layering is the right mental model. Keep investing in clean handoffs and shared state.
- Push exceptions, don’t dashboard them. Already doing this via channel-based alerts. Keep it that way.