Workflow Automation Skill
Create and manage multi-step automation workflows.
Usage
/workflow-automation <action> [name/id] [options]
Actions
| Action | Description | Example |
|---|---|---|
create |
Create a new workflow | /workflow-automation create "Daily Report" |
run |
Execute a workflow | /workflow-automation run daily-backup |
list |
List all workflows | /workflow-automation list |
status |
Check workflow status | /workflow-automation status workflow-id |
pause |
Pause running workflow | /workflow-automation pause workflow-id |
resume |
Resume paused workflow | /workflow-automation resume workflow-id |
cancel |
Cancel workflow | /workflow-automation cancel workflow-id |
Workflow Features
- Sequential Steps: Run actions one after another
- Conditional Branching: If/else based on previous results
- Loops: Repeat actions for a list of items
- Parallel Execution: Run independent actions simultaneously
- Sub-workflows: Nest workflows for complex pipelines
- Error Handling: Retry, skip, or abort on failure