| name | my-workflow |
| description | REPLACE: 150-250 char description. Lead with 'Use when ...', include 3-5 trigger phrases the user might say, and end with what this skill produces. This text is ALWAYS in context once the plugin is enabled — keep it tight. |
My Workflow
Short orchestrator. Routes to the right stage file based on the args value. Bulky content lives in stages/ and is loaded only when needed.
How to Run
- Read the
args value passed to this skill invocation. Extract the stage name.
- If
args is empty or ambiguous, ask the user which stage they need. Match these triggers:
- "REPLACE: phrase 1" → example-stage
- "REPLACE: phrase 2" → example-stage
- Read the corresponding file from
stages/<stage>.md (relative to this SKILL.md location):
example-stage → stages/example-stage.md
- Follow the instructions inside that stage file exactly. Each stage file is self-contained.
Available Stages
| Stage | When to Use | Output |
|---|
example-stage | REPLACE: one-line trigger description | REPLACE: artifact path |
Core Principles
REPLACE with any cross-cutting principles that apply to all stages. Stage-specific guidance belongs inside individual stage files.