maestro/skills/parallel-agents/SKILL.md
Parallel Agent Orchestration
npx skillsauth add scooter-lacroix/maestro parallel-agentsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When launching multiple agents in parallel, follow this pattern to avoid context bloat.
run_in_background: trueFor tasks where agents just need to confirm completion:
# Agent writes to shared status file
echo "COMPLETE: <task-name> - $(date)" >> .maestro/cache/<batch-name>-status.txt
>> to append (not > which overwrites)cat .maestro/cache/<batch-name>-status.txtFor tasks requiring detailed findings:
.maestro/cache/agents/<task-type>/<agent-id>/
├── output.md # Main findings
├── artifacts/ # Any generated files
└── status.txt # Completion confirmation
# Task: <TASK_NAME>
## Your Mission
<clear objective>
## Output
When done, write confirmation:
\`\`\`bash
echo "COMPLETE: <identifier> - $(date)" >> .maestro/cache/<batch>-status.txt
\`\`\`
Do NOT return large output. Complete work silently.
// Launch all in single message block (parallel)
Task({
description: "Task 1",
prompt: "...",
subagent_type: "general-purpose",
run_in_background: true
})
Task({
description: "Task 2",
prompt: "...",
subagent_type: "general-purpose",
run_in_background: true
})
// ... up to 15 parallel agents
# Check completion status
cat .maestro/cache/<batch>-status.txt
# Count completions
wc -l .maestro/cache/<batch>-status.txt
# Watch for updates
tail -f .maestro/cache/<batch>-status.txt
run_in_background: true always>>) not overwrite (>)# Status file
.maestro/cache/provider-backfill-status.txt
# Each agent appends on completion
echo "COMPLETE: anthropic - Thu Jan 2 12:34:56 2025" >> .maestro/cache/provider-backfill-status.txt
echo "COMPLETE: openai - Thu Jan 2 12:35:12 2025" >> .maestro/cache/provider-backfill-status.txt
Check progress:
cat .maestro/cache/provider-backfill-status.txt
# COMPLETE: anthropic - Thu Jan 2 12:34:56 2025
# COMPLETE: openai - Thu Jan 2 12:35:12 2025
tools
Wiring Verification
tools
Create and configure Maestro sub-agents with custom prompts, tools, and models
data-ai
Create and use Maestro slash commands - quick prompts, bash execution, file references
development
Upgrade any skill to v5 Hybrid format using decision theory + modal logic