validate-plan-file

Validate orchestrator plan files against structured JSON schemas.

243|40|Updated Nov 11, 2025
One-click install
npx skills add https://github.com/maslennikov-ig/claude-code-orchestrator-kit --skill validate-plan-file
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: validate-plan-file
Source: https://github.com/maslennikov-ig/claude-code-orchestrator-kit/tree/main/.claude/skills/validate-plan-file
Command: npx skills add https://github.com/maslennikov-ig/claude-code-orchestrator-kit --skill validate-plan-file

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill validates plan files against base and domain schemas to prevent misconfigurations in orchestration.

Core Features & Use Cases

  • Schema-based validation: Loads the appropriate schema based on file name patterns.
  • Domain-specific checks: Validates fields like priority/severity and max items.
  • Detailed errors: Reports missing fields and invalid values to guide corrections.

Quick Start

Validate .bug-detection-plan.json against the bug plan schema.

Frequently Asked Questions about validate-plan-file

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate orchestrator plan files against JSON schemas?

Validation checks plan files against structured JSON schemas by matching filename patterns to appropriate schemas, then loading base and domain schemas to catch misconfigurations before they reach workers. This prevents invalid configurations in bug, security, dead-code, and dependency workflows.

What errors does plan file validation report?

Plan file validation provides detailed error reporting on missing fields, invalid values, and constraint violations like priority/severity mismatches or exceeded max items, guiding corrections with specific field-level feedback.

When should I validate plan files in my orchestration workflow?

Validate plan files at quality gates before use—during pre-read validation, post-create checks, and debugging stages—to catch schema violations early and prevent propagation of invalid configurations to workers.

Can I validate plans with custom domain-specific fields?

Yes, domain-specific validation checks fields like priority, severity, and max items constraints by loading both base schemas and domain-specific schemas matched to your plan filename pattern.

What file naming conventions does plan validation require?

Plan validation uses standardized filename patterns to map files to their appropriate schemas—for example, .bug-detection-plan.json maps to the bug detection schema for automated schema lookup and validation.