Reviews Claude skills against Anthropic's official design philosophy and specifications. Use when asked to review, validate, or check if a skill follows best practices.
Validates Claude skills against Anthropic's official design philosophy and specifications.
/plugin marketplace add theflysurfer/claude-skills-marketplace/plugin install theflysurfer-claude-skills-marketplace@theflysurfer/claude-skills-marketplaceThis skill is limited to using the following tools:
Reviews skills against Anthropic's official standards from github.com/anthropics/skills.
name:
description:
allowed-tools (optional):
Focused scope:
Concise instructions:
Progressive disclosure:
Clear sections:
References over duplication:
Operational focus:
❌ Description too long (>200 chars)
❌ Too much detail (300+ lines)
❌ Duplicates existing docs (should reference instead)
❌ Development notes in content (timestamps, "validated on...", changelog)
❌ Generic/vague description (doesn't explain when to use)
❌ Mixed language without clear reason
❌ Overly complex (trying to do too much)
❌ Hardcoded credentials (passwords, API keys, tokens, database credentials)
❌ Sensitive data in examples (should use placeholders or .env variables)
❌ Absolute paths in examples (/home/user/..., C:\Users\...)
❌ Platform-specific paths (Windows-only or Unix-only)
## Skill Review: {{SKILL_NAME}}
### ✅ Strengths
- [List what follows best practices]
### ⚠️ Issues Found
- [List problems with severity]
### 📋 Recommendations
- [Specific actionable improvements]
### Metrics
- Description length: {{X}} chars (target: 100-150)
- Content length: {{Y}} lines (target: 100-200)
- YAML valid: Yes/No
- References docs: Yes/No
- Hardcoded credentials: Yes/No (should be No)
- Uses relative paths: Yes/No (should be Yes)
Search skill content for:
password=, -p, PASSWORD=api_key=, API_KEY=, token=mysql -u USER -pPASSWORD, postgresql://user:pass@Bearer, OAuth, JWTRecommendation if found:
.env file$VAR_NAME or source .env).env to .gitignore.env structure in skill's Environment Variables sectionSearch skill content for:
/home/username/, /Users/username/, C:\Users\C:\, backslashes), Unix-only commandsRecommendation if found:
.env, ./scripts/, ~/ for home directory~/.claude/skills/ instead of /home/user/.claude/skills/{{PROJECT_ROOT}}, {{HOME}}This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.