Dave Blondon's multi-model AI coding setup (as demonstrated on Moonshots)
Dave runs Claude Code on the left side of his workspace and keeps Cursor open on the right with about 50 agent conversations running simultaneously, each assigned a narrow role. He learned over time that giving each agent minimal context prevents context-window pollution. For every project, he starts with a ‘plan for a plan’ document: a short spec that is then processed by Claude 4.7 Opus Max and cross-checked by Gemini 3 to create a full development plan in a fixed format he calls a ‘plan mission.’ The orchestration happens on EC2 so that if his laptop sleeps or crashes, the process continues in the cloud. By default the EC2 orchestrator calls Claude 4.7 Opus, but it can invoke any model with an API. The wildcard is Kimi K2.6, which runs on Fireworks; it’s about nine times cheaper and useful for code injection tasks, though others should evaluate its security profile. He noted that producing a fully functional GUI application costs roughly $8–10 of total compute.
Separating planning from execution: a smaller plan-for-plan document is cheaply refined by several top models, yielding a comprehensive blueprint; executing tasks in parallel across dedicated agents under a cloud orchestrator keeps each agent’s context window focused, improving output quality. Using different models hedges against the weaknesses of any one provider.
Dave says: ‘I have Claude Code on the left side over here, I’ve got cursor which I’ve used since it came out on the right… I’ve got about 50 agents right now in cursor. I learned over time not to treat them like people… they work much better if you give them the minimal context to do their job so you’re not overloading the context window.’ He also stated ‘the cost to write a full-blown GUI that does something really functional… it’s about eight or 10 bucks of compute.’
I learned over time not to treat them like people… they work much better if you give them the minimal context to do their job so you’re not overloading the context window.

