Setup

Install the Epismo CLI and understand JSON input/output.


Use this page when installing the CLI for the first time.

Install

npm install -g epismo
epismo --help

The CLI expects Node.js 18 or newer. It performs a daily update check unless EPISMO_UPDATE_CHECK=0 is set.

JSON input

Commands that accept structured data support inline JSON, file input, and stdin.

epismo pack create --input '{"type":"context","title":"Runbook","scope":{"type":"personal"}}'
epismo pack create --input @pack.json
cat pack.json | epismo pack create --input -

Explicit flags override fields loaded from --input.

epismo track create --input @task.json --title "Override title"

This lets you keep shared JSON templates in a repository and override only what changes per run.