agent-skills CLAUDE.md

agent-skills CLAUDE.md is an instructions file for coding agents from simota/agent-skills. It costs 1,450 tokens per session, scanned A, original, MIT.

A set of instructions for organizing and routing skills in an agent-skills repository. It describes the repository structure, shared rules, project-specific skills, and how complex requests enter through a single routing skill.

In plain words
What is it for?
Use it when maintaining the simota/agent-skills repository, creating or checking SKILL.md files, routing multi-step requests, or reviewing audit outputs.
Why use it?
It helps agents choose the right skill and follow the repository's conventions instead of handling each request inconsistently.

Instructions file

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.

agentmods
npx agentmods add instructions/simota/agent-skills/claude-md
Clone the repo
git clone --depth 1 https://github.com/simota/agent-skills

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 agent-skills CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/simota/agent-skills/claude-md.svg)](https://agentmods.dev/instructions/simota/agent-skills/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/simota/agent-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/simota/agent-skills/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,450 This file is loaded in full into every session.
When invoked 1,450 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01450 $0.01450
Opus 5 $0.00725 $0.00725
Sonnet 5 $0.00290 $0.00290
Haiku 4.5 $0.00145 $0.00145

Measured 4d ago against content hash 0b7f25fd6773, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agent-skills CLAUDE.md 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 4d 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.

CLAUDE.md · 40 lines

How it starts

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

claude-skills

90のグローバルスキルと、このリポジトリ専用の3スキル(orbit / lore / darwin)で構成されるプロンプトエンジニアリングリポジトリ。 成果物はコードではなく SKILL.md ファイル群。

構造

  • 各スキル: {skill-name}/SKILL.md + オプションの reference/
  • project-localスキル: .claude/skills/(正本)+ .agents/skills/(同期ミラー)。利用可否とfallbackは _common/PROJECT_LOCAL_SKILLS.md
  • 共通プロトコル: _common/ (BOUNDARIES.md, HANDOFF.md 等)
  • テンプレート: _templates/SKILL_TEMPLATE.md
  • エージェントジャーナル: .agents/ (gitignore対象)
  • 外部スキル群: rig-* は別リポジトリ (github.com/simota/rig-agent-skills) への symlink で .gitignore 対象。独自の core/registry/rig-route を持つ完結した別設計であり、本リポの _common/ 契約・routing-matrix・Recipe 規約はいずれも適用されない。検査系は symlink を境界として自動除外する(_common/scripts/_corpus.py)ため、rig-* に対する指摘は出ない。両系統の統合可否は未決。
  • 監査成果物: docs/audit/ (gitignore対象) — 本 repo は監査/レビューの成果物をコミットしない。verity / abide など report-only レシピの書き込み先はここに限り、結果はコミットメッセージと会話で伝える。

ルーティング(単一入口)

  • 非自明な依頼(複数ステップ・複数領域・スキル選択が自明でないもの)は nexus を単一入口とする — 分類 → レシピ/チェーン選択 → 実行までを nexus が担う。
  • どのスキルにも該当しない依頼も nexus に投げてよい: LADDER(compass → architect → 明示的フォールバック)がカバレッジを保証する(nexus/reference/routing-matrix.md § LADDER)。
  • 個別スキルの直接呼び出しは、次の3条件をすべて満たす場合に限る: (1) 担当スキルが1つに確定している (2) 成果物が1種類 (3) _common/BOUNDARIES.md の境界を1つしか跨がない。1つでも満たさなければ nexus を通す — 「たぶんこのスキル」は条件(1)を満たさない。
  • 呼び出し経路にかかわらず、完了判定は _common/OPERATIONAL.md § Completion Contract に従う(AC凍結・証拠束縛・型付き繰越・完了スイープ・status非膨張)。nexus 経由かどうかで完了の基準は変わらない。
  • 環境レベルの強制(hooks 等によるプロンプト介入)はリポジトリ範囲外のため行わない — 本宣言が単一入口の境界である。
  • 自己監査: 30日間隔の監査ルーチンが schedule 登録済み。未登録を検知した場合は _common/HARNESS_EVOLUTION.md § Evaluation Cycle の手順で再登録する。

規約

  • Conventional Commits: feat(skill-name): description
  • SKILL.md 編集時は既存の CAPABILITIES_SUMMARY コメントブロック形式を維持
  • 新規スキル/レシピ/_common/ プロトコル/ゲートの追加は Complexity Budget(_common/HARNESS_DEBT.md §3b)の4項目 failure / effect / owner / removal を宣言する。removal 空欄は却下 — 既存資産への遡及適用はしない(次に別件で編集する際に付与)
  • 実測値(スキル本数等)を散文に直書きしない — 検査が再導出できる形にする(_common/OPERATIONAL.md § Derived Numbers)。閾値の定義値はルールなので対象外
  • _common/ は全スキルに影響するため慎重に変更
  • 価値が衝突したとき(丁寧さ vs 出荷、安全 vs 使いやすさ)の優先順は _common/VALUES.md。文書同士の衝突は § Contract Precedence が別に決める
  • Git: @_common/GIT_GUIDELINES.md

Read the full file on GitHub · 40 lines

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 · 40 lines · 1,450 tokens per session scan A 0b7f25fd6773

Subscribe to this mod's changes

agent-skills CLAUDE.md is an instructions file published in the GitHub repository simota/agent-skills (75 stars, last pushed 2d ago), licensed MIT. It adds 1,450 tokens to every session, about $0.0072 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.