Manage a local or remote Ollama instance from Claude Code — list models, pull, switch, status
Send a prompt to the configured Ollama model and return the response. Use this skill to delegate inference to Ollama instead of Claude.
List installed Ollama models with size and modification date. Reads host from ~/.claude/ollama.json.
Pull an Ollama model by name. Streams download progress. Run /ollama-models first to see what's already installed.
Configure the Ollama plugin. Prompts for host URL, tests connection, lists models, sets default, writes ~/.claude/ollama.json.
Health check for the Ollama server. Reports version, model count, active model, and running processes.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Manage a local or remote Ollama instance from Claude Code. Skills call the Ollama REST API directly — they do not affect Claude Code's LLM provider or session environment.
/plugin install danielstewart77/ollama-claude-plugin
ollama serve/ollama-setup — enter your host URL, pick a default model| Skill | Description |
|---|---|
/ask-ollama | Send a prompt to the configured model, return its response |
/ollama-setup | Configure host URL + default model, test connection |
/ollama-models | List installed models with size and date |
/ollama-pull | Pull a model: /ollama-pull llama3.2 |
/ollama-status | Health check — version, model count, running processes |
/ollama-switch | Change active model: /ollama-switch mistral |
Written to ~/.claude/ollama.json by /ollama-setup:
{ "host": "http://localhost:11434", "model": "llama3.2" }
Edit directly or re-run /ollama-setup to change.
/ollama-pull llama3.2 # Meta Llama 3.2 (3B)
/ollama-pull llama3.2:latest # Meta Llama 3.2 (latest)
/ollama-pull mistral # Mistral 7B
/ollama-pull codellama:13b # Code Llama 13B
/ollama-pull qwen2.5-coder # Qwen 2.5 Coder
/ollama-pull nomic-embed-text # Embeddings model
Full library: https://ollama.com/library
npx claudepluginhub danielstewart77/ollama-claude-plugin --plugin ollamaHive Mind — skills, agents, and hooks for multi-mind AI orchestration, memory, development pipelines, and system operations.
SSH bridge for managing remote hosts from Claude Code — connect, exec commands, stream interactive shells, and install Hive Mind on new machines
Run AI models locally with Ollama - free alternative to OpenAI, Anthropic, and other paid LLM APIs. Zero-cost, privacy-first AI infrastructure.
When setting up local LLM inference without cloud APIs. When running GGUF models locally. When needing OpenAI-compatible API from a local model. When building offline/air-gapped AI tools. When troubleshooting local LLM server connections.
Delegate heavy code generation to a local LLM (Ollama / LM Studio). Save tokens, keep oversight.
Local-first resolver for Hugging Face models (GGUF, MLX, safetensors). The agent checks your own storage and any mounted drives before downloading anything.
Spawn any third-party LLM provider with an Anthropic-compatible API (e.g. DeepSeek, GLM, Kimi, Qwen, MiniMax) as real Claude Code agent-team teammates or one-shot subagents — driven exactly like native teammates. Your main session's own auth is untouched (OAuth subscription or API key, either works); provider workers bill the provider API key via apiKeyHelper (the key never enters env/argv/history). Requires the `cc-fleet` binary on PATH, installed separately.
A real-time directory of AI models that allows your AI agent to advise and pick the ideal LLM for the user's task.