skills/smithery.ai/bmad-parallel

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-story command 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
Installs
1
First Seen
Mar 21, 2026
bmad-parallel from smithery.ai