🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Supervising Agents

by @allenclove

Use when YOU are dispatching tasks to subagents (Agent tool, openclaw, parallel workers). You become the supervisor by default. This skill guides how to moni...

Versionv1.0.0
βš™οΈ Configuration

# In openclaw, load this skill
/load supervising-agents

Or set as default skill

export CLAW_SKILLS=supervising-agents

Usage Pattern

// 1. PREPARE
const task = {
  goal: "Create README.md with project overview",
  requirements: ["Project name", "Installation steps", "Usage example"],
  deliverables: ["README.md (min 50 lines)"],
  budget: 10, // minutes
  interval: 3 // minutes
};

// 2. DISPATCH with commitment lock const result = await Agent({ description: Supervising: ${task.goal}, prompt: buildPrompt(task) });

// 3. MONITOR - check every interval for (let i = 0; i < task.budget / task.interval; i++) { await sleep(task.interval * 60000); const output = checkOutput(task.deliverables); if (!output.exists) { await SendMessage(result.agentId, "Progress check: show me what you've created"); } }

// 4. VERIFY - don't trust, verify const file = await Read("README.md"); if (file.lines < 50) { // Reject, demand more }

// 5. REPORT to human


View on ClawHub
TERMINAL
clawhub install supervising-agents

πŸ§ͺ Use this skill with your agent

Most visitors already have an agent. Pick your environment, install or copy the workflow, then run the smoke-test prompt above.

πŸ” Can't find the right skill?

Search 60,000+ AI agent skills β€” free, no login needed.

Search Skills β†’