From team-shinchan
Validates cross-references, stage matrix, and debate consistency in a Claude Code plugin directory. Runs after modifying CLAUDE.md, workflow stages, or agent/skill files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:verify-consistencyThe 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 |
|---|---|---|
| cross-refs | cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/cross-refs.js | CLAUDE.md agent/skill references match actual files |
| stage-matrix | cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/stage-matrix.js | Workflow stage definitions are consistent |
| debate-consistency | cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/debate-consistency.js | Debate panelist and topic configurations are valid |
CLAUDE.mdcd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/cross-refs.js
Success criteria:
On failure:
cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/stage-matrix.js
Success criteria:
On failure:
cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/debate-consistency.js
Success criteria:
On failure:
Phase 2 (interview-metrics-researc-002) added the DAG executor on top of the frozen Phase 1
contracts (agents/misae.md 4-step option pipeline, skills/fierce-option-panel/ Workflow,
src/option-metrics.js). Phase 2 only ADDS new exports/modules; it MUST NOT alter Phase 1
function signatures. The DAG schema fields (id, depends_on, touches, verify, estimate,
scope) and the executor module must remain consistent with docs/dag-executor.md.
cd "${CLAUDE_PLUGIN_ROOT}" && node --test tests/option-metrics.test.js && node --test tests/dag-executor.test.js
Success criteria:
tests/option-metrics.test.js still passes (no signature regression, NFR-2)tests/dag-executor.test.js passesdag-executor.js into option-metrics.js (dependency-inversion ban)On failure:
docs/dag-executor.md cross-phase safety)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.