← cerebral.work cerebral.work
docs · install · usage

docs

One repo, one installer, two surfaces. This is where you go from a clean box to a running reverie mesh — the memory daemon up, the cortex console on your path, and a mental model for which piece is doing what.

The mental model

reverie ships as a single repo that builds three things you care about. They are easy to keep straight once you know which question each one answers:

The seam: you rarely talk to reveried directly. cortex is the surface you drive the daemon and the mesh from. reverie decides what an agent remembers; cortex steers the agents that use it. They live in one repo and are versioned together.

One-shot install

The default path gets you a running reveried daemon, the cortex CLI, and the bench harness on any machine with a Rust toolchain — about five minutes on a clean box:

git clone [email protected]:cerebral-work/reverie.git
cd reverie
scripts/install-reverie.sh

That single script:

Nothing is written outside $HOME and no sudo is used. The script is idempotent — to upgrade, git pull and run it again; it stops the daemon, swaps the binary, restarts, and re-smokes /health.

Prerequisites: a Rust toolchain (rustup) and git are required; redis-server and a systemd user bus are recommended but optional. On Windows, run inside WSL2. Redis is only recommended because the coord paths fall through to filesystem-only when it’s absent.

Quickstart

With the daemon installed and running, everything else routes through cortex. A first session, end to end:

cortex init                 # cold-boot the mesh: verify infra, enable the reaper,
                            #   restart canonical workers, spawn the queue fan-out
                            #   pool; prewarm Ollama if available
cortex health               # confirm reveried is live on :7437
cortex sessions up          # bring up all canonical workers via mesh-spawn
cortex dash                 # watch the mesh live
cortex sessions down        # tear down all workers (preserves dirty worktrees)

cortex health --json is the one-shot probe across daemon + coord — the same signal external monitors consume. For the full set of verbs and flags, cortex --help is the canonical surface; this hub covers the path in, not every command.

Where to go next

The two projects this installs, each with its own page:

Status

Proprietary, bundled together and versioned with reverie (currently v0.9.13). Commands and flags will move until the v1.0 milestone — this hub tracks the install and bring-up path as the surface settles. For commercial licensing, embedded use, or evaluation access, [email protected].

Meet reverie → Open cortex →