Workflow Validate
About
Workflow Validate is a developer tool that checks workflow YAML files for structural and schema correctness before execution. It validates required fields like `steps`, `skill`, and `args` and ensures proper field types. The skill outputs a JSON result indicating success or failure along with any specific validation errors.
Quick Install
Claude Code
Recommended/plugin add https://github.com/epieczko/bettygit clone https://github.com/epieczko/betty.git ~/.claude/skills/Workflow ValidateCopy and paste this command in Claude Code to install this skill
Documentation
Workflow Validate
Purpose
Ensures that workflow YAML files are valid before execution.
Checks required fields (steps, skill, args) and field types.
How to Use
python skills/workflow.validate/workflow_validate.py workflows/example.yaml
Inputs
workflow_path– Path to the workflow file.
Outputs
- JSON printed to stdout with
ok,errors,status, andpathfields.
Example
Input (invalid_workflow.yaml):
steps:
- args: ["foo"]
Output:
{
"valid": false,
"errors": ["Step 1 missing 'skill'"],
"status": "failed"
}
Dependencies
context.schema
Version
v0.1.0
GitHub Repository
Related Skills
sglang
MetaSGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.
content-collections
MetaThis skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.
Algorithmic Art Generation
MetaThis skill helps developers create algorithmic art using p5.js, focusing on generative art, computational aesthetics, and interactive visualizations. It automatically activates for topics like "generative art" or "p5.js visualization" and guides you through creating unique algorithms with features like seeded randomness, flow fields, and particle systems. Use it when you need to build reproducible, code-driven artistic patterns.
business-rule-documentation
MetaThis skill provides standardized templates for systematically documenting business logic and domain knowledge following Domain-Driven Design principles. It helps developers capture business rules, process flows, decision trees, and terminology glossaries to maintain consistency between requirements and implementation. Use it when documenting domain models, creating business rule repositories, or bridging communication between business and technical teams.
