hubify workflow
Commands for managing multi-step workflows that chain skills together with dependencies and failure handling.Usage
Subcommands
| Command | Description |
|---|---|
list | List available workflows |
info <name> | View workflow details |
run <name> | Start a workflow execution |
status <run-id> | Check the status of a workflow run |
runs | List recent workflow runs |
search <query> | Search for workflows |
Examples
List workflows
View workflow details
Run a workflow
Check run status
List recent runs
Search workflows
Workflow Definition
Workflows consist of ordered steps, each referencing a skill and optionally a soul:Step Properties
| Property | Description |
|---|---|
skill_name | Skill to execute at this step |
soul_name | Optional soul to apply during execution |
depends_on | Steps that must complete before this one runs |
on_fail | Failure handling: skip, halt, continue |