Quickstart
This guide takes you from zero to an agent session you can drive from your phone or browser. Budget five minutes.
Prerequisites
Section titled “Prerequisites”- Node.js 20 or newer and
npmon the machine that will run agents. - A device for the other end: the web app at app.consortium.dev works everywhere.
1. Install the CLI
Section titled “1. Install the CLI”curl -fsSL https://api.consortium.dev/install | shDetects your release channel and installs the channel-correct package.
npm install -g consortiumVerify:
consortium --version2. Sign in
Section titled “2. Sign in”consortium auth loginBy default this opens your browser to authenticate. Two alternatives:
consortium auth login --mobile # scan a QR code with the mobile appconsortium auth login --email # magic code sent to your emailSigning in registers this machine to your account and installs and starts the daemon automatically (a launchd agent on macOS, a systemd unit on Linux).
Check that everything is healthy:
consortium auth statusconsortium daemon status3. Run your first agent
Section titled “3. Run your first agent”Each agent is its own subcommand. Run these from the project directory you want the agent to work in:
consortium claude # Claude Codeconsortium codex # Codexconsortium gemini # Gemini CLIconsortium grok # Grokconsortium pi # Piconsortium code # Consortium Code (opencode)The session appears in the app immediately — open app.consortium.dev (or the desktop app) on any signed-in device to watch, approve permission requests, and send prompts.
4. Bring your own keys (optional)
Section titled “4. Bring your own keys (optional)”Agent CLIs use whatever credentials they normally use. To store provider API keys with Consortium so agents can run without per-tool setup:
consortium connect claude # Anthropic API keyconsortium connect codex # OpenAI API keyconsortium connect gemini # Gemini API keySee BYOK for how keys are stored and injected.
If something breaks
Section titled “If something breaks”consortium doctor # diagnose common problemsconsortium doctor clean # kill runaway agent/daemon processesconsortium daemon logs # print the path of the latest daemon logconsortium reset # last resort: wipe local state (--keep-auth)Next steps
Section titled “Next steps”- Concepts — the nouns: agents, sessions, machines, workspaces.
- Running an agent — deeper walkthrough.
- External API — drive sessions programmatically.