Claude-skill-registry-data minion-swarm

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/minion-swarm" ~/.claude/skills/majiayu000-claude-skill-registry-data-minion-swarm && rm -rf "$T"
manifest: data/minion-swarm/SKILL.md
source content

Minion Swarm

Parallel patches on multiple files.

When to Invoke

  • Same change needed on many files
  • Adding headers/comments across codebase
  • Batch mechanical operations

Command

source .venv/bin/activate && python scripts/minions.py --json swarm "<task>" <files...>

Examples

# Add header to multiple files
python scripts/minions.py --json swarm "Add # Minions header" src/a.py src/b.py src/c.py

# With more workers
python scripts/minions.py --json swarm "Add docstring" *.py --workers 5

Output

{
  "completed": [{"target": "src/a.py", "result": "success"}],
  "failed": [],
  "stats": {"completed": 3, "failed": 0, "total": 3}
}

Limits

  • Each file <500 lines
  • Mechanical changes only
  • Default 3 parallel workers