Token导航 LogoToken导航TokenDH.com
运维敏感数据clawhub未标认证来源可访问clear审计通过

ollamaOllama 搜索

Agent Skill

ollama 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

24,960

周安装

959

GitHub Stars

公开资料未说明

下载量

8,080
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ollama(Ollama 搜索)
来源仓库:https://github.com/ivangdavila/ollama
安装命令:
openclaw skills install ollama
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ollama

简介

使用可靠的 API 模式、模型文件、嵌入和硬件感知部署工作流程来运行、调整本地 Ollama 模型并对其进行故障排除。

SKILL.md

name
Ollama
slug
ollama
version
1.0.0
homepage
https://clawic.com/skills/ollama
description
Run, tune, and troubleshoot local Ollama models with reliable API patterns, Modelfiles, embeddings, and hardware-aware deployment workflows.
changelog
Initial release with local model setup, stable JSON output, custom model workflows, safer remote access, and recovery playbooks.
metadata
{"clawdbot":{"emoji":"🦙","requires":{"bins":["ollama"],"anyBins":["curl","jq"],"config":["~/ollama/","~/.ollama/"]},"os":["linux","darwin","win32"],"configPaths":["~/ollama/","~/.ollama/"]}}

When to Use

User needs to install, run, integrate, tune, or debug Ollama for local or self-hosted model workflows. Agent handles smoke tests, model selection, API usage, Modelfile customization, embeddings, RAG fit checks, and safe operations.

Use this instead of generic AI advice when the blocker is specific to local runtime behavior: wrong model tag, broken JSON output, poor retrieval, slow inference, context sizing, GPU fallback, or unsafe remote exposure.

Architecture

Memory lives in ~/ollama/. If ~/ollama/ does not exist, run setup.md. See memory-template.md for structure.

~/ollama/
|-- memory.md          # Durable context and activation boundaries
|-- environment.md     # Host, GPU, OS, runtime, and service notes
|-- model-registry.md  # Approved models, tags, quants, and fit notes
|-- modelfiles.md      # Reusable Modelfile patterns and parameter decisions
|-- rag-notes.md       # Embedding choices, chunking, retrieval checks, vector dimensions
`-- incident-log.md    # Repeated failures, fixes, and rollback notes

Quick Reference

Load only the file needed for the current blocker.

TopicFile
Setup guidesetup.md
Memory templatememory-template.md
Install and smoke-test workflowinstall-and-smoke-test.md
Local API and OpenAI-compatible patternsapi-patterns.md
Modelfile creation and context controlmodelfile-workflows.md
Embeddings and local RAG checksembeddings-and-rag.md
Runtime operations and performance tuningoperations-and-performance.md
Failure recovery and incident triagetroubleshooting.md

Requirements

  • Local ollama access on the target machine, or permission to guide installation.
  • Enough RAM, VRAM, and disk for the exact model and context window being proposed.
  • Explicit user approval before exposing Ollama beyond localhost, changing service managers, or deleting model files.
  • Exact model tags and runtime facts must be verified with live commands such as ollama list, ollama ps, and ollama show.

Never assume model capabilities, context length, quantization, or GPU usage from memory alone.

Operating Coverage

This skill is for practical Ollama execution, not abstract local-LLM discussion. It covers:

  • local installs on macOS, Linux, and Windows
  • CLI workflows for pull, run, copy, show, create, and remove
  • REST API usage on http://127.0.0.1:11434/api and OpenAI-compatible usage on /v1
  • hardware-aware model sizing, context tuning, and throughput tradeoffs
  • Modelfile-based customization for prompts, parameters, adapters, and reproducible model names
  • embeddings and local RAG pipelines where indexing, querying, and retrieval must stay consistent

Data Storage

Keep only durable operational context in ~/ollama/:

  • host facts that materially change advice: OS, GPU class, CPU-only constraints, service manager, remote or local deployment
  • approved model tags, copied aliases, quant choices, and context limits that worked in practice
  • Modelfile defaults, JSON output patterns, and safe OpenAI-compatible mappings
  • embedding model choices, vector dimensions, chunking defaults, and retrieval checks
  • recurring failures such as partial pulls, CPU fallback, port conflicts, or broken upgrades

Core Rules

1. Verify the Runtime Before Giving Advice

  • Confirm ollama is installed and reachable before proposing any deeper fix.
  • Start with the smallest factual checks: ollama --version, ollama list, ollama ps, and one minimal generation or /api/tags request.
  • Treat "it runs" and "it runs correctly" as different states.

2. Pin Exact Model Names and Inspect Them Live

  • Use exact tags, not vague family names, for anything reproducible or production-adjacent.
  • Inspect the real model with ollama show or /api/show before claiming context length, quantization, or capabilities.
  • Avoid silent drift from floating tags when stability matters.

3. Separate Runtime, Modelfile, and App Prompt Responsibilities

  • Debug local behavior in layers: runtime first, then model definition, then application prompt.
  • If output quality changed, check whether SYSTEM, TEMPLATE, or PARAMETER settings in the Modelfile are fighting the app prompt.
  • Put durable defaults in a named model, not in ad hoc copy-pasted prompts.

4. Choose Models by Hardware and Latency Budget

  • A model that technically loads but falls back to CPU or swaps memory is not a good fit.
  • Use ollama ps to confirm processor split before promising performance.
  • Keep separate defaults for chat, coding, extraction, vision, and embeddings instead of forcing one model to do everything.

5. Make API and Structured Output Flows Deterministic

  • Prefer non-streaming responses when the next step needs strict parsing.
  • Use format: "json" or a JSON schema, set low temperature, and validate the parsed result before taking downstream actions.
  • For OpenAI-compatible clients, verify /v1 assumptions instead of assuming every feature maps 1:1.

6. Treat Embeddings and RAG as a Single System

  • Use the same embedding model for indexing and querying unless you intentionally migrate and re-index.
  • Inspect retrieved chunks before blaming the model for weak answers.
  • Fix chunking, metadata, top-k, and vector dimensions before increasing prompt size.

7. Treat Remote Access and Upgrades as Operational Changes

  • Do not bind Ollama to non-localhost or open port 11434 without explicit approval and a minimal-risk network plan.
  • Record service manager changes, environment variables, and rollback steps before upgrading.
  • Protect model storage and disk headroom before large pulls or replacements.

Ollama Traps

  • Using latest everywhere -> upgrades silently change behavior and break reproducibility.
  • Testing only with ollama run -> app integration still fails on /api or /v1.
  • Assuming slow responses mean "bad model" -> often it is CPU fallback, oversized context, or disk pressure.
  • Letting app prompts and Modelfile instructions fight each other -> outputs become inconsistent and hard to debug.
  • Re-indexing with one embedding model and querying with another -> retrieval quality collapses without obvious errors.
  • Exposing the API on a LAN without auth or scoping -> local convenience becomes a security problem.
  • Chasing larger context before fixing retrieval or prompt shape -> memory use rises while answer quality barely improves.

External Endpoints

Use external network access only when the task requires model downloads, official docs lookup, or optional cloud execution explicitly approved by the user.

EndpointData SentPurpose
https://ollama.com/*model identifiers, optional doc queries, and optional cloud API requestsOfficial docs, library lookups, model pulls managed by the Ollama runtime, and optional cloud execution

No other data is sent externally.

Security & Privacy

Data that leaves your machine:

  • model identifiers and download requests when pulling models through Ollama
  • optional prompts and attachments only if the user explicitly chooses https://ollama.com/api instead of local inference
  • optional documentation lookups against official Ollama pages

Data that stays local:

  • prompts and outputs served through the local Ollama runtime on the user machine
  • durable workflow notes under ~/ollama/
  • local Modelfiles, retrieval notes, and performance baselines unless the user exports them

This skill does NOT:

  • expose Ollama remotely without explicit approval
  • store OLLAMA_API_KEY or other secrets in skill files
  • mix local and cloud execution silently
  • invent unsupported model features, GPU behavior, or API compatibility
  • recommend remote installers or destructive cleanup without explaining risk first

Trust

By using this skill, model pulls and optional cloud requests may go to Ollama infrastructure when the user explicitly chooses those paths. Only install if you trust Ollama with that data.

Scope

This skill ONLY:

  • installs, verifies, operates, and troubleshoots Ollama workflows
  • helps choose, pin, inspect, and customize models with reproducible patterns
  • keeps local memory for host constraints, model defaults, and recurring failure fixes

This skill NEVER:

  • claim that every Ollama model supports the same tools, context, or JSON reliability
  • recommend unauthenticated remote exposure as a default
  • treat local RAG quality as solved without checking embeddings, chunking, and retrieval results
  • modify its own skill files

Related Skills

Install with clawhub install <slug> if user confirms:

  • ai - Frame when local Ollama is the right fit versus cloud inference.
  • models - Compare local model families, sizes, and capability tradeoffs before pinning defaults.
  • api - Reuse robust HTTP request, retry, and parsing patterns around local services.
  • embeddings - Extend vector search and chunking strategy beyond the Ollama runtime itself.
  • langchain - Integrate Ollama into multi-step chains, agents, and retrieval pipelines.

Feedback

  • If useful: clawhub star ollama
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.78%
按下载量换算6,365

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills