From prose-proofreading
Proofreads Markdown documents for style violations per guidelines, detects issues excluding code/URLs/frontmatter, proposes fixes, and applies user-approved edits via interactive prompts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/prose-proofreading:prose-proofreadingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Markdownドキュメントの文章をガイドラインに基づいて校正する。
Markdownドキュメントの文章をガイドラインに基づいて校正する。
引数の指定に応じて対象ファイルを決定する。
指定されたファイルを対象とする。
Bashツールで以下を実行し、変更されたMarkdownファイルを特定する:
git diff --name-only main...HEAD -- '*.md'
対象ファイルが見つからない場合はユーザーに報告して終了する。
AskUserQuestionツールで対象ファイルの指定方法を確認する。
このSKILL.mdと同じディレクトリにある GUIDELINES.md をReadツールで読み込む。
対象ファイルを1つずつ読み、ガイドラインの各ルールに照らして違反箇所を検出する。
以下は検出対象外とする:
違反が見つからない場合は「ガイドライン違反は見つかりませんでした」と報告して終了する。
違反箇所ごとにAskUserQuestionツールで修正案を提示する。1違反につき1質問とする。
ユーザーが修正を承認した場合はEditツールで適用する。スキップが選ばれた場合は次の違反箇所に進む。
全ての違反箇所を処理したら、修正した箇所数と、スキップした箇所数を報告する。
npx claudepluginhub shokai/agent-skills --plugin prose-proofreadingFixes prose formatting, typos, and clarity issues in markdown or text files. Corrects em dashes, double spaces, misspellings, and weak sentences.
Guides markdown linting with markdownlint-cli2: run checks, fix MD0XX errors, configure .markdownlint-cli2.jsonc rules/ignores, set up VS Code extension and GitHub Actions. Supports GFM/CommonMark for validation and workflows.
Runs deterministic regex-based style checks on Markdown/MDX documentation files, then layers AI judgment for deeper issues. Useful for enforcing doc style guides.