Quickstart
The 60-second path
1. Install
Requires Node. Installs the CLI globally.
npm i -g reelier
2. Init
reelier init is the guided first run: it detects a Claude Code MCP config (.mcp.json or ~/.claude.json) and offers to record against your own MCP server, or falls back to a zero-setup demo (fetching this package’s own npm registry metadata). Either way it records a real workflow, compiles it, replays it, and prints a receipt.
reelier init
Pass --yes to skip every prompt and run non-interactively (no config is ever written under --yes) — useful in CI.
3. Run it again
Replay the compiled skill. Level 0: no LLM, no network reasoning, milliseconds.
reelier run skills/<your-skill>.skill.md
See what would execute without actually calling anything with --dry-run.
4. Push (optional)
Sync the skill and its run records to Reelier Cloud, so your receipts show up in a dashboard instead of only living in local .reelier/ files. Fully opt-in and inert until both env vars are set — see Cloud.
export REELIER_CLOUD_URL=https://www.reelier.com export REELIER_CLOUD_KEY=<your key> reelier push skills/<your-skill>.skill.md
What you get
A real receipt, not a promise: steps passed/unchecked/failed, replay time, LLM tokens spent (0 at Level 0). Next: read how it worksfor the full record → compile → replay → self-heal loop, or Recording to capture a real workflow instead of the demo path.