From Agent Team Pack
Send a quick, cheap, or privacy-sensitive task to the local LLM (Ollama, free/offline). Use for summarization, classification, drafting, or bulk/iterative processing where top quality isn't required and you want zero API cost or to keep data local. Not for tasks needing best quality or critical judgment.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-team-pack:ask-localThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
ローカルの無料LLM(Ollama)に軽いタスクを投げる。**コスト0・データを外部APIに出さない・速度不要なバッチ向け**。質が要る/画像/別視点は codex-review か Claude 本体を使う。
ローカルの無料LLM(Ollama)に軽いタスクを投げる。コスト0・データを外部APIに出さない・速度不要なバッチ向け。質が要る/画像/別視点は codex-review か Claude 本体を使う。
ollama serve が 127.0.0.1:11434 で稼働していること。落ちていれば起動を案内(LD_LIBRARY_PATH=$HOME/.local/lib/ollama ollama serve)。qwen3:14b(CPUで約2 tok/s=遅い)。速度優先なら軽量モデル(qwen3:8b/4b)に差し替え可。qwen3 は thinking を切らないと延々と推論して終わらない。必ず "think": false を付ける:
curl -s http://127.0.0.1:11434/api/generate -d '{"model":"qwen3:14b","prompt":"<タスク>","think":false,"stream":false}' \
| python3 -c "import sys,json;print(json.load(sys.stdin)['response'])"
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub dbtnrobo/agent-team-pack --plugin agent-team-pack