mulmoclaude: Skill for Claude Code

.claude/skills/setup-ollama-local/SKILL.md

setup-ollama-local is a skill for Claude Code from receptron/mulmoclaude. It costs 76 tokens per session (2,202 once invoked), scanned C, original, MIT.

A guide for connecting the standalone Claude Code command-line tool to Ollama running on a Mac. Ollama runs language models locally on your computer.

In plain words
What is it for?
Use it to install or verify Ollama, choose and download a suitable model, switch the command-line environment, and test the connection.
Why use it?
It explains the required setup and checks whether the local model and context size can support Claude Code.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

This is receptron/mulmoclaude's own configuration. It tells Claude Code how to work on mulmoclaude itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mulmoclaude configures →

Reuse

Borrowing it

Nothing to install: this file belongs to receptron/mulmoclaude. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/receptron/mulmoclaude/main/.claude/skills/setup-ollama-local/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/receptron/mulmoclaude

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for setup-ollama-local

README.md
[![agentmods](https://agentmods.dev/badge/skills/receptron/mulmoclaude/setup-ollama-local/github.svg)](https://agentmods.dev/skills/receptron/mulmoclaude/setup-ollama-local)
Your own site
<a href="https://agentmods.dev/skills/receptron/mulmoclaude/setup-ollama-local"><img src="https://agentmods.dev/badge/skills/receptron/mulmoclaude/setup-ollama-local/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for setup-ollama-local

Your own site · 80×15
<a href="https://agentmods.dev/skills/receptron/mulmoclaude/setup-ollama-local"><img src="https://agentmods.dev/badge/skills/receptron/mulmoclaude/setup-ollama-local.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,202 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Supply Chain · line 58
    Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
    Fix: Avoid downloading and executing remote scripts. Use trusted packages from PyPI/npm. If remote fetch is required, verify checksums and use HTTPS.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00076 $0.02202
Opus 5 $0.00038 $0.01101
Sonnet 5 $0.00015 $0.00440
Haiku 4.5 $0.00008 $0.00220

Measured 12d ago against content hash 683c717726b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

setup-ollama-local scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

- `curl -fsSL https://claude.ai/install.sh | sh`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s http://localhost:11434/api/tags | head -c 200
.claude/skills/setup-ollama-local/SKILL.md · 176 lines

How it starts

The opening of the file, as written. The whole thing — 176 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Setup Claude Code × Ollama (local LLM)

Scope / 適用範囲

This skill sets up the standalone claude CLI to talk to a local Ollama server. It is independent of MulmoClaude; MulmoClaude itself does not currently support Ollama (see plans/feat-mulmoclaude-ollama-support.md for a tentative plan).

このスキルは claude CLI 単体をローカルの Ollama サーバに接続するセットアップです。MulmoClaude とは独立しており、MulmoClaude 本体は現在 Ollama 接続をサポートしていません(実装案は plans/feat-mulmoclaude-ollama-support.md を参照)。

For detailed findings and pitfalls, see docs/tips/claude-code-ollama.md (Japanese) / docs/tips/claude-code-ollama.en.md (English).

Prerequisites / 前提知識

  • Ollama v0.14.0 or later is required (Anthropic Messages API compatibility was added in that version).
  • Claude Code sends roughly 50,000–57,000 tokens per request, so the model needs at least a 64k context window.
  • 3B-class small models effectively cannot drive Claude Code (no tool calling, broken templates).
  • Even on supported models, the first turn often takes 10+ minutes on a MacBook Air; subsequent turns benefit from KV cache and drop to 1–3 minutes.

Step 1: Verify / install Ollama

1-1. Check existing install

which ollama && ollama --version
  • Installed and v0.14.0+: proceed to 1-2.
  • Older version: brew upgrade ollama and then brew services restart ollama (Homebrew installs).
  • Not installed: suggest one of:

1-2. Verify the server is running

curl -s http://localhost:11434/api/tags | head -c 200
  • Got JSON back: server is up, go to Step 2.
  • Empty / connection refused: start it.
    • Official app: click the Ollama menu-bar icon.
    • Homebrew: brew services start ollama or ollama serve.

Step 2: Verify Claude Code

which claude && claude --version

Read the full file on GitHub · 176 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 176 lines · 76 tokens per session scan C 683c717726b3

Subscribe to this mod's changes

setup-ollama-local is a skill published in the GitHub repository receptron/mulmoclaude (347 stars, last pushed today), licensed MIT. It adds 76 tokens to every session and 2,202 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

google/skills · 85 tokens

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

google-cloud-solution-agentic-analytics-spark-knowledge-catalog

Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…

google/skills · 138 tokens

training-check

Interactively monitor training metrics from the current Codex session, periodically checking WandB or fallback logs for NaN, divergence, plateaus, and broken runs.

wanshuiyin/Auto-claude-code-research-in-sleep · 35 tokens

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens