Get Started

Quickstart

Configure the CLI, find a Playbook, and preserve your first result.


The CLI is a standalone executable. On macOS or Linux:

curl -fsSL https://epismo.ai/install.sh | sh
epismo login
epismo whoami
epismo workspace list --output table
epismo workspace use acme # optional: save a default workspace
epismo -w acme playbook search "release review" --output table

On Windows, install it from PowerShell, then run the same epismo commands:

irm https://epismo.ai/install.ps1 | iex

If you already have Node.js, you can install it via npm instead:

npm install -g epismo

Read the selected Playbook. You do not need a Case merely to use its guidance. Start one when the outcome should be shared or resumed.

epismo playbook get <playbook-id>
epismo case start --version-id <version-id> --case-input '{"repository":"example"}'
epismo case record append <case-id> --kind result --origin agent --content "Review completed"
epismo case get <case-id>
epismo case close <case-id> --outcome completed --lock-version <n>

Use the latest lock version returned by the Case. Starting a Case does not create one Task per Step. Continue with Your first Case.