What problem does it solve? Containerized agents cannot reach local Ollama models by default, forcing all inference through the orchestrator model. This Skill wires a stdio-based MCP server into the NanoClaw agent-runner so the agent can offload work to local models and optionally manage the Ollama model library. ## Core Features & Use Cases - Local model inference tools: Exposes ollama_list_models and ollama_generate so the agent can list installed models and send prompts to them via the Ollama REST API. - Opt-in library management: Setting OLLAMA_ADMIN_TOOLS=true adds tools to pull, delete, inspect, and list running models. - Guided installation with wiring tests: Copies the MCP server source into the container tree, registers it in index.ts, forwards OLLAMA_HOST env vars, and validates both integration points with structural tests. - Use Case: You want your container agent to summarize long documents cheaply. After applying this Skill, the agent calls ollama_generate with a local model like gemma3:1b instead of consuming orchestrator tokens. ## Quick Start Ask the agent to add the Ollama tool so it can call local models, then confirm whether you want model-management tools enabled.