Minion Setup

Verify Ollama is running and models are configured. Run to diagnose minion issues.

majiayu000 b33b1fe 2 files · 1.4 KB Updated 567 repo stars

File contents

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

majiayu000/claude-skill-registry-data/tree/main/data/minion-setup commit b33b1fecbf

Frequently asked questions

npx skillmds add majiayu000/minion-setup