skill-auditor
Audits and validates skill definitions for quality, completeness, and best practices. Use when reviewing existing skills for proper formatting, evaluating if skills should be split into sub-skills, or ensuring skills follow established conventions.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o skill-auditor.zip https://jpskill.com/download/17451.zip && unzip -o skill-auditor.zip && rm skill-auditor.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17451.zip -OutFile "$d\skill-auditor.zip"; Expand-Archive "$d\skill-auditor.zip" -DestinationPath $d -Force; ri "$d\skill-auditor.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
skill-auditor.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
skill-auditorフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 3
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Skill Auditor
この Skill は、他の Skill の品質、完全性、およびベストプラクティスへの準拠を監査します。Skill の構造を検証し、コンテンツの品質を評価し、改善またはサブ Skill への分解を推奨します。
使用する場面
この Skill は、以下の場合にトリガーされるべきです。
- 既存の Skill の品質問題をレビューする
- Skill が適切なフォーマット規則に従っているか確認する
- Skill をサブ Skill に分割すべきかどうかを評価する
- プロジェクトのすべての Skill に対して一括監査を実行する
- Skill をパッケージ化または配布する前に検証する
ワークフロー
ステップ 1: Skill の発見
.claude/skills/ ディレクトリにあるすべての Skill をリストアップします。
ls -la .claude/skills/
各 Skill ディレクトリについて、必要な SKILL.md ファイルが含まれていることを確認します。
ステップ 2: 自動検証の実行
監査スクリプトを実行して、構造要件を確認します。
python .claude/skills/skill-auditor/scripts/audit_skills.py .claude/skills/
スクリプトは以下を検証します。
- YAML frontmatter の存在と必須フィールド
- 説明の品質(長さ、具体性)
- ワード数の制限(5000 ワード以下を推奨)
- 未完成のプレースホルダーの検出
- 空のディレクトリの警告
- スクリプトの実行可能性
ステップ 3: 手動品質レビュー
各 Skill について、以下の基準で評価します。
Frontmatter の品質:
name: ハイフンを使用し、記述的であるdescription: 50 文字以上で、トリガーについて具体的に記述し、プレースホルダーがない
コンテンツ構造:
- 具体的なトリガーを含む明確な「使用する場面」セクション
- 実行可能なステップを含むワークフロー
- バンドルされたリソースが適切に文書化されている
分解分析:
- Skill が 3 つ以上の異なる関心事を扱っているかどうかを評価する
- Skill が 5000 ワードを超えていないか確認する
- 共有できる再利用可能なコンポーネントを特定する
ステップ 4: 監査レポートの生成
各 Skill に対して構造化されたレポートを作成します。
## Skill: [name]
### 検証結果
- Frontmatter: PASS/FAIL
- Structure: PASS/FAIL
- Word Count: X words (PASS/WARNING/FAIL)
- Unfinished Placeholders: X found
### 品質スコア: X/10
### 推奨事項
1. [具体的な改善点]
2. [別の改善点]
### 分解分析
- Should split: YES/NO
- Reason: [explanation]
- Suggested sub-skills: [list if applicable]
ステップ 5: 修正の適用
自動修正の場合、--fix フラグを指定して監査スクリプトを使用します。
python .claude/skills/skill-auditor/scripts/audit_skills.py .claude/skills/ --fix
手動で改善する場合は、推奨事項に従って SKILL.md ファイルを直接編集します。
監査基準リファレンス
詳細なスコアリングルーブリックと分解ガイドラインについては、references/audit-criteria.md を参照してください。
バンドルされたリソース
スクリプト
scripts/audit_skills.py- 自動検証およびレポート作成スクリプト
リファレンス
references/audit-criteria.md- 詳細な監査基準とスコアリングルーブリック
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Skill Auditor
This skill audits other skills for quality, completeness, and adherence to best practices. It validates skill structure, evaluates content quality, and recommends improvements or decomposition into sub-skills.
When to Use
This skill should be triggered when:
- Reviewing existing skills for quality issues
- Checking if a skill follows proper formatting conventions
- Evaluating whether a skill should be divided into sub-skills
- Performing bulk audits across all project skills
- Validating skills before packaging or distribution
Workflow
Step 1: Discover Skills
List all skills in the .claude/skills/ directory:
ls -la .claude/skills/
For each skill directory, verify it contains the required SKILL.md file.
Step 2: Run Automated Validation
Execute the audit script to check structural requirements:
python .claude/skills/skill-auditor/scripts/audit_skills.py .claude/skills/
The script validates:
- YAML frontmatter presence and required fields
- Description quality (length, specificity)
- Word count limits (<5000 words recommended)
- Unfinished placeholder detection
- Empty directory warnings
- Script executability
Step 3: Manual Quality Review
For each skill, evaluate against these criteria:
Frontmatter Quality:
name: Uses hyphens, is descriptivedescription: 50+ characters, specific about triggers, no placeholders
Content Structure:
- Clear "When to Use" section with specific triggers
- Workflow with actionable steps
- Bundled resources properly documented
Decomposition Analysis:
- Evaluate if skill handles >3 distinct concerns
- Check if skill exceeds 5000 words
- Identify reusable components that could be shared
Step 4: Generate Audit Report
Produce a structured report for each skill:
## Skill: [name]
### Validation Results
- Frontmatter: PASS/FAIL
- Structure: PASS/FAIL
- Word Count: X words (PASS/WARNING/FAIL)
- Unfinished Placeholders: X found
### Quality Score: X/10
### Recommendations
1. [Specific improvement]
2. [Another improvement]
### Decomposition Analysis
- Should split: YES/NO
- Reason: [explanation]
- Suggested sub-skills: [list if applicable]
Step 5: Apply Fixes
For automated fixes, use the audit script with --fix flag:
python .claude/skills/skill-auditor/scripts/audit_skills.py .claude/skills/ --fix
For manual improvements, edit SKILL.md files directly following recommendations.
Audit Criteria Reference
See references/audit-criteria.md for detailed scoring rubrics and decomposition guidelines.
Bundled Resources
Scripts
scripts/audit_skills.py- Automated validation and reporting script
References
references/audit-criteria.md- Detailed audit criteria and scoring rubrics
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (3,090 bytes)
- 📎 references/audit-criteria.md (5,654 bytes)
- 📎 scripts/audit_skills.py (14,757 bytes)