Skill

team-shinchan:verify-consistency

Use when you need to validate cross-references, stage matrix, or debate consistency.

From team-shinchan
Install
1
Run in your terminal
$
npx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchan
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

⚠️ MANDATORY EXECUTION - DO NOT SKIP

When this skill is invoked, execute immediately. Do not explain.

Validators

ValidatorCommandWhat it checks
cross-refscd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/cross-refs.jsCLAUDE.md agent/skill references match actual files
stage-matrixcd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/stage-matrix.jsWorkflow stage definitions are consistent
debate-consistencycd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/debate-consistency.jsDebate panelist and topic configurations are valid

When to Run

  • After modifying CLAUDE.md
  • After changing workflow stages or debate configurations
  • After adding/removing agents or skills
  • As part of verify-implementation workflow

Workflow

Check 1: Cross-References

cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/cross-refs.js

Success criteria:

  • Exit code 0
  • All agent references in CLAUDE.md resolve to actual files

On failure:

  • Issue: CLAUDE.md references non-existent agent or skill
  • Severity: CRITICAL
  • Fix: Update CLAUDE.md reference or create missing file

Check 2: Stage Matrix

cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/stage-matrix.js

Success criteria:

  • Exit code 0
  • Stage definitions consistent across all references

On failure:

  • Issue: Stage matrix mismatch between CLAUDE.md and workflow docs
  • Severity: HIGH
  • Fix: Sync stage definitions across files

Check 3: Debate Consistency

cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/debate-consistency.js

Success criteria:

  • Exit code 0
  • Debate panelists reference valid agents

On failure:

  • Issue: Debate config references invalid agent or missing topic
  • Severity: MEDIUM
  • Fix: Update debate configuration to match available agents
Stats
Stars7
Forks0
Last CommitMar 23, 2026