Analyze marketplace for gaps, improvements, and composition opportunities
Analyzes your plugin marketplace to identify quality issues, missing capabilities, and suggest plugin bundles for common workflows. Use when auditing marketplace health or planning new plugins.
/plugin marketplace add cameronsjo/claude-marketplace/plugin install meta@cameronsjo[plugin-name | --full | --compositions | --gaps]/marketplace.review # Quick overview with suggestions
/marketplace.review --full # Deep analysis of all plugins
/marketplace.review --compositions # Suggest new plugin bundles
/marketplace.review --gaps # Identify missing capabilities
/marketplace.review obsidian-plugin-dev # Review specific plugin
Analyzes the local marketplace to provide actionable feedback on:
Read the marketplace structure:
# Get marketplace path
MARKETPLACE="/Users/cameron/Projects/claude-marketplace"
# Parse marketplace.json
cat "$MARKETPLACE/.claude-plugin/marketplace.json"
# Count components
find "$MARKETPLACE/plugins" -name "*.md" -path "*/agents/*"
find "$MARKETPLACE/plugins" -name "*.md" -path "*/commands/*"
find "$MARKETPLACE/registry/skills" -name "SKILL.md"
For each plugin, evaluate:
Agent Quality Checklist:
Command Quality Checklist:
Skill Quality Checklist:
Check for missing capabilities:
Common Workflows Without Coverage:
Language Coverage Gaps:
Suggest plugin bundles:
By Project Type:
By Role:
Verify naming and structure:
Naming Conventions:
Structure Requirements:
š Marketplace Health Report
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
Strengths
⢠14 plugins covering major workflows
⢠Strong TypeScript/Python coverage
⢠Consistent naming conventions
ā ļø Areas for Improvement
⢠3 agents missing "PROACTIVELY" trigger
⢠2 commands without allowed-tools
⢠No GraphQL coverage
š” Quick Wins
1. Add allowed-tools to /review.api command
2. Create graphql-development plugin
3. Add Playwright testing agent to dx-tools
š Suggested Compositions
⢠"full-stack-web": typescript + api + security
⢠"data-pipeline": python + data-science + cloud
Detailed per-plugin breakdown with:
š Capability Gap Analysis
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
Missing Agents
ā graphql-expert (GraphQL schema design, resolvers)
ā playwright-expert (E2E testing, browser automation)
ā mobile-expert (React Native, Flutter patterns)
Missing Commands
ā /docker.debug (container troubleshooting)
ā /perf.profile (performance profiling workflow)
ā /migration.run (database migration runner)
Missing Skills
ā graphql-patterns
ā testing-strategies
ā docker-patterns
Partial Coverage
ā” cloud-ops: Has AWS, missing GCP/Azure depth
ā” security-suite: Has OWASP, missing supply chain
When you identify improvements for marketplace-meta itself:
This plugin should eat its own dog food!