Install
Z.E.N. runs locally by default. Install it once, then you can fire workflows from the terminal, the Web UI, or from inside whichever AI agent you already use.
One-line install
bash
curl -fsSL https://zen.choosecadence.com/install | bashpowershell
irm https://zen.choosecadence.com/install.ps1 | iexbash
brew install Cadence-Intelligence/zen/zenbash
docker run --rm -v "$PWD:/workspace" ghcr.io/Cadence-Intelligence/zen:latest workflow listThe installer drops the zen binary into your path. Open a new terminal and run zen version to confirm.
From source
If you want to hack on Z.E.N. itself or pin to a specific commit:
bash
git clone https://github.com/Cadence-Intelligence/zen
cd zen
bun installYou'll need Bun >= 1.0.0 on your machine. That's the only hard prerequisite.
Optional: install an AI provider
Z.E.N. doesn't ship its own AI. You wire one in. The supported providers right now:
- Claude (via Claude Code). If you already have a Claude Pro or Max subscription and use Claude Code, you're set; nothing else to install.
- Codex (via the Codex SDK). Set
CODEX_ACCESS_TOKENin your environment. - Pi (built in). No extra install; configure under
assistants:in~/.zen/config.yaml.
You can mix providers across a workflow. The choice is per-step, not per-workflow. See Dispatch from your agent for details.
Verify
bash
zen version
zen workflow listThe first command prints the installed version. The second shows the bundled workflows. If both work, you're done.
Next
- Quick start to run your first workflow.
- Your first workflow to write your own.
- Dispatch from your agent to fire workflows from inside Claude Code, OpenClaw, or Hermes.