Multi-Agent Orchestration in OpenClaw: Centralize Rules, Spawn Sub-Agents

An OpenClaw user shares their evolution from isolated per-agent workspaces to a centralized orchestration pattern. Initially, they created separate agents—each with its own workspace-*—for use cases like System Administrator, Family Agent, Corporate Assistant, and Sports League Management. When developing a skill (e.g., a team-roster skill for the Sports agent), they would chat directly with that agent.
The pain point: when a cross-cutting rule emerged (e.g., “always persist structured data like points scores or spending ledgers in .JSON files”), they had to manually copy the instruction into every agent’s workspace. The solution was to promote a single “main agent” as the orchestrator. Now, the main agent holds all architectural rules (like the .JSON convention) and spawns sub-agents on demand to build tools. For example, to build a spending tracker for the Corporate agent, the user describes requirements to the main agent, which then ensures the skill built in the sub-agent’s workspace follows the central rules—no more duplication.
The user admits this pattern “now seems obvious” in hindsight, but notes that initially they were unsure whether the recommended “main agent orchestrates sub agents” pattern applied to agent-to-agent building scenarios.
📖 Read the full source: r/openclaw
👀 See Also

How to Prevent CLAUDE.md Rot: Treat Rules Like Code
After 18 months of real-world use, one developer shares four disciplines to keep CLAUDE.md under 100 lines: use it as an index, separate rules from sources, audit on every PR, and delete more than you add.

Cut OpenClaw Boot Tokens 43% by Slimming Tool & Memory Files
Reduced boot tokens from ~9,457 to ~5,400 (43% drop) by converting TOOLS.md to an index, moving tool details to separate files, and implementing staged memory promotion.

Stop Claude's Em Dashes with One Line in Preferences or Claude.md
Add a specific sentence to your Claude.ai profile preferences or Claude.md to reduce em dashes by ~98%. This is a practical tweak tested by the community.

Spent $850 on OpenClaw in One Month? Fix Your Architecture, Not Your Model
A developer burned $850 in a month on OpenClaw multi-agent setup — with $350 gone in a single day. The fix wasn't a cheaper model — it was system design: strict context pruning, session resets, n8n for non-reasoning tasks, and a routing tier for cheap vs. strong models.