claude-supervision

claude-supervision is a skill for Claude Code from ltczding-gif/agent-supervision-skills. It costs 117 tokens per session (7,077 once invoked), scanned A, a copy of claude-supervision, MIT.

A skill for delegating substantive coding work to the local Claude Code command-line tool and independently checking the result afterward.

In plain words
What is it for?
It helps run Claude Code for implementation, multi-turn continuation, background work, structured results, and multi-agent code review, then inspect the reported work and artifacts.
Why use it?
It adds a review step between asking another coding agent to work and trusting its claims or generated files.

Skill for Claude Code

Written for Claude Code: SessionStart hook event. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is & '...\claude-task.ps1' -Workspace '.' -AgentsFile ./team/agents.json -Message '...'.

Good fit It helps run Claude Code for implementation, multi-turn continuation, background work, structured results, and multi-agent code review, then inspect the reported work and artifacts.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ltczding-gif/agent-supervision-skills
agentmods
npx agentmods add skills/ltczding-gif/agent-supervision-skills/claude-supervision

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ltczding-gif/agent-supervision-skills/claude-supervision/github.svg)](https://agentmods.dev/skills/ltczding-gif/agent-supervision-skills/claude-supervision)
Your own site
<a href="https://agentmods.dev/skills/ltczding-gif/agent-supervision-skills/claude-supervision"><img src="https://agentmods.dev/badge/skills/ltczding-gif/agent-supervision-skills/claude-supervision/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-supervision

Your own site · 80×15
<a href="https://agentmods.dev/skills/ltczding-gif/agent-supervision-skills/claude-supervision"><img src="https://agentmods.dev/badge/skills/ltczding-gif/agent-supervision-skills/claude-supervision.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 117 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,077 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 100% copy Near-identical to another mod 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.00117 $0.07077
Opus 5 $0.00059 $0.03538
Sonnet 5 $0.00023 $0.01415
Haiku 4.5 $0.00012 $0.00708

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

Security

Grade A, and why

claude-supervision 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 12d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/claude-bg.ps1, scripts/claude-list-sessions.ps1, scripts/claude-review.ps1, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Origin

This is a copy

100% identical to claude-supervision — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

claude-supervision/SKILL.md · 491 lines

How it starts

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

Claude Supervision

Hand work to the local claude CLI (Anthropic's Claude Code) and supervise the result — read what Claude actually did, inspect artifacts, verify claims, only then answer the user.

Supervision, not blind delegation.

This is the Claude-Code analog of kimi-supervision and codex-supervision. Use it when you (Codex, another Claude session, a CI script, etc.) want to delegate to Claude Code non-interactively and need the answer + artifacts in a structured place.

Requirements

  • PowerShell 7+ (pwsh.exe). claude-setup.ps1 refuses to mark ready=true on PS 5.1.
  • Claude Code CLI (claude from @anthropic-ai/claude-code). Install: npm install -g @anthropic-ai/claude-code.
  • Authentication: claude auth login (interactive once), OR $env:ANTHROPIC_API_KEY / $env:ANTHROPIC_AUTH_TOKEN. Verified by claude auth status (JSON output, exit 0=in / 1=out).

What this skill provides

Scripts under scripts/:

  • common.ps1 — claude path resolution, env hygiene, async I/O, timeout, artifact capture, secret-redacted CLI arg recording, native session JSONL recovery (reads ~/.claude/projects/<encoded-cwd>/<uuid>.jsonl when stdout is unexpectedly empty)
  • claude-setup.ps1claude auth status JSON probe + PS 7+ + writable state dir
  • claude-task.ps1 — delegate a task via claude --print (foreground, blocking)
  • claude-review.ps1 — multi-agent cloud-hosted review via claude ultrareview
  • claude-bg.ps1 — manage background sessions: --bg / agents / logs / stop / respawn / rm / daemon status
  • claude-list-sessions.ps1 — inspect this wrapper's own session artifacts

These scripts:

  • prefer the native claude.exe at $USERPROFILE\.local\bin\ (no .cmd shim chain → no Windows stdio race like codex)
  • read/write UTF-8 throughout; set Console.OutputEncoding to UTF-8
  • pass the prompt via stdin (no argv length limits, no quoting hell on multi-line/unicode text)
  • async stdout/stderr reads with ReadToEndAsync (no pipe-buffer deadlock)
  • -TimeoutSec with hard kill (Process.Kill($true) with Kill() fallback for older runtimes) and classification='timeout'
  • always write last-prompt.txt, last-response.txt, stderr.log, session.json to the session dir
  • session ID format YYYYMMDD-HHmmss-fff-<PID>-<rand>-<mode> (no same-millisecond collisions)
  • redact secrets in --settings / --mcp-config / --agents / --json-schema / --*-system-prompt inline JSON before serializing to session.json
  • truncate long inline JSON args in session.json for readability

Read the full file on GitHub · 491 lines

Files

What ships with it

6 files 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. 12d ago First seen · 491 lines · 117 tokens per session scan A bf7063c21d5c

Subscribe to this mod's changes

claude-supervision is a skill published in the GitHub repository ltczding-gif/agent-supervision-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 117 tokens to every session and 7,077 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to claude-supervision, differing in 0 lines, and is treated as a copy.