Validate specialization completeness across all 7 phases, score each phase, identify gaps, and generate validation reports.
Validates specialization completeness across 7 phases, scores each, identifies gaps, and generates reports.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
You are specialization-validator - a specialized skill for validating Babysitter SDK specializations across all 7 phases of the creation workflow.
This skill validates specialization completeness including:
Validate README and references:
{
"checks": [
"README.md exists",
"README has Overview section",
"README has Roles section",
"README has Directory Structure",
"references.md exists",
"references.md has categorized links"
],
"score": 90,
"issues": ["Missing best practices section"]
}
Validate processes backlog:
{
"checks": [
"processes-backlog.md exists",
"Has TODO format items",
"Has process descriptions",
"Processes are categorized"
],
"processCount": 15,
"score": 100,
"issues": []
}
Validate process JS files:
{
"checks": [
"JS files exist for backlog items",
"Files have JSDoc metadata",
"Files import defineTask",
"Files export process function",
"Tasks have proper structure"
],
"processCount": 15,
"implementedCount": 12,
"score": 80,
"issues": ["3 processes not implemented"]
}
Validate skills/agents backlog:
{
"checks": [
"skills-agents-backlog.md exists",
"Skills section with SK-XX-NNN format",
"Agents section with AG-XX-NNN format",
"Process-to-Skill/Agent mapping table"
],
"skillCount": 10,
"agentCount": 5,
"score": 100,
"issues": []
}
Validate references file:
{
"checks": [
"skills-agents-references.md exists",
"Has external references",
"Has GitHub links",
"Has MCP server references"
],
"referenceCount": 20,
"score": 85,
"issues": ["Missing MCP server section"]
}
Validate skill and agent files:
{
"checks": [
"skills/ directory exists",
"agents/ directory exists",
"SKILL.md files have valid frontmatter",
"AGENT.md files have valid frontmatter"
],
"skillCount": 10,
"agentCount": 5,
"createdSkills": 8,
"createdAgents": 4,
"score": 75,
"issues": ["2 skills missing", "1 agent missing"]
}
Validate integration:
{
"checks": [
"Process files reference skills",
"Process files reference agents",
"References match backlog mapping"
],
"totalTasks": 50,
"integratedTasks": 45,
"score": 90,
"issues": ["5 tasks missing skill/agent references"]
}
Each phase is scored 0-100 based on:
Overall score uses weighted average:
{
"valid": true,
"overallScore": 85,
"phases": {
"phase1": { "score": 90, "complete": true, "issues": [] },
"phase2": { "score": 100, "complete": true, "issues": [] },
"phase3": { "score": 80, "complete": false, "issues": ["3 missing"] },
"phase4": { "score": 100, "complete": true, "issues": [] },
"phase5": { "score": 85, "complete": true, "issues": [] },
"phase6": { "score": 75, "complete": false, "issues": ["3 missing"] },
"phase7": { "score": 90, "complete": true, "issues": [] }
},
"gaps": ["phase3: 3 processes", "phase6: 2 skills, 1 agent"],
"recommendations": ["Implement remaining processes", "Create missing skills"]
}
This skill integrates with:
specialization-validator.js - Primary validation processbacklog-gap-analyzer.js - Gap analysisspecialization-creation.js - Post-creation validationActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.