Getting started
Install
Section titled “Install”curl -fsSL https://tryrigg.com/install | bashSpecific version:
curl -fsSL https://tryrigg.com/install | bash -s -- --version v0.1.0macOS only (prebuilt binary). Or build from source:
cargo install --path crates/cliRequirements: codex on PATH for codex steps, claude on PATH for claude steps.
Init and run
Section titled “Init and run”rigg init # creates .rigg/ with example workflowsrigg validate # check YAML syntaxrigg run hello --input name=Rigg # run a workflow--input key=value auto-parses JSON — true, 42, ["a"], {"x":1} all work.
Inspect runs
Section titled “Inspect runs”rigg status # list recent runsrigg status <run_id> --json # details as JSONrigg logs <run_id> # full outputrigg logs <run_id> --node step_id # specific stepRun data is stored under .rigg/runs/<run_id>/.
Output modes
Section titled “Output modes”| Flag | Behavior |
|---|---|
| (default) | Interactive progress (TTY only) |
--json | JSON snapshot to stdout |
--quiet | Minimal output |