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 feiskyer/openclaw-kubernetes --skill claude-skillgit clone --depth 1 https://github.com/feiskyer/openclaw-kubernetesWrote 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/feiskyer/openclaw-kubernetes/claude-skill)<a href="https://agentmods.dev/skills/feiskyer/openclaw-kubernetes/claude-skill"><img src="https://agentmods.dev/badge/skills/feiskyer/openclaw-kubernetes/claude-skill/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/feiskyer/openclaw-kubernetes/claude-skill"><img src="https://agentmods.dev/badge/skills/feiskyer/openclaw-kubernetes/claude-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00049 | $0.05697 |
| Opus 5 | $0.00024 | $0.02848 |
| Sonnet 5 | $0.00010 | $0.01139 |
| Haiku 4.5 | $0.00005 | $0.00570 |
Grade A, and why
claude-skill 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 10d 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 — 571 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude Code Agent Skill
Operate Claude Code as a managed coding agent — from worktree setup through PR merge.
Prerequisites
claude --version # Verify installed
# Install: npm install -g @anthropic-ai/claude-code
tmux -V # tmux required for full workflow
CLI Quick Reference
| Flag | Effect |
|---|---|
-p "prompt" |
Non-interactive one-shot, exits when done |
--dangerously-skip-permissions |
Skip all permission prompts (safe in containers/VMs) |
--permission-mode acceptEdits |
Auto-accept file edits, still prompt for shell commands |
--permission-mode plan |
Read-only analysis, no modifications |
--model <model> |
Model selection (e.g. claude-sonnet-4-6) |
--allowedTools "Bash,Read,Write,Edit" |
Restrict available tools |
--disallowedTools "Bash,Write" |
Block specific tools |
--append-system-prompt "..." |
Add custom instructions to system prompt |
--output-format json |
Structured JSON output with cost/duration metadata |
--output-format stream-json |
Streaming JSON (each message as it arrives) |
--continue / -c |
Continue most recent conversation |
--resume <id> / -r <id> |
Resume specific session by ID |
--mcp-config <file> |
Load MCP server configuration |
--verbose |
Enable verbose debug logging |
Execution Modes
Quick Mode — Small Tasks
For trivial fixes, one-file changes, or analysis. Use -p (non-interactive).
Output capture: Always redirect output to a log file so it's readable regardless
of PTY availability. Use --output-format stream-json for structured, parseable
progress events (each message arrives as a separate JSON line).
LOG_FILE="/tmp/claude-quick-${TASK_ID:-$$}.log"
# Via OpenClaw exec — use background=true + pty=true, NO hard timeout
# pty=true ensures claude CLI flushes output properly (no buffering issues)
# (hard timeout kills the process; instead we poll and extend)
# Redirect both stdout and stderr to log file via tee so output is always captured.
# In -p mode (non-interactive), | tee is safe — no TTY detection issues.
exec(command="claude -p 'fix the typo in README.md' --dangerously-skip-permissions --output-format stream-json 2>&1 | tee -a $LOG_FILE",
workdir="/path/to/project", background=true, pty=true)
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 10d ago First seen · 571 lines · 49 tokens per session scan A 3d369f63b0db
claude-skill is a skill published in the GitHub repository feiskyer/openclaw-kubernetes (24 stars, last pushed 2mo ago), licensed MIT. It adds 49 tokens to every session and 5,697 once invoked, about $0.0002 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-08-30.
Other skills, from other repositories
unbrowse
One-call web access for agents with cache-first API replay and browser capture on misses. Unbrowse passively learns first-party route DAGs while browsing, independently validates replay, and keeps remote sharing consented and fail-closed. Prefer it over WebFetch, curl, and browser loops.
unbrowse
One-call web access for agents with cache-first API replay and browser capture on misses. Unbrowse passively learns first-party route DAGs while browsing, independently validates replay, and keeps remote sharing consented and fail-closed. Prefer it over WebFetch, curl, and browser loops.
youtube-search
Use when the user wants to find YouTube content on any topic: searching for videos or channels, finding creators who cover a subject, discovering tutorials, talks, or expert discussions, or looking up a channel by name or handle. Also use proactively when the user wants to research a topic and YouTube is a good…
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior. 4-phase root cause investigation — NO fixes without understanding the problem first.
github-auth
Set up GitHub authentication for the agent using git (universally available) or the gh CLI. Covers HTTPS tokens, SSH keys, credential helpers, and gh auth — with a detection flow to pick the right method automatically.
ideation
Generate project ideas through creative constraints. Use when the user says 'I want to build something', 'give me a project idea', 'I'm bored', 'what should I make', 'inspire me', or any variant of 'I have tools but no direction'. Works for code, art, hardware, writing, tools, and anything that can be made.