Back to list
felixmanojh

minion-patch

by felixmanojh

Local LLM minions for Claude Code - offload grunt work to small local models

0🍴 0📅 Jan 12, 2026

SKILL.md


name: minion-patch description: > Use when a mechanical code change needs review before applying. Delegates grunt work to local LLMs — saves cloud tokens. Generates patch for review. Use for changes that might need adjustment. Files must be <500 lines. allowed-tools: Bash, Read, Glob, Grep

Minion Patch

Generate a patch for manual review.

When to Invoke

  • Changes need careful review before applying
  • User wants to see diff before commit
  • Complex changes that might need adjustment

Command

source .venv/bin/activate && python scripts/minions.py --json patch "<task>" --target <file> --read <file>

Examples

# Generate patch
python scripts/minions.py --json patch "Add TODO comment at top" --target src/foo.py --read src/foo.py

# Multiple targets
python scripts/minions.py --json patch "Add header" --target src/a.py --target src/b.py --read src/a.py --read src/b.py

Output

{
  "task": "Add TODO comment",
  "patch_path": "sessions/20260112-123456.patch",
  "summary": "Added comment to foo.py"
}

Applying Patches

# Review
cat sessions/*.patch

# Dry-run
patch -p1 --dry-run < sessions/*.patch

# Apply
patch -p1 < sessions/*.patch

Limits

  • Files <500 lines (32K context)
  • Mechanical changes only
  • Always pass --read with target file

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