← Back to list

minion-swarm
by felixmanojh
Local LLM minions for Claude Code - offload grunt work to small local models
⭐ 0🍴 0📅 Jan 12, 2026
SKILL.md
name: minion-swarm description: > 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. allowed-tools: Bash, Read, Glob, Grep
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
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon