CLI
Workflows
List, execute, and create multi-step workflows from the CLI.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List, execute, and create multi-step workflows from the CLI.
danube workflows list
danube workflows list "email automation"
danube workflows info <workflow-id>
danube workflows run <workflow-id> -d '{"email": "user@example.com"}'
danube workflows run <workflow-id> -d @inputs.json
danube workflows status <execution-id>
{
"name": "Daily Report",
"description": "Fetch analytics and send to Slack",
"steps": [
{
"step_number": 1,
"tool_id": "analytics-tool-id",
"description": "Fetch daily metrics",
"input_mapping": {"date": "{{inputs.date}}"}
},
{
"step_number": 2,
"tool_id": "slack-tool-id",
"description": "Send summary to Slack",
"input_mapping": {
"channel": "#reports",
"text": "{{steps.1.result.summary}}"
}
}
],
"visibility": "private",
"tags": ["reporting", "daily"]
}
danube workflows create workflow.json
danube workflows update <workflow-id> updated-spec.json
danube workflows delete <workflow-id>
