From team-shinchan
Executes all verify-* skills in sequence and produces a consolidated validation report with pass/fail status, then optionally fixes and revalidates.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:verify-implementationThe 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.
Run all validators at once (from plugin root):
cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/index.js
If all pass, report success and stop. If any fail, continue to detailed execution below.
Glob skills/verify-*/SKILL.md, filter out self. Announce discovered count and list.
For each verify-* skill (alphabetical):
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🦸 [Action Kamen] Validation Complete!
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
| Skill | Status | Validators |
|-------|--------|-----------|
| verify-agents | PASS/FAIL | agent-schema, shared-refs |
| verify-skills | PASS/FAIL | skill-schema, skill-format, input-validation |
| verify-consistency | PASS/FAIL | cross-refs, stage-matrix, debate-consistency |
| verify-workflow | PASS/FAIL | workflow-state-schema, error-handling, part-numbering, quick-fix-path |
| verify-memory | PASS/FAIL | memory-system |
| verify-budget | PASS/FAIL | token-budget |
Overall: {passed}/{total} passed
{Failed validator output if any}
If issues: ask user "Fix all automatically", "Review individually", or "Skip fixes". If no issues: report all passed and stop.
For each approved fix: announce, apply, report result. Then re-run only previously-failed validators and show before/after comparison.
/team-shinchan:review (Action Kamen runs as part of review)/team-shinchan:verify-implementationAll verify-* discovered and executed, consolidated report generated, user confirmation before fixes, post-fix revalidation completed.
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.