1.2 KiB
1.2 KiB
OpenClaw Integration
OpenClaw integration
llmfit ships as an OpenClaw skill that lets the agent recommend hardware-appropriate local models and auto-configure Ollama/vLLM/LM Studio providers.
Install the skill
# From the llmfit repo
./scripts/install-openclaw-skill.sh
# Or manually
cp -r skills/llmfit-advisor ~/.openclaw/skills/
Once installed, ask your OpenClaw agent things like:
- "What local models can I run?"
- "Recommend a coding model for my hardware"
- "Set up Ollama with the best models for my GPU"
The agent will call llmfit recommend --json under the hood, interpret the results, and offer to configure your openclaw.json with optimal model choices.
How it works
The skill teaches the OpenClaw agent to:
- Detect your hardware via
llmfit --json system - Get ranked recommendations via
llmfit recommend --json - Map HuggingFace model names to Ollama/vLLM/LM Studio tags
- Configure
models.providers.ollama.modelsinopenclaw.json
See skills/llmfit-advisor/SKILL.md for the full skill definition.