claude-code-conductor: Skill for Claude Code

.claude/skills/autonomous-mode/SKILL.md

autonomous-mode is a skill for Claude Code from satoh-y-0323/claude-code-conductor. It costs 41 tokens per session (9,395 once invoked), scanned B, original, MIT.

A set of rules for letting an agent carry out an approved development plan with fewer manual pauses. It defines when the agent may pass approval gates and how that operating mode is written.

In plain words
What is it for?
Use it to run an already approved coding plan in autonomous mode, track approval cycles, and switch back to human-in-the-loop operation when required.
Why use it?
It removes ambiguity about when autonomous work is allowed and when the agent must ask for human input. It also provides a shared source of truth for the development workflow.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

This is satoh-y-0323/claude-code-conductor's own configuration. It tells Claude Code how to work on claude-code-conductor itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-code-conductor configures →

Reuse

Borrowing it

Nothing to install: this file belongs to satoh-y-0323/claude-code-conductor. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/satoh-y-0323/claude-code-conductor/main/.claude/skills/autonomous-mode/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/satoh-y-0323/claude-code-conductor

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 autonomous-mode

README.md
[![agentmods](https://agentmods.dev/badge/skills/satoh-y-0323/claude-code-conductor/autonomous-mode/github.svg)](https://agentmods.dev/skills/satoh-y-0323/claude-code-conductor/autonomous-mode)
Your own site
<a href="https://agentmods.dev/skills/satoh-y-0323/claude-code-conductor/autonomous-mode"><img src="https://agentmods.dev/badge/skills/satoh-y-0323/claude-code-conductor/autonomous-mode/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 autonomous-mode

Your own site · 80×15
<a href="https://agentmods.dev/skills/satoh-y-0323/claude-code-conductor/autonomous-mode"><img src="https://agentmods.dev/badge/skills/satoh-y-0323/claude-code-conductor/autonomous-mode.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,395 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00041 $0.09395
Opus 5 $0.00020 $0.04698
Sonnet 5 $0.00008 $0.01879
Haiku 4.5 $0.00004 $0.00940

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

Security

Grade B, and why

autonomous-mode scanned grade B with 1 finding 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 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/mode_line.py), 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

`grep -m1 '^モード: ' .claude/memory/sessions/{YYYYMMDD}.tmp | c3 run .claude/skills/autonomous-mode/scripts/mode_line.py`
.claude/skills/autonomous-mode/SKILL.md · 359 lines

How it starts

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

Autonomous Mode

C3 標準ワークフロー(.claude/skills/dev-workflow/SKILL.md)をユーザーが明示的に承認した委任プランに従い、 承認ゲートを客観条件で自動進行する「自律モード」の規約書。本ファイルが唯一の規約 SSOT(Single Source of Truth)


モード行文法と有効性判定

BNF 風文法

mode-line        ::= "モード: " mode-value LF
mode-value       ::= autonomous-decl | "HITL"        ; 行が無い/空/"HITL" はすべて HITL
autonomous-decl  ::= "自律" SP plan-ref [SP cycle-state]
plan-ref         ::= "plan=" plan-path
plan-path        ::= abs-path | home-plans-path | quoted-path
                     ; 委任プランの永続先はリポジトリ外・ハーネス管理領域の絶対パス(DC-AS-001/AM-003)
abs-path         ::= <OS 絶対パス>            ; 例: <ホームディレクトリ>\.claude\plans\dazzling-cooking-dusk.md
home-plans-path  ::= "~/.claude/plans/" file  ; 上記の ~ 展開形(可搬表記・~ は $HOME/.claude/plans/ へ展開)
quoted-path      ::= DQUOTE 1*pchar DQUOTE   ; スペース入りパス対応(例: "<パス>/my plan.md")
cycle-state      ::= "cycles=" gate-count *( "," gate-count )   ; 任意・揮発耐性の補助
gate-count       ::= gate-id "/" 1*DIGIT *("+" 1*DIGIT)         ; 例: C-3/2  E/1  C-3/5+2+1
gate-id          ::= "C-3" | "E"     ; "E" は E-1+E-2+E-3 を 1 セットとした周回集約 ID。承認ゲート ID の E-3 とは別語彙(DC-GP-004)
SP               ::= " "
LF               ::= "\n"
DQUOTE           ::= '"'
pchar            ::= <all printable chars except DQUOTE>

具体例

モード: 自律 plan=<ホームディレクトリ>\.claude\plans\dazzling-cooking-dusk.md
モード: 自律 plan=~/.claude/plans/dazzling-cooking-dusk.md cycles=C-3/2,E/1
モード: 自律 plan="<ホームディレクトリ>\.claude\plans\my plan.md"
モード: 自律 plan="~/.claude/plans/my plan.md" cycles=C-3/5+2+1,E/1
モード: HITL

有効性判定(3 条件・すべて満たすときのみ有効)

  1. 行が モード: 自律 で始まる
  2. plan= トークンがあり plan-path が非空
  3. plan-path(絶対パス/~/.claude/plans/ 展開形)を§後述「パス用 choke point」の封じ込め検査に通し、許可ルート配下に正規化できたうえで、指すファイルが実在するRead で存在確認できる)

plan= を欠く「モード: 自律」単体は無効(誤発動ゼロの最優先)。 存在しない plan・許可ルート外を指す行も無効化される。init-session は「モード行が無効(プラン不在/許可ルート外)→ HITL で継続」を明示表示する。


ゲート対応表(SSOT 本体)

承認ゲート 9 個A-4 / B-3 / C-1 / C-2 / C-3 / D-2.5 / D-3 / D-5 / E-3)の動作対応。 D-0(実行モード自動判別)は AskUserQuestion を持たないステップのため承認ゲート集合に含めない(別枠注記)。

Read the full file on GitHub · 359 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. 4d ago First seen · 359 lines · 41 tokens per session scan B 25847648b79b

Subscribe to this mod's changes

autonomous-mode is a skill published in the GitHub repository satoh-y-0323/claude-code-conductor (1 stars, last pushed 4d ago), licensed MIT. It adds 41 tokens to every session and 9,395 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.