Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add besoeasy/open-skills --skill integrate-zeroclaw-agentgit clone --depth 1 https://github.com/besoeasy/open-skillsWrote 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.
[](https://agentmods.dev/skills/besoeasy/open-skills/integrate-zeroclaw-agent)<a href="https://agentmods.dev/skills/besoeasy/open-skills/integrate-zeroclaw-agent"><img src="https://agentmods.dev/badge/skills/besoeasy/open-skills/integrate-zeroclaw-agent/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.
<a href="https://agentmods.dev/skills/besoeasy/open-skills/integrate-zeroclaw-agent"><img src="https://agentmods.dev/badge/skills/besoeasy/open-skills/integrate-zeroclaw-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00085 | $0.01616 |
| Opus 5 | $0.00043 | $0.00808 |
| Sonnet 5 | $0.00017 | $0.00323 |
| Haiku 4.5 | $0.00009 | $0.00162 |
Grade A, and why
integrate-zeroclaw-agent scanned grade A with 0 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 7d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Integrate ZeroClaw Agent
Set up ZeroClaw — an ultra-lightweight Rust AI agent runtime (<5 MB RAM, single binary) — connected to a local Ollama model and loaded with a domain playbook in its workspace AGENTS.md. Outcome: a running agent reachable via CLI/Telegram that executes tasks with the chosen local model.
Quick quality checklist
namematches folder name exactly (kebab-case)- Commands tested against zeroclaw 0.8.x installs
- No tokens, keys, or personal paths in examples
- Uses free/local tooling only (Ollama, brew/cargo)
When to use
- Use case 1: "Integrate/set up ZeroClaw with my local model"
- Use case 2: "Switch my ZeroClaw bot to a different Ollama model"
- Use case 3: "Give my ZeroClaw agent domain knowledge (trading, ops, etc.)"
Required tools / APIs
- ZeroClaw binary (
brew install zeroclaw, or build via its bootstrap script) - Ollama with at least one pulled model (
ollama pull qwen2.5-coder:7b)
# macOS/Linux with Homebrew
brew install zeroclaw
zeroclaw --version
# First-run guided setup (creates workspace + config)
zeroclaw quickstart
# Verify the runtime end-to-end
zeroclaw doctor
Skills
inspect_existing_install
Never assume a fresh install — audit first, then patch minimally.
# Where things live
zeroclaw status # shows config path, active provider+model, channels, service state
ls ~/.zeroclaw # config.toml, workspace/, state/
# Which providers/models are configured and healthy
zeroclaw doctor 2>&1 | grep -A5 "providers.models"
# Current provider->model mapping and channel wiring
grep -n -B2 -A4 "model_provider\|\[providers.models\|\[channels" ~/.zeroclaw/config.toml
Interpretation:
model_provider = "ollama.<id>"under[agents.<agent>]→ which provider the agent uses[providers.models.ollama.<id>] model = "..."→ the exact Ollama tag servedchannels = ["telegram.<id>"]→ messaging wiring;enabled = falsemeans dormant
switch_ollama_model
Point an existing agent at any locally pulled Ollama tag.
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.
- 7d ago First seen · 165 lines · 85 tokens per session scan A eab2bd3cf8fd
integrate-zeroclaw-agent is a skill published in the GitHub repository besoeasy/open-skills (132 stars, last pushed 7d ago), licensed MIT. It adds 85 tokens to every session and 1,616 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
expense-review-policy
Review invoices and contracts against accounts-payable policy before human approval.
skill-creator
Create, install, or update skills in the workspace. Use when (1) installing a skill from a URL or remote source, (2) creating a new skill from scratch, (3) updating or restructuring existing skills. Always use this skill for any skill installation or creation task.
powerpoint
Create designed, editable PowerPoint .pptx presentations with PptxGenJS. Use when the user asks to create, generate, update, or inspect a deck, slide deck, presentation, or .pptx file.
ax-agent-rlm
This skill helps an LLM generate correct AxAgent RLM/runtime code using @ax-llm/ax. Use when the user asks about RLM code execution, AxJSRuntime, contextFields, contextPolicy, liveRuntimeState, promptLevel, stage prompt controls, executorModelPolicy, maxRuntimeChars, agent.test(...), llmQuery(...), recursionOptions…
new-app
Scaffold a new Atomic Agents project from scratch — create the directory, pyproject.toml, env file, first agent, and a runnable entry point. Use when the user asks to start a new atomic-agents project from scratch, says "scaffold" / "new project" / "start from zero", or runs /atomic-agents:new-app.
ax-go-flow
Use when writing Go code with github.com/ax-llm/ax/packages/go for flows, nodes, program graphs, nested programs, dynamic options, caching, and optimizer components.