Agent skill
minion-swarm
PROACTIVELY USE when same mechanical change is needed on multiple files (add headers, comments, etc.). Delegates parallel grunt work to local LLMs — saves cloud tokens. Runs in parallel for speed. Use instead of repetitive manual edits. Files must be <500 lines each.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/minion-swarm
SKILL.md
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
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?