docs

A document-polishing workflow that reviews README files, skill instructions, API documentation, and other Markdown, then prepares a finished version.

In plain words
What is it for?
Use it to review and refine project documentation, README files, and skill files according to defined writing and structure rules.
Why use it?
It helps find inconsistent structure, wording, examples, and quality checks across a set of documents. It is intended for broad document finishing, not a one-line edit.

Skill for Claude CodeCodex

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 skills/tomoking2004/claude-plugins/docs
Any agent
npx skills add tomoking2004/claude-plugins --skill docs
Clone the repo
git clone --depth 1 https://github.com/tomoking2004/claude-plugins

Made for: Claude Code, Codex.

Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,361 The whole file, excluding the scripts and references it only reads on demand.
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.00094 $0.01361
Opus 5 $0.00047 $0.00681
Sonnet 5 $0.00019 $0.00272
Haiku 4.5 $0.00009 $0.00136

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

Security

Grade A, and why

docs 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 2d 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.

plugins/refine/skills/docs/SKILL.md · 34 lines

What it actually says

対象:指定された範囲の文書;無指定ならプロジェクト全文書(生成物のみ除く;.gitignore 対象も走査し,私的なメモ等は変更前に問う).

まず BEAUTY.md を読み,美の6条と走査の規律に従う.

媒体の正典

  • Markdown:表題は一つ(H1 か frontmatter);見出し階層は飛ばさない;列挙は文型・粒度を揃える.
  • README:何であるか→なぜ→導入→使い方→開発の順.
  • SKILL.md:description に機能と発動条件を最小トークンで(全セッションに常駐する);本文は手順と判断規則のみ(一般知識は書かない).
    • 節の順序:「対象:」の一行 → 動的コンテキスト(あれば)→ 手順 → 判断規則(媒体の正典・文面の基準等)→ 網 → 制約 → 失敗時(/heal:skill を呼ぶ).手順を持たない走査スキルは判断規則から始める;制約は手順に収まらない禁止・例外があるときだけ置く.
    • 網は必ず持つ:確定前に当てる検査であり,当たる先で名が決まる——成果物に当てるなら固有の走査,成果物を残さず自分の段取りに当てるなら自己点検.網が手順と一体なら手順の中で走査を明示し,別節に写さない(単一の真実).
    • 倣えと命じるなら手本を見せる:「既存の声・様式に倣う」類の規則は,倣う対象を動的コンテキストで実物のまま出し(件名・要約・統計では声は伝わらない),網に「手本と並べて確かめる」項を置く.見せずに倣えとだけ書けば,読み手は想像で補う——規則を持ちながら守れない状態になる.及ぶのは手本が固定のコマンドで取り出せるときに限る(git loggh release view 等)——「既存ファイルの多数派に倣う」のように倣う対象が実行時の範囲で初めて決まるものは動的コンテキストに置けないので,代わりにどこを見れば手本があるかを規則自身が名指しする.
    • 倣う対象が選択なら条件と対で見せる:倣わせたいものが条件に応じた選び方(変更の種類に対する type,ノートに載せる項目の取捨等)なら,選んだ結果だけを並べても倣えない——読み手は結果の語彙に自分の選択が入っていることを確かめ,「一致した」と判定して網を通してしまう(開発ツールに chore を当てるリポジトリで,語彙に feat があるからと新機能扱いする類).条件と結果の対を出すこと——git log --format='%h %s' --name-only のように「何を変えた回がどれを選んだか」が見える形にする.対を固定のコマンドで出せないなら,倣えとは命じず規則そのものを書き下ろす
    • 動的コンテキスト:起こり得る全状態(非 git・初コミット前・タグ無し・タグが HEAD・作業ツリーが清潔等)で実行して裏取りし,exit 0 かつ非空の出力を保証する.非ゼロ終了は実行エラーになる.出力が空でも exit 0 は起こるため cmd || echo "(なし)" では足りない——git log "$tag..HEAD" はタグが HEAD にあるとき成功しつつ何も返さず,代替文が発火しない.空節は「該当なし」と「取得に失敗」を区別できないので,x=$(cmd); [ -n "$x" ] && echo "$x" || echo "(なし)" の形で必ず何かを出す.
  • その他:その媒体の公式スタイルガイド;無ければ既存ファイルの多数派.

固有の走査

  • 参照整合:リンク・相互参照・目次が実在の対象を指すことを全件確かめる.
  • 用語統一:同義語群・表記の規約を全文書横断で列挙し,揺れを潰す.

制約

git は読み込みのみ.判断の割れる箇所は推測せず問う.

失敗時

/heal:skill を呼ぶ.

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. 2d ago First seen · 34 lines · 94 tokens per session scan A 7dc0ef7ed728

Subscribe to this mod's changes

docs is a skill published in the GitHub repository tomoking2004/claude-plugins (3 stars, last pushed 1mo ago), licensed MIT. It adds 94 tokens to every session and 1,361 once invoked, about $0.0005 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

skill-teilen

Reicht einen Skill, ein Plugin oder eine Vorlage (CLAUDE.md, settings.json, Prompt) in die SKAILE Community Skill-Library ein. Nutzen wenn der User sagt "teile meinen Skill", "teile meine CLAUDE.md", "teile meine Vorlage", "lade meinen Skill in die Community hoch", "reiche meinen Skill ein", "skill teilen" oder "in…

sebaskauf/skaile-community-library · 97 tokens

show-and-share

Schreibt einen fertigen Show-&-Share-Post für die SKAILE Community. Nutzen wenn der User sagt "schreib mir einen Show & Share Post", "stelle meinen Skill vor", "Post für meinen Skill/meine Vorlage", "schreib einen Post zu dem was ich gebaut habe", oder direkt nachdem ein Skill mit skill-teilen eingereicht wurde.

sebaskauf/skaile-community-library · 74 tokens

readme-pro

Schreibt oder verbessert ein README für das aktuelle Projekt. Nutzen wenn der User "schreib mir ein README", "dokumentier das Projekt" oder "readme-pro" sagt.

sebaskauf/skaile-community-library · 37 tokens

skill-guide

Design, write, and review SKILL.md files using proven patterns. Use when creating, improving, or reviewing agent skills, choosing a design pattern (Tool Wrapper, Generator, Reviewer, Inversion, Pipeline), structuring progressive disclosure, writing skill descriptions, or composing patterns. Also trigger for 'skill…

AndyElessar/skills · 102 tokens

microsoft-webui

Microsoft WebUI Framework expertise — a language-agnostic server-side rendering framework where templates compile to a binary protocol and interactive Web Components hydrate as islands. Use when authoring, reviewing, or debugging WebUI components (.html + .css + .ts triplets), wiring up routes, hydrating with…

AndyElessar/skills · 212 tokens

plugin-creator

Guide AI agents through creating GitHub Copilot CLI and Claude Code plugins and plugin marketplaces — from scaffolding plugin directories and writing plugin.json manifests to building marketplace.json registries and testing installations. Use this skill whenever the user wants to create, scaffold, configure, package…

AndyElessar/skills · 181 tokens