<!-- GENERATED by docs/scripts/gen-cli-reference — DO NOT EDIT.
Source of truth: the cobra command definitions in cmd/axiom/cmd/.
Regenerate from the repo root with: go run ./docs/scripts/gen-cli-reference -->
axiom flow new
Scaffold a starter flow.yaml
Scaffold a starter <flow-name>.flow.yaml with two example nodes and an edge.
The name must be fully qualified — "your-handle/flow-name" — exactly like a package's axiom.yaml name, so a published flow can never collide with another tenant's flow of the same short name (ADR-173).
Edit it to set each node's package + node name (find them with "axiom search --json") and wire the edges, then validate/layout/compile.
Usage
axiom flow new <handle>/<flow-name> [flags]Flags
| Flag | Shorthand | Type | Default | Description |
|---|---|---|---|---|
--help | -h | bool | help for new |
See also
- axiom flow — Author and compile flows (graphs of published nodes)
Related