claude-skill

claude-skill is a skill for Codex from feiskyer/openclaw-kubernetes. It costs 49 tokens per session (5,697 once invoked), scanned A, original, MIT.

A guide for running Claude Code, Anthropic's coding agent, in an automated, non-interactive workflow. It covers setup, worktree use, permissions, tool limits, model selection, continuation, and structured output.

In plain words
What is it for?
Automating Claude Code from the command line, choosing permission and tool settings, selecting a model, running one-shot tasks, continuing previous sessions, and collecting JSON or streaming results.
Why use it?
It helps run coding tasks without waiting for approval at every step while keeping the agent's available actions configurable. It also provides a repeatable workflow for starting, continuing, or reviewing agent work.

Skill for Codex

Written for Codex: runs codex exec. Also seen: positional $N argument; mentions Claude Code; mentions Codex.

Good fit Automating Claude Code from the command line, choosing permission and tool settings, selecting a model, running one-shot tasks, continuing previous sessions, and collecting JSON or streaming results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/feiskyer/openclaw-kubernetes/claude-skill
Install

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.

Any agent
npx skills add feiskyer/openclaw-kubernetes --skill claude-skill
Clone the repo
git clone --depth 1 https://github.com/feiskyer/openclaw-kubernetes

Made for: Codex.

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 claude-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/feiskyer/openclaw-kubernetes/claude-skill/github.svg)](https://agentmods.dev/skills/feiskyer/openclaw-kubernetes/claude-skill)
Your own site
<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.

agentmods 80×15 button for claude-skill

Your own site · 80×15
<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>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,697 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00049 $0.05697
Opus 5 $0.00024 $0.02848
Sonnet 5 $0.00010 $0.01139
Haiku 4.5 $0.00005 $0.00570

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

Security

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.

skills/claude-skill/SKILL.md · 571 lines

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)

Read the full file on GitHub · 571 lines

Files

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.

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. 10d ago First seen · 571 lines · 49 tokens per session scan A 3d369f63b0db

Subscribe to this mod's changes

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.

Related

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-ai/unbrowse · 60 tokens

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-ai/unbrowse · 60 tokens

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…

ZeroPointRepo/youtube-skills · 78 tokens

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior. 4-phase root cause investigation — NO fixes without understanding the problem first.

moltis-org/moltis · 33 tokens

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.

moltis-org/moltis · 48 tokens

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.

moltis-org/moltis · 75 tokens