Skill Reviewing
Provides comprehensive validation of Claude Code skills and agents against:
- Plugin Storage Conventions (NORMATIVE)
- Agent Tool Use Best Practices
- Architecture Guidelines v0.5
Capabilities
This skill orchestrates three specialized review agents, each focusing on a distinct concern:
| Agent |
Focus |
Source Document |
skill-metadata-storage-review |
Frontmatter & persistence |
PLUGIN-STORAGE-CONVENTIONS.md |
skill-implementation-review |
Code mechanics & security |
agent-tool-use-best-practices.md |
skill-architecture-review |
Design patterns & structure |
claude-code-skills-agents-guidelines-0.4.md |
Agent Delegation
All three agents are invoked via Agent Runner for parallel execution:
Metadata & Storage Reviewer
Validates:
- YAML frontmatter (name, version, description)
- Version consistency with registry.yaml
- Storage paths (logs, settings, outputs)
- Secret handling
- Documentation completeness
Returns: {success, data: {checks_performed, checks_passed, warnings, errors}, error}
Implementation Reviewer
Validates:
- JSON fencing
- Hook implementation (Python preferred)
- Dependency declarations
- Security patterns
- Cross-platform compatibility
Returns: {success, data: {checks_performed, checks_passed, warnings, errors}, error}
Architecture Reviewer
Validates:
- Two-tier skill/agent separation
- Response contract compliance
- Single responsibility principle
- Agent size and complexity
- File organization
Returns: {success, data: {checks_performed, checks_passed, warnings, errors}, error}
Orchestration Pattern
When user requests a review:
Determine target
- Parse user input to identify what to review
- Resolve to absolute path if needed
- Determine target_type: "agent", "skill", or "package"
Invoke agents in parallel
Use Agent Runner to invoke all three reviewers concurrently with parameters:
For skill-metadata-storage-review:
{
"target_type": "<agent|skill|package>",
"target_path": "/absolute/path/to/target",
"package_name": "<package-name-if-applicable>",
"check_registry": true,
"registry_path": ".claude/agents/registry.yaml"
}
For skill-implementation-review:
{
"target_path": "/absolute/path/to/target",
"check_hooks": true,
"check_dependencies": true,
"check_security": true,
"manifest_path": "manifest.yaml"
}
For skill-architecture-review:
{
"target_type": "<agent|skill|package>",
"target_path": "/absolute/path/to/target",
"check_two_tier": true,
"check_contracts": true,
"check_naming": true,
"registry_path": ".claude/agents/registry.yaml"
}
Aggregate results
- Collect fenced JSON from all three agents
- Parse and merge findings
- Group by severity: errors, warnings, info
- Organize by concern area (metadata, implementation, architecture)
Format report
Present findings to user in this structure:
## Review Summary: [package-name]
✅ Metadata & Storage: X checks passed, Y warnings, Z errors
⚠️ Implementation: X checks passed, Y warnings, Z errors
✅ Architecture: X checks passed, Y warnings, Z errors
### Critical Issues (must fix)
[List all errors with file:line and suggested actions]
### Warnings (should fix)
[List all warnings with suggestions]
### Info (optional improvements)
[List all info-level findings]
Usage Examples
Review entire package:
/skill-reviewing sc-managing-worktrees
Review specific agent:
/skill-reviewing .claude/agents/sc-worktree-create.md
Review skill:
/skill-reviewing .claude/skills/managing-worktrees/
Review during development:
Review the skill I just created in .claude/skills/my-new-skill/
Error Handling
If Any Reviewer Fails
- Report which reviewer failed and why
- Include partial results from successful reviewers
- Suggest corrective action (e.g., "Registry file not found at .claude/agents/registry.yaml")
- Do not fail entire review if one agent has issues
If All Reviewers Return No Issues
- Congratulate user on clean implementation
- Show summary: "All X checks passed across metadata, implementation, and architecture"
- Optionally suggest next steps (testing, documentation improvements)
If Target Not Found
- Return clear error message
- Suggest correct paths for common targets
- Examples:
- Agents:
.claude/agents/<name>.md
- Skills:
.claude/skills/<name>/SKILL.md
- Packages:
packages/<name>/
Notes
- Parallel Execution: All three agents run independently in isolated contexts
- Structured Output: Each agent returns fenced JSON for reliable parsing
- Read-Only: No agent modifies files; this is analysis only
- Comprehensive: Covers three orthogonal concerns for complete validation
- Actionable: Every finding includes suggested_action for quick fixes
Related Documentation
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: skill-reviewing3description: Comprehensive review of Claude Code skills and agents against v0.5 Use when this capability is needed.4---56# Skill Reviewing78Provides comprehensive validation of Claude Code skills and agents against:9- Plugin Storage Conventions (NORMATIVE)10- Agent Tool Use Best Practices11- Architecture Guidelines v0.51213## Capabilities1415This skill orchestrates three specialized review agents, each focusing on a distinct concern:1617| Agent | Focus | Source Document |18|-------|-------|-----------------|19| `skill-metadata-storage-review` | Frontmatter & persistence | PLUGIN-STORAGE-CONVENTIONS.md |20| `skill-implementation-review` | Code mechanics & security | agent-tool-use-best-practices.md |21| `skill-architecture-review` | Design patterns & structure | claude-code-skills-agents-guidelines-0.4.md |2223## Agent Delegation2425All three agents are invoked via Agent Runner for parallel execution:2627### Metadata & Storage Reviewer28**Validates:**29- YAML frontmatter (name, version, description)30- Version consistency with registry.yaml31- Storage paths (logs, settings, outputs)32- Secret handling33- Documentation completeness3435**Returns:** `{success, data: {checks_performed, checks_passed, warnings, errors}, error}`3637### Implementation Reviewer38**Validates:**39- JSON fencing40- Hook implementation (Python preferred)41- Dependency declarations42- Security patterns43- Cross-platform compatibility4445**Returns:** `{success, data: {checks_performed, checks_passed, warnings, errors}, error}`4647### Architecture Reviewer48**Validates:**49- Two-tier skill/agent separation50- Response contract compliance51- Single responsibility principle52- Agent size and complexity53- File organization5455**Returns:** `{success, data: {checks_performed, checks_passed, warnings, errors}, error}`5657## Orchestration Pattern5859When user requests a review:60611. **Determine target**62 - Parse user input to identify what to review63 - Resolve to absolute path if needed64 - Determine target_type: "agent", "skill", or "package"65662. **Invoke agents in parallel**67 Use Agent Runner to invoke all three reviewers concurrently with parameters:6869 **For skill-metadata-storage-review:**70 ```json71 {72 "target_type": "<agent|skill|package>",73 "target_path": "/absolute/path/to/target",74 "package_name": "<package-name-if-applicable>",75 "check_registry": true,76 "registry_path": ".claude/agents/registry.yaml"77 }78 ```7980 **For skill-implementation-review:**81 ```json82 {83 "target_path": "/absolute/path/to/target",84 "check_hooks": true,85 "check_dependencies": true,86 "check_security": true,87 "manifest_path": "manifest.yaml"88 }89 ```9091 **For skill-architecture-review:**92 ```json93 {94 "target_type": "<agent|skill|package>",95 "target_path": "/absolute/path/to/target",96 "check_two_tier": true,97 "check_contracts": true,98 "check_naming": true,99 "registry_path": ".claude/agents/registry.yaml"100 }101 ```1021033. **Aggregate results**104 - Collect fenced JSON from all three agents105 - Parse and merge findings106 - Group by severity: errors, warnings, info107 - Organize by concern area (metadata, implementation, architecture)1081094. **Format report**110 Present findings to user in this structure:111112 ```113 ## Review Summary: [package-name]114115 ✅ Metadata & Storage: X checks passed, Y warnings, Z errors116 ⚠️ Implementation: X checks passed, Y warnings, Z errors117 ✅ Architecture: X checks passed, Y warnings, Z errors118119 ### Critical Issues (must fix)120 [List all errors with file:line and suggested actions]121122 ### Warnings (should fix)123 [List all warnings with suggestions]124125 ### Info (optional improvements)126 [List all info-level findings]127 ```128129## Usage Examples130131**Review entire package:**132```133/skill-reviewing sc-managing-worktrees134```135136**Review specific agent:**137```138/skill-reviewing .claude/agents/sc-worktree-create.md139```140141**Review skill:**142```143/skill-reviewing .claude/skills/managing-worktrees/144```145146**Review during development:**147```148Review the skill I just created in .claude/skills/my-new-skill/149```150151## Error Handling152153### If Any Reviewer Fails154- Report which reviewer failed and why155- Include partial results from successful reviewers156- Suggest corrective action (e.g., "Registry file not found at .claude/agents/registry.yaml")157- Do not fail entire review if one agent has issues158159### If All Reviewers Return No Issues160- Congratulate user on clean implementation161- Show summary: "All X checks passed across metadata, implementation, and architecture"162- Optionally suggest next steps (testing, documentation improvements)163164### If Target Not Found165- Return clear error message166- Suggest correct paths for common targets167- Examples:168 - Agents: `.claude/agents/<name>.md`169 - Skills: `.claude/skills/<name>/SKILL.md`170 - Packages: `packages/<name>/`171172## Notes173174- **Parallel Execution:** All three agents run independently in isolated contexts175- **Structured Output:** Each agent returns fenced JSON for reliable parsing176- **Read-Only:** No agent modifies files; this is analysis only177- **Comprehensive:** Covers three orthogonal concerns for complete validation178- **Actionable:** Every finding includes suggested_action for quick fixes179180## Related Documentation181182- [Design Document](../../docs/design/skill-review-system.md) — Complete specification183- [Architecture Guidelines v0.5](../../docs/claude-code-skills-agents-guidelines-0.4.md) — Source guidelines184- [Plugin Storage Conventions](../../docs/PLUGIN-STORAGE-CONVENTIONS.md) — NORMATIVE storage rules185- [Tool Use Best Practices](../../docs/agent-tool-use-best-practices.md) — Implementation patterns186187---188> Converted and distributed by [TomeVault](https://tomevault.io/claim/randlee) — claim your Tome and manage your conversions.189<!-- tomevault:4.0:skill_md:2026-04-13 -->