CLIFlow
Flow
8 `hanzo` commands for Flow, each calling one operation on api.hanzo.ai.
Package flow is Hanzo Flow: build an agent workflow on a visual canvas, run it, and read every run.
8 commands · API reference →
| Command | Calls | What it does |
|---|---|---|
hanzo flow runs get | GET /v1/flow/runs | Runs reads one workflow's recorded runs: every component build with its result, keyed by component. |
hanzo flow runs create | POST /v1/flow/runs | Run executes one of the caller's workflows synchronously: the graph runs in the flow service and the response carries… |
hanzo flow status | GET /v1/flow/status | Status reports whether the flow service is reachable and which version it runs. |
hanzo flow workflows get <workflow> | GET /v1/flow/workflows/{workflow} | Workflow reads one of the caller's workflows — the full record, graph included. |
hanzo flow workflows update <workflow> | PATCH /v1/flow/workflows/{workflow} | Patches one of the caller's workflows: name, description, graph, or the locked flag — only the stated fields move. |
hanzo flow workflows rm <workflow> | DELETE /v1/flow/workflows/{workflow} | Deletes one of the caller's workflows and its runs. |
hanzo flow workflows list | GET /v1/flow/workflows | Workflows lists the caller's workflows, paged. |
hanzo flow workflows create | POST /v1/flow/workflows | Creates a workflow in the caller's org. |
How is this guide?