Agent skill
subagent-batching
Patterns for launching and managing parallel subagents efficiently.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/subagent-batching
SKILL.md
Subagent Batching
Patterns for parallel subagent execution. Use your judgment on batch sizes based on task complexity.
When to Parallelize
Parallelize when:
- Processing multiple independent items (PRs, issues, files)
- Tasks have no dependencies between items
- Each item can succeed or fail independently
Don't parallelize when:
- Later items depend on earlier results
- Shared resources could cause conflicts
- You need to aggregate results before proceeding
Launch Pattern
Launch subagents in a single message with multiple Task tool calls. Don't launch sequentially.
# Correct: ONE message with multiple Task calls
Task 1: Process item A
Task 2: Process item B
Task 3: Process item C
# All launch simultaneously
Batching for Large Sets
For many items, batch them and validate between batches:
- Launch a batch of subagents in parallel (single message)
- Wait for all to complete using
TaskOutputwithblock=true - Validate results before proceeding
- Start next batch after validation
Subagent Prompts
Give each subagent focused context:
- Clear task description
- Relevant identifiers and locations
- Expected output format
- Success criteria
Error Handling
- One failure shouldn't block the rest
- Mark failed items for human review
- Continue processing remaining items
- Provide summary of successes and failures
Reporting
After completion, summarize:
- Total items processed
- Successes with brief descriptions
- Failures with reasons
- Any required follow-up actions
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?