Test skill detection and activation logic
Tests skill detection logic against current project to predict activation behavior.
/plugin marketplace add physics91/claude-vibe/plugin install claude-vibe@physics91-pluginsTest a skill's detection logic against the current project or sample input.
/skill-test [skill-name]
skill-name (optional): Specific skill to test. If omitted, tests all skills.Read the specified skill's SKILL.md file from skills/<skill-name>/SKILL.md.
Extract detection criteria from the skill:
Check the current project for:
Output Format:
## Skill Test Results
### [skill-name]
**Detection Status**: ✓ Would Activate / ✗ Would Not Activate
**Matched Criteria:**
- [x] File detected: package.json
- [x] Dependency found: react
- [x] Pattern matched: src/components/**
**Unmatched Criteria:**
- [ ] File not found: next.config.js
- [ ] Dependency missing: next
**WHEN Conditions:**
- "React project review" → Matches current context
**WHEN NOT Conditions:**
- "Next.js specific" → Not triggered (no Next.js detected)
**Confidence Score**: 85%
**Recommendation**: This skill would activate for general React review.
/skill-test fastapi-reviewer
/skill-test
Output shows which skills would activate for current project.