Quickstart (CLI)
Run tools from your terminal with live logs and clear results. This page
assumes you already have flwd in your PATH and at least one job available.
List, plan and run
List jobs:
$ flwd :jobsPreview a plan without running anything:
$ flwd :plan hello-world --name "Alice"Execute the job and stream logs to the console:
$ flwd hello-world --name "Alice"Ask for structured output (events as JSON):
$ flwd hello-world --name "Alice" --jsonWhat you will see:
- Planning validates inputs and shows which steps will run.
- Runs stream logs and events in real time; secrets are redacted.
- Finished runs are recorded so you can revisit their logs and artifacts later.
Tip: use --idempotency-key (or let the CLI generate one) if you are calling
jobs from CI or other automation and want to avoid duplicate effects.
Inspect past runs
List past runs:
$ flwd :runsShow details for a specific run:
$ flwd :runs --id RUN_ID_HERE --jsonUse jq to navigate the run journal:
$ flwd :runs --json | jq '.runs[0]'Use the TUI
For a more interactive workflow, the TUI mirrors the CLI but with forms:
$ flwd :tuiFrom the TUI you can:
- browse jobs and read their descriptions,
- fill in arguments with validation feedback,
- launch runs and watch logs,
- inspect past runs.
The TUI is optional and uses the same engine, so everything you do from there can also be done via the CLI or HTTP API.
Remote CLI against a server
When you run flwd :serve, the CLI can talk to that server instead of executing
jobs directly on your machine. A minimal example:
$ flwd :serve --bind 127.0.0.1:8080 --profile secure --devIn another terminal:
$ export FLOWD_REMOTE=http://127.0.0.1:8080
$ export FLOWD_TOKEN=dev-token
$ flwd :jobs
$ flwd hello-world --name "Alice"The CLI detects the remote configuration and uses the HTTP API, but the commands stay the same.
For more details, see Serve Mode (HTTP + SSE).