Get started

Quickstart

Read a public case, then save your own work.


You can read a public case before you sign in. Login is for saving your own work.

epismo case get <public-case-id>

The CLI is a standalone executable. On macOS or Linux, install it, then sign in to start a case of your own:

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 output --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.