From team-shinchan
Analyzes git changes and maps them to verify-* skill validators for coverage reporting and gap detection.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:manage-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.
git status --porcelain && git diff --name-only HEAD~1
Exempt paths (not verification targets): .shinchan-docs/**, docs/**, WORKFLOW_STATE.yaml, tests/validate/**, node_modules/**, .git/**
Verification targets: agents/.md, skills//SKILL.md, hooks/*.md, CLAUDE.md, tests/** (except validators)
| Changed Path | Verify Skill | Validators |
|---|---|---|
agents/*.md, agents/_shared/*.md | verify-agents | agent-schema, shared-refs |
skills/*/SKILL.md | verify-skills | skill-schema, skill-format, input-validation |
CLAUDE.md | verify-consistency | cross-refs, stage-matrix, debate-consistency |
docs/workflow-guide.md, hooks/*.md | verify-workflow | workflow-state-schema, error-handling, quick-fix-path |
agents/*-part-*.md | verify-workflow | part-numbering |
| Memory-related sections | verify-memory | memory-system |
| Any file creation/expansion | verify-budget | token-budget |
hooks/hooks.json, plugin.json | verify-workflow | hook-registration |
skills/*/SKILL.md, commands/*.md | verify-skills | skill-command-parity |
plugin.json, marketplace.json, README.md, CHANGELOG.md | verify-consistency | version-consistency |
Total: 17 validators across 7 verify-* skills.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🔧 [Skill Manager] Coverage Analysis
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📊 Changed files: {count}
✅ Covered: {file → verify-skill (validators)}
⚠️ Uncovered: {file → No matching skill}
📋 Run: cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/index.js
*.md from analysis (they ARE the codebase)src/ directories — out of scope for THIS skill (manage-skills maps only the markdown harness surface; the src/ JS engine layer is documented in CLAUDE.md § "Source Layer (src/)")tests/validate/All changed files analyzed, each mapped to verify-* skill, gaps identified, validator commands listed.
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.