parallel-batch-executor
Installation
SKILL.md
Parallel Batch Executor
When to Use This Skill
✅ Use when:
- Processing multiple independent files or items
- Running the same operation across multiple repositories
- Batch operations that don't depend on each other
- Need significant performance improvements
- Operations are I/O bound rather than CPU bound
❌ Avoid when:
- Tasks have dependencies on each other
- Order of execution matters
- Shared resources require synchronization
- Single task that can't be parallelized