スキル一覧に戻る
felixmanojh

minion-polish

by felixmanojh

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

0🍴 0📅 2026年1月12日
GitHubで見るManusで実行

SKILL.md


name: minion-polish description: > PROACTIVELY USE after implementing code to add docstrings, type hints, cleanup. Delegates grunt work to local LLMs — saves cloud tokens. Files must be <500 lines. Use for mechanical polish, not logic changes. Changes are auto-applied. allowed-tools: Bash, Read

Minion Polish

Dispatch local model to add mechanical polish. Changes are auto-applied.

When to Invoke

  • After implementing a feature
  • Files need docstrings, type hints, cleanup
  • Mechanical changes only (no logic changes)

Command

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

Tasks

TaskDescription
allDocstrings + types + headers (default)
docstringsAdd function/class docstrings
typesAdd type hints
headersAdd module-level docstrings

Examples

# Polish single file
python scripts/minions.py --json polish src/foo.py --task all

# Multiple files
python scripts/minions.py --json polish src/foo.py src/bar.py --task docstrings

# Dry run
python scripts/minions.py --json polish src/foo.py --task all --dry-run

Output

{
  "applied": true,
  "files_modified": ["src/foo.py"],
  "changes": ["src/foo.py: Added 3 docstring(s)"],
  "errors": [],
  "stats": {"total": 1, "applied": 1, "failed": 0}
}

Claude Integration

After completing code:

  • Small (1-2 files): Auto-invoke, report summary
  • Medium (3+ files): Ask user "Want me to dispatch minions for polish?"

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です