From epieczko-betty
Validates workflow YAML files to ensure structure and schema correctness.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin epieczko-bettyThis skill uses the workspace's default tool permissions.
Ensures that workflow YAML files are valid before execution.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Ensures that workflow YAML files are valid before execution.
Checks required fields (steps, skill, args) and field types.
python skills/workflow.validate/workflow_validate.py workflows/example.yaml
workflow_path – Path to the workflow file.ok, errors, status, and path fields.Input (invalid_workflow.yaml):
steps:
- args: ["foo"]
Output:
{
"valid": false,
"errors": ["Step 1 missing 'skill'"],
"status": "failed"
}
context.schemav0.1.0