Install
openclaw skills install agent-collab-protocolStandardized agent collaboration protocol for multi-agent systems. Defines L0/L1/L2 hierarchy, task contracts, error handling, agent templates, and a new-agent creation checklist — ready to use with OpenClaw or any agent framework.
openclaw skills install agent-collab-protocolA complete protocol layer for building structured, multi-agent systems.
Provides the rules, templates, and operational procedures to ensure agents work together consistently.
| Component | Description |
|---|---|
| AGENT_COLLAB_PROTOCOL.md | Core protocol: L0/L1/L2 hierarchy, JSON task contracts, <agent-response> format, error handling, spawn vs send patterns |
| OPERATIONS.md | Operational guide: how to add/remove domains, file ownership matrix, protocol change propagation |
| NEW_AGENT_CHECKLIST.md | 8-step mandatory checklist for creating new sub-agents (no skip, no placeholder) |
| TEMPLATE_AGENTS.md | Standard AGENTS.md template with protocol implementation table |
| TEMPLATE_IDENTITY.md | Identity card template (Agent ID, layer, upstream/downstream, model) |
| TEMPLATE_SOUL.md | Values and red lines template (core belief, values, anti-patterns) |
| TEMPLATE_USER.md | Service object template (upstream, downstream consumers, service standards) |
| scaffold-domain.sh | Shell script to auto-generate a new domain workspace from templates |
npx clawhub install agent-collab-protocol
# Protocol files are in: skill/agent-collab-protocol/references/
# Copy to your protocol directory:
cp -r skill/agent-collab-protocol/references/ ~/.openclaw/protocol/
cd ~/.openclaw/protocol
bash scaffold-domain.sh fintech 金融产品经理 "fintech-analyzer:金融分析师"
Layer 0 (Orchestrator) Identify domain → dispatch to Manager → verify
↓ (natural language)
Layer 1 (Manager) Understand → decompose → dispatch → aggregate
↓ (JSON Task Package)
Layer 2 (Specialist) Execute → deliver via <agent-response>
<agent-response> blocksReference AGENT_COLLAB_PROTOCOL.md to implement protocol compliance in your agent runtime.
Use NEW_AGENT_CHECKLIST.md as a mandatory gating process — each team member must check off all 8 steps before a new agent is considered complete.
agent-collab-protocol/
├── SKILL.md ← This file
├── _meta.json ← Package metadata
└── references/
├── AGENT_COLLAB_PROTOCOL.md ← Core protocol (413 lines)
├── OPERATIONS.md ← Operational guide
├── NEW_AGENT_CHECKLIST.md ← Mandatory checklist (156 lines, 64 checks)
├── TEMPLATE_AGENTS.md ← AGENTS.md template
├── TEMPLATE_IDENTITY.md ← Identity card template
├── TEMPLATE_SOUL.md ← Values & red lines template
├── TEMPLATE_USER.md ← Service object template
└── scaffold-domain.sh ← Domain scaffolding script
| Version | Date | Changes |
|---|---|---|
| 1.0.0 | 2026-06-04 | Initial public release |