CO
compound-v-parallel
Analyzes task dependencies and groups independent steps into parallel batches. Use when executing multi-step plans or performing research across multiple sources.
Install
mkdir -p .claude/skills/compound-v-parallel && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15240" && unzip -o skill.zip -d .claude/skills/compound-v-parallel && rm skill.zipInstalls to .claude/skills/compound-v-parallel
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Analyzes task dependencies and groups independent steps into parallel batches. Use when executing multi-step plans or performing research across multiple sources.162 chars✓ has a “when” trigger
About this skill
<!-- Auto-generated by promptherder from .promptherder/agent/skills/compound-v-parallel/SKILL.md — do not edit -->
Parallel Execution Skill
When to use this skill
- executing a multi-step plan with independent steps
- researching multiple topics or URLs simultaneously
- creating multiple independent files
- running multiple independent commands
Dependency analysis
- List all steps / tool calls needed.
- For each pair, check: does step B depend on output of step A?
- Same file? → sequential.
- B reads A's output? → sequential.
- No overlap? → parallel.
- Group independent steps into batches.
Examples of parallelizable work
- Multiple web searches for different topics
- Multiple file reads on different files
- Multiple file writes for unrelated files
- Multiple commands that don't depend on each other
When NOT to parallelize
- Steps that modify the same file
- Steps where output of one feeds into another
- Sequential build/test chains (build → test → deploy)