bmad-parallel
Installation
SKILL.md
BMAD Parallel Executor
I automatically detect when a BMAD story has parallel-eligible tasks and offer to spawn agents.
Activation
I activate when:
/dev-storycommand completes- User explicitly requests story parallelization
- A story file is updated with new tasks
Detection Logic
def should_parallelize(story_file):
tasks = parse_tasks(story_file)
parallel_tasks = [t for t in tasks if is_parallel(t)]
return len(parallel_tasks) >= 3