validate-plan-file

Validate orchestrator plan files against JSON Schema Draft-07.

1|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/RussianLioN/moltinger --skill validate-plan-file-russianlion
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: validate-plan-file
Source: https://github.com/RussianLioN/moltinger/tree/main/.claude/skills/validate-plan-file
Command: npx skills add https://github.com/RussianLioN/moltinger --skill validate-plan-file-russianlion

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill prevents errors and ensures consistency by validating orchestrator plan files against predefined schemas before they are processed.

Core Features & Use Cases

  • Schema Validation: Verifies that plan files conform to expected JSON schemas.
  • Error Detection: Identifies missing fields, incorrect data types, and invalid enum values.
  • Use Case: Before a security scanning worker reads a plan file, this Skill validates its structure and required parameters to prevent runtime errors and ensure the scan is configured correctly.

Quick Start

Use the validate-plan-file skill to validate the plan file named '.bug-detection-plan.json'.

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 an orchestrator plan file against a JSON schema?

To validate a plan file, the Skill checks it against JSON Schema Draft-07 specifications to ensure structural integrity. It verifies required fields, data types, enum constraints, and pattern matching to prevent runtime errors before processing.

What types of workflow plan files can be checked for structural integrity?

Plan file validation applies to all orchestrator types including bug, security, dead code, and dependency workflows. The schema validation ensures each specific workflow type adheres to its required parameters and structural constraints.

Why does my security scanning worker fail when reading a plan file?

Security scanning failures occur when plan files lack required fields or contain invalid enum values. Validating the plan file structure and parameters before the worker reads it prevents runtime errors and ensures the scan is configured correctly.

Can I use JSON Schema Draft-07 validation to enforce enum constraints in plan files?

Yes, JSON Schema Draft-07 validation enforces enum constraints, type checking, and pattern matching for plan files. This ensures strict schema compliance and identifies missing fields or incorrect data types during the validation process.

What is the best way to check for missing required fields in a JSON plan file?

The best way to check for missing fields is validating the JSON plan file against its predefined schema. This error detection process identifies missing fields, incorrect data types, and invalid enum values to ensure consistency.