Agent skill
minion-setup
Verify Ollama is running and models are configured. Run to diagnose minion issues.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/minion-setup
SKILL.md
Minion Setup
Verify environment and diagnose issues.
Quick Check
source .venv/bin/activate && python scripts/minions.py setup
Output
Checking Ollama...
✓ Ollama running with 4 models
- qwen2.5-coder:7b
- deepseek-coder:1.3b
Checking config...
✓ Config loaded: 3 roles
- implementer: qwen2.5-coder:7b (ctx: 32768)
- reviewer: deepseek-coder:1.3b (ctx: 16384)
✓ Setup OK
If Setup Fails
Ollama not running
ollama serve &
No models
ollama pull qwen2.5-coder:7b
Missing venv
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
Model Presets
| Preset | Models | Size |
|---|---|---|
| lite | qwen2.5-coder:7b | ~5GB |
| medium | qwen2.5-coder:7b + deepseek-coder:1.3b | ~6GB |
| large | qwen2.5-coder:14b + deepseek-coder:33b | ~35GB |
Change preset in llm_gc/config/models.yaml:
preset: medium
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?