Stats
Actions
Tags
From team-shinchan
Validates skill schema, naming conventions, and input validation rules in a Claude Code plugin directory. Run after modifying skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:verify-skillsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**When this skill is invoked, execute immediately. Do not explain.**
When this skill is invoked, execute immediately. Do not explain.
| Validator | Command | What it checks |
|---|---|---|
| skill-schema | cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/skill-schema.js | Skill files follow required schema (frontmatter, sections) |
| skill-format | cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/skill-format.js | Skill naming conventions and structural format |
| input-validation | cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/input-validation.js | Input validation rules are properly defined |
skills/cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/skill-schema.js
Success criteria:
On failure:
cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/skill-format.js
Success criteria:
On failure:
cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/input-validation.js
Success criteria:
On failure:
npx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchanGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.