Audit Skill Completeness
Purpose
Evaluates a single skill directory against 8 quality categories derived from Anthropic's official skills repository. Each category is scored 0-3, producing an overall completeness percentage and actionable recommendations for improvement.
When to Use
Invoke this skill when:
- Pre-marketplace publication review - verify skill meets quality standards
- Post-creation quality check - evaluate newly created skills
- Skill improvement planning - identify specific quality gaps
- Comparing local skills to Anthropic patterns - benchmark against official standards
- Marketplace readiness assessment - determine if skill is publication-ready
Workflow
Step 1: Discovery
Read the skill directory structure:
skill-path/
├── SKILL.md # Required - main skill definition
├── scripts/ # Optional - executable automation
├── references/ # Optional - supporting documentation
└── assets/ # Optional - reusable output resources
Actions:
- Verify SKILL.md exists
- Check for scripts/, references/, assets/ directories
- Read SKILL.md frontmatter and body
- List all files in each directory
Validation:
- If SKILL.md missing, report error and exit
- If path is not a directory, report error and exit
Step 2: Evaluate Quality Categories
Run through each of the 8 categories using the detailed checklist in Skill Completeness Checklist.
Quality Categories:
| Category |
Evaluates |
Key Indicators |
| 1. Preparation |
Prerequisites met before work begins |
Environment verification, input inspection, metadata extraction scripts |
| 2. Progression |
Concrete steps with right level of control |
Clear sequence, deterministic scripts, working examples, decision trees |
| 3. Verification |
Output correctness confirmed before success |
Explicit verification steps, automated checks, error-correction loops, acceptance criteria |
| 4. Scripts |
Executable automation for core operations |
Repetitive operations scripted, --help support, edge case handling, tested output |
| 5. Examples |
Teaching through demonstration |
Working code with imports, exact input→output pairs, common cases, edge case handling |
| 6. Anti-Patterns |
Explicit "what NOT to do" |
Known failure modes documented, bad output shown, corrections side-by-side |
| 7. References |
Domain knowledge AI cannot generate |
API/schema/format documentation, organized sections, linked from workflow steps |
| 8. Assets |
Reusable output resources bundled |
Templates, fonts, images, boilerplate the AI uses (not reads) |
Evaluation Process:
For each category:
- Read the category definition from Skill Completeness Checklist
- Review checklist items for that category
- Search SKILL.md and supporting files for evidence
- Score 0-3 based on rubric (below)
- Document findings with file:line references
Step 3: Score and Report
Calculate overall score and write report to .claude/audits/completeness-report-{skill-slug}.md.
Report Structure:
# Skill Completeness Report: {skill-name}
**Evaluated:** {timestamp}
**Skill Path:** {absolute-path}
## Overall Score: {percentage}% ({score}/24)
| Category | Score | Label | Findings |
|----------|-------|-------|----------|
| 1. Preparation | 2 | Adequate | Environment checks present, missing metadata extraction |
| 2. Progression | 3 | Exemplary | Clear workflow, deterministic scripts, decision tree |
| ... | ... | ... | ... |
## Category Details
### 1. Preparation (2/3 - Adequate)
**What was evaluated:**
- Environment verification before starting
- Input inspection before acting
- Metadata extraction scripts
**Evidence found:**
- ✅ Environment check at SKILL.md:45-50
- ✅ Input validation at SKILL.md:65
- ❌ No metadata extraction script in scripts/
**Recommendation:**
Add a script to extract structured metadata from inputs so the AI operates on verified data instead of assumptions.
### 2. Progression (3/3 - Exemplary)
...
## Recommendations for Improvement
1. **High Priority:** Add metadata extraction script (Preparation)
2. **Medium Priority:** Include anti-pattern examples (Anti-Patterns)
3. **Low Priority:** Add visual validation examples (Verification)
## Reference
This audit follows patterns from Anthropic's official skills repository:
- https://github.com/anthropics/skills
Checklist: [Skill Completeness Checklist](./references/skill-completeness-checklist.md)
Output Location:
Report written to .claude/audits/completeness-report-{skill-slug}.md
If .claude/audits/ does not exist, create it.
Scoring Rubric
Each category is scored 0-3 based on presence and quality of evidence:
| Score |
Label |
Meaning |
Criteria |
| 0 |
None |
Category not addressed |
No evidence found for any checklist items |
| 1 |
Minimal |
Basic attempt, significant gaps |
1-2 checklist items present, core patterns missing |
| 2 |
Adequate |
Meets expectations, minor gaps |
3-4 checklist items present, core patterns followed |
| 3 |
Exemplary |
Exceeds expectations, Anthropic patterns |
All or most checklist items present, matches Anthropic quality |
Overall Score Calculation:
Sum of category scores / 24 * 100 = percentage
Scoring Guidelines:
Preparation (0-3):
- 0: No environment checks, no input validation, no metadata extraction
- 1: Environment checks OR input validation present
- 2: Environment checks AND input validation present
- 3: Environment checks, input validation, AND metadata extraction scripts
Progression (0-3):
- 0: No clear workflow, AI must generate all code
- 1: Workflow defined but no scripts or examples
- 2: Workflow defined with scripts OR examples
- 3: Workflow defined with scripts AND examples AND decision trees
Verification (0-3):
- 0: No verification steps mentioned
- 1: Manual verification suggested but not enforced
- 2: Verification steps defined with acceptance criteria
- 3: Automated verification scripts with error-correction loops
Scripts (0-3):
- 0: No scripts provided
- 1: 1-2 scripts, limited functionality
- 2: 3-5 scripts covering core operations
- 3: 6+ scripts, --help support, comprehensive coverage
Examples (0-3):
- 0: No examples provided
- 1: Abstract examples or pseudocode only
- 2: Working examples with imports and realistic data
- 3: Working examples covering common AND edge cases
Anti-Patterns (0-3):
- 0: No anti-patterns documented
- 1: Anti-patterns mentioned but not shown
- 2: Anti-patterns shown with corrections
- 3: Anti-patterns shown with corrections AND reasoning
References (0-3):
- 0: No reference material
- 1: External links only (not bundled)
- 2: 1-2 reference files in references/
- 3: 3+ reference files, organized by topic, linked from workflow
Assets (0-3):
- 0: No assets provided
- 1: 1-2 asset files
- 2: 3-5 asset files, organized
- 3: 6+ asset files or comprehensive asset library
Output Format
Report filename: completeness-report-{skill-slug}.md
Where {skill-slug} is the skill directory name (e.g., audit-skill-completeness → completeness-report-audit-skill-completeness.md)
Report sections:
- Header - skill name, path, timestamp
- Overall Score - percentage and raw score
- Summary Table - all categories with scores
- Category Details - for each category:
- Score and label
- What was evaluated (checklist items)
- Evidence found (file:line references)
- Recommendations for improvement
- Recommendations Summary - prioritized list
- Reference - link to checklist and Anthropic repository
Quality Categories Reference
All 8 categories are detailed in Skill Completeness Checklist with:
- Checklist items for each category
- Examples from Anthropic's official skills
- Patterns observed across creative, document, and developer skills
- Rationale for why each pattern matters
Additional Resources
1---2name: audit-skill-completeness3description: Evaluate a single skill's quality against 8 completeness categories derived from Anthropic's official skills repository. Scores preparation, progression, verification, scripts, examples, anti-patterns, references, and assets. Generates scored report to .claude/audits/. Use when auditing skill quality, checking marketplace readiness, evaluating skill completeness score, performing pre-publication evaluation, or comparing to Anthropic skills.4---5# Audit Skill Completeness67## Purpose89Evaluates a single skill directory against 8 quality categories derived from Anthropic's official skills repository. Each category is scored 0-3, producing an overall completeness percentage and actionable recommendations for improvement.1011## When to Use1213Invoke this skill when:1415- Pre-marketplace publication review - verify skill meets quality standards16- Post-creation quality check - evaluate newly created skills17- Skill improvement planning - identify specific quality gaps18- Comparing local skills to Anthropic patterns - benchmark against official standards19- Marketplace readiness assessment - determine if skill is publication-ready2021## Workflow2223### Step 1: Discovery2425Read the skill directory structure:2627```28skill-path/29├── SKILL.md # Required - main skill definition30├── scripts/ # Optional - executable automation31├── references/ # Optional - supporting documentation32└── assets/ # Optional - reusable output resources33```3435**Actions:**36371. Verify SKILL.md exists382. Check for scripts/, references/, assets/ directories393. Read SKILL.md frontmatter and body404. List all files in each directory4142**Validation:**4344- If SKILL.md missing, report error and exit45- If path is not a directory, report error and exit4647### Step 2: Evaluate Quality Categories4849Run through each of the 8 categories using the detailed checklist in [Skill Completeness Checklist](./references/skill-completeness-checklist.md).5051**Quality Categories:**5253| Category | Evaluates | Key Indicators |54|----------|-----------|----------------|55| **1. Preparation** | Prerequisites met before work begins | Environment verification, input inspection, metadata extraction scripts |56| **2. Progression** | Concrete steps with right level of control | Clear sequence, deterministic scripts, working examples, decision trees |57| **3. Verification** | Output correctness confirmed before success | Explicit verification steps, automated checks, error-correction loops, acceptance criteria |58| **4. Scripts** | Executable automation for core operations | Repetitive operations scripted, --help support, edge case handling, tested output |59| **5. Examples** | Teaching through demonstration | Working code with imports, exact input→output pairs, common cases, edge case handling |60| **6. Anti-Patterns** | Explicit "what NOT to do" | Known failure modes documented, bad output shown, corrections side-by-side |61| **7. References** | Domain knowledge AI cannot generate | API/schema/format documentation, organized sections, linked from workflow steps |62| **8. Assets** | Reusable output resources bundled | Templates, fonts, images, boilerplate the AI uses (not reads) |6364**Evaluation Process:**6566For each category:67681. Read the category definition from [Skill Completeness Checklist](./references/skill-completeness-checklist.md)692. Review checklist items for that category703. Search SKILL.md and supporting files for evidence714. Score 0-3 based on rubric (below)725. Document findings with file:line references7374### Step 3: Score and Report7576Calculate overall score and write report to `.claude/audits/completeness-report-{skill-slug}.md`.7778**Report Structure:**7980```markdown81# Skill Completeness Report: {skill-name}8283**Evaluated:** {timestamp}84**Skill Path:** {absolute-path}8586## Overall Score: {percentage}% ({score}/24)8788| Category | Score | Label | Findings |89|----------|-------|-------|----------|90| 1. Preparation | 2 | Adequate | Environment checks present, missing metadata extraction |91| 2. Progression | 3 | Exemplary | Clear workflow, deterministic scripts, decision tree |92| ... | ... | ... | ... |9394## Category Details9596### 1. Preparation (2/3 - Adequate)9798**What was evaluated:**99- Environment verification before starting100- Input inspection before acting101- Metadata extraction scripts102103**Evidence found:**104- ✅ Environment check at SKILL.md:45-50105- ✅ Input validation at SKILL.md:65106- ❌ No metadata extraction script in scripts/107108**Recommendation:**109Add a script to extract structured metadata from inputs so the AI operates on verified data instead of assumptions.110111### 2. Progression (3/3 - Exemplary)112113...114115## Recommendations for Improvement1161171. **High Priority:** Add metadata extraction script (Preparation)1182. **Medium Priority:** Include anti-pattern examples (Anti-Patterns)1193. **Low Priority:** Add visual validation examples (Verification)120121## Reference122123This audit follows patterns from Anthropic's official skills repository:124- https://github.com/anthropics/skills125126Checklist: [Skill Completeness Checklist](./references/skill-completeness-checklist.md)127```128129**Output Location:**130131Report written to `.claude/audits/completeness-report-{skill-slug}.md`132133If `.claude/audits/` does not exist, create it.134135## Scoring Rubric136137Each category is scored 0-3 based on presence and quality of evidence:138139| Score | Label | Meaning | Criteria |140|-------|-------|---------|----------|141| **0** | None | Category not addressed | No evidence found for any checklist items |142| **1** | Minimal | Basic attempt, significant gaps | 1-2 checklist items present, core patterns missing |143| **2** | Adequate | Meets expectations, minor gaps | 3-4 checklist items present, core patterns followed |144| **3** | Exemplary | Exceeds expectations, Anthropic patterns | All or most checklist items present, matches Anthropic quality |145146**Overall Score Calculation:**147148```149Sum of category scores / 24 * 100 = percentage150```151152**Scoring Guidelines:**153154- **Preparation (0-3):**155 - 0: No environment checks, no input validation, no metadata extraction156 - 1: Environment checks OR input validation present157 - 2: Environment checks AND input validation present158 - 3: Environment checks, input validation, AND metadata extraction scripts159160- **Progression (0-3):**161 - 0: No clear workflow, AI must generate all code162 - 1: Workflow defined but no scripts or examples163 - 2: Workflow defined with scripts OR examples164 - 3: Workflow defined with scripts AND examples AND decision trees165166- **Verification (0-3):**167 - 0: No verification steps mentioned168 - 1: Manual verification suggested but not enforced169 - 2: Verification steps defined with acceptance criteria170 - 3: Automated verification scripts with error-correction loops171172- **Scripts (0-3):**173 - 0: No scripts provided174 - 1: 1-2 scripts, limited functionality175 - 2: 3-5 scripts covering core operations176 - 3: 6+ scripts, --help support, comprehensive coverage177178- **Examples (0-3):**179 - 0: No examples provided180 - 1: Abstract examples or pseudocode only181 - 2: Working examples with imports and realistic data182 - 3: Working examples covering common AND edge cases183184- **Anti-Patterns (0-3):**185 - 0: No anti-patterns documented186 - 1: Anti-patterns mentioned but not shown187 - 2: Anti-patterns shown with corrections188 - 3: Anti-patterns shown with corrections AND reasoning189190- **References (0-3):**191 - 0: No reference material192 - 1: External links only (not bundled)193 - 2: 1-2 reference files in references/194 - 3: 3+ reference files, organized by topic, linked from workflow195196- **Assets (0-3):**197 - 0: No assets provided198 - 1: 1-2 asset files199 - 2: 3-5 asset files, organized200 - 3: 6+ asset files or comprehensive asset library201202## Output Format203204Report filename: `completeness-report-{skill-slug}.md`205206Where `{skill-slug}` is the skill directory name (e.g., `audit-skill-completeness` → `completeness-report-audit-skill-completeness.md`)207208Report sections:2092101. **Header** - skill name, path, timestamp2112. **Overall Score** - percentage and raw score2123. **Summary Table** - all categories with scores2134. **Category Details** - for each category:214 - Score and label215 - What was evaluated (checklist items)216 - Evidence found (file:line references)217 - Recommendations for improvement2185. **Recommendations Summary** - prioritized list2196. **Reference** - link to checklist and Anthropic repository220221## Quality Categories Reference222223All 8 categories are detailed in [Skill Completeness Checklist](./references/skill-completeness-checklist.md) with:224225- Checklist items for each category226- Examples from Anthropic's official skills227- Patterns observed across creative, document, and developer skills228- Rationale for why each pattern matters229230## Additional Resources231232- [Skill Completeness Checklist](./references/skill-completeness-checklist.md) - detailed quality categories, checklist items, and examples from Anthropic's official skills repository