Skill

team-shinchan:verify-agents

Use when you need to validate agent schema compliance and reference integrity.

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
agent-schemacd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/agent-schema.jsAgent files follow required schema (frontmatter, sections)
shared-refscd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/shared-refs.jsShared agent references resolve to existing files

When to Run

  • After modifying any file in agents/
  • After adding/removing/renaming an agent
  • As part of verify-implementation workflow

Workflow

Check 1: Agent Schema

cd "${CLAUDE_PLUGIN_ROOT}" && node tests/validate/agent-schema.js

Success criteria:

  • Exit code 0
  • All agent files pass schema validation

On failure:

  • Issue: Agent file missing required sections or invalid frontmatter
  • Severity: HIGH
  • Fix: Follow agent template structure in agents/_shared/

Check 2: Shared References

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

Success criteria:

  • Exit code 0
  • All shared ref paths resolve correctly

On failure:

  • Issue: Broken reference to shared agent file
  • Severity: HIGH
  • Fix: Update or remove stale shared references
Stats
Stars7
Forks0
Last CommitMar 23, 2026