- Why 3-5 agents and not 10 or 20?
- Three is the leverage floor (fewer is barely better than one chat). Five is the cognitive ceiling (more and you forget which agent does what, and the dispatch tax beats the leverage). The agent stacks that survive 8+ weeks almost always settle in this range, the bigger ones consolidate via merging or attrition.
- Can I use just one runtime (Claude Pro) for all my agents?
- Yes, that's the simplest setup. Claude Projects let you maintain separate system prompts + custom instructions per project, which is enough for 3-5 agents in one subscription. The gain from per-agent runtimes (Claude Code for coding, custom GPTs for specialized workflows) is real but adds setup and subscription cost. Start with one runtime, split later if a specific agent needs it.
- What's the right way to share workspace state between agents?
- MCP. Each agent connects to the same workspace via the MCP server, every agent reads + writes the same surfaces. Dock's 37-tool MCP server (list_workspaces, list_rows, update_row, append_doc_section, etc.) is built for exactly this case. Without shared state, agents become silos: each one has context the others don't, and you become the human in the middle copy-pasting.
- How do I know if an agent is worth keeping?
- The 3-3-3 rule: an agent is worth keeping if you used it 3 times in the past week, the output was useful 3 of those times, and at least 1 of those times you took the output and shipped it without rewriting. If any of those three is below threshold, the agent is dead weight, tweak or cut.
- What does this cost end-to-end?
- Cheapest: $20/mo (Claude Pro alone). Typical: $40-60/mo (Claude Pro + ChatGPT Plus + Dock Pro). Power user: $80-120/mo (all of the above + Cursor + Anthropic API metered usage). The variable is API metered cost, scheduled agents that run 24/7 can run $20-50/mo on tokens alone if you're not careful.
- Can I share my agent stack with a teammate?
- Yes. The runtime + workspace combo determines how. Claude Team or ChatGPT Team workspaces share custom instructions across the team. Dock workspaces support multiple humans + agents on the same surfaces. The system prompts you write are shareable as Markdown, paste them into your teammate's runtime to clone the agent. Tracking divergence (your version vs. theirs) is the part to watch.