tool-read-document-skill-creator

tool-read-document-skill-creator is a skill for Claude Code, Codex from eaglesakura/agent-skills. It costs 208 tokens per session (3,307 once invoked), scanned A, original, MIT.

A guide for creating a specialised document-reading skill that points agents to selected documentation and lets the Markdown search process load it in stages.

In plain words
What is it for?
It is for creating or revising index skills for architecture notes, specifications, references, or other groups of Markdown documents.
Why use it?
It prevents large documentation sets from being loaded indiscriminately and defines which documents matter for a particular knowledge area.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit It is for creating or revising index skills for architecture notes, specifications, references, or other groups of Markdown documents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eaglesakura/agent-skills/tool-read-document-skill-creator
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 eaglesakura/agent-skills --skill tool-read-document-skill-creator
Clone the repo
git clone --depth 1 https://github.com/eaglesakura/agent-skills

Made for: Claude Code, 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 tool-read-document-skill-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/eaglesakura/agent-skills/tool-read-document-skill-creator/github.svg)](https://agentmods.dev/skills/eaglesakura/agent-skills/tool-read-document-skill-creator)
Your own site
<a href="https://agentmods.dev/skills/eaglesakura/agent-skills/tool-read-document-skill-creator"><img src="https://agentmods.dev/badge/skills/eaglesakura/agent-skills/tool-read-document-skill-creator/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 tool-read-document-skill-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/eaglesakura/agent-skills/tool-read-document-skill-creator"><img src="https://agentmods.dev/badge/skills/eaglesakura/agent-skills/tool-read-document-skill-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 208 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,307 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.00208 $0.03307
Opus 5 $0.00104 $0.01654
Sonnet 5 $0.00042 $0.00661
Haiku 4.5 $0.00021 $0.00331

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

Security

Grade A, and why

tool-read-document-skill-creator 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 8d 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.

packages/agent-creator/.apm/skills/tool-read-document-skill-creator/SKILL.md · 187 lines

How it starts

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

Tool / Read-Document Skill Creator

ドキュメント索引 SKILL は、長い docs / references を Agent が いきなり全文ロードしない ための入口である。 「どの文書を、いつ、どの深さまで読むか」を SKILL に固定し、実行時の把握は常に markdown-search に委譲する。

本 SKILL は そうした索引 SKILL の定義ファイルを書くmarkdown-search 本体の手順は書かない。

いつ使うか / 使わないか

  • 使う: 複数 Markdown(docs/references/・設計資料など)を束ねて読む専用 SKILL の作成・改訂
  • 使う: 既存の「リンク列挙だけ」の知識 SKILL を、Stage 1 必須の契約へ更新するとき
  • 使わない: 汎用の任意 Markdown 探索そのもの(→ markdown-search
  • 使わない: slash-command / Sub Agent 定義(→ tool-command-creator / tool-sub-agent-creator
  • 使わない: ドキュメントの新規執筆・lint(→ markdown-documentation / markdown-fix

出力先と命名

  • プロジェクト共有: .cursor/skills/{skill-name}/SKILL.md または .agents/skills/{skill-name}/SKILL.md
  • APM パッケージのソース: .apm/skills/{skill-name}/SKILL.md
  • ディレクトリ名と frontmatter name を一致させる
  • SKILL 名が未確定なら文脈から提案し、ユーザー確認後に確定する。ユーザーが既に指定しているならそれに従う

命名の目安

パターン 向いているとき
{領域}-knowledge-{主題} repo-knowledge-architecture リポジトリ固有の知識索引
{領域}-spec-{主題} hq-spec-generative-ai-law 仕様・制約の正本索引
{領域}-{主題}-docs backend-auth-docs docs 束の入口であることが主眼

ハイフン区切り・小文字。抽象名(docs-helper 等)は避け、どの文書群かが名前から分かるようにする。

必須: テンプレート準拠

出力は必ず assets/read-document-skill.md に従う。 プレースホルダ({...})と HTML コメントは最終成果物から除去する。

段階ロードの意味・スクリプトは references/loading-contract.md を確認してから本文へ落とす。

生成 SKILL の契約(必須)

作成・改訂する索引 SKILL 自体が、実行時に次を守るように書く。

トリガー(いつロードするか)

  • 「いつ読むか」は frontmatter の description に集約する(本文に同じトリガーを重複させない)
  • 参照ドキュメントの主題・キーワード・判断場面を description に書く(押し気味でよい)
  • ユーザー/親プロンプトで対象文書・節・観点が制約されている場合は、その文脈を優先する(索引を機械的に全消化しない)
  • 対象ドキュメントの内容要約は SKILL 本文に書かない(正本との齟齬を防ぐ。内容は正本を Stage で読む)

ロード深さ(Context 最適化)

  • 把握手順・Stage・出力の取り方は 生成 SKILL 本文に再掲しないmarkdown-search への誘導のみにする(Context 節約)
  • 作成者向けの契約(適用時は Stage 1 から、全文先読み禁止など)は references/loading-contract.md を正とし、生成物では「markdown-search に従う」と書く
  • 「念のため全文」「全部まとめて Read」を生成 SKILL の既定手順にしない

Read the full file on GitHub · 187 lines

Files

What ships with it

3 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. 8d ago First seen · 187 lines · 208 tokens per session scan A 08ceb03296f3

Subscribe to this mod's changes

tool-read-document-skill-creator is a skill published in the GitHub repository eaglesakura/agent-skills (2 stars, last pushed 2d ago), licensed MIT. It adds 208 tokens to every session and 3,307 once invoked, about $0.0010 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-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens