Skip to content

Quickstart

This guide takes you from zero to an agent session you can drive from your phone or browser. Budget five minutes.

  • Node.js 20 or newer and npm on the machine that will run agents.
  • A device for the other end: the web app at app.consortium.dev works everywhere.
Terminal window
curl -fsSL https://api.consortium.dev/install | sh

Detects your release channel and installs the channel-correct package.

Verify:

Terminal window
consortium --version
Terminal window
consortium auth login

By default this opens your browser to authenticate. Two alternatives:

Terminal window
consortium auth login --mobile # scan a QR code with the mobile app
consortium auth login --email # magic code sent to your email

Signing 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:

Terminal window
consortium auth status
consortium daemon status

Each agent is its own subcommand. Run these from the project directory you want the agent to work in:

Terminal window
consortium claude # Claude Code
consortium codex # Codex
consortium gemini # Gemini CLI
consortium grok # Grok
consortium pi # Pi
consortium 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.

Agent CLIs use whatever credentials they normally use. To store provider API keys with Consortium so agents can run without per-tool setup:

Terminal window
consortium connect claude # Anthropic API key
consortium connect codex # OpenAI API key
consortium connect gemini # Gemini API key

See BYOK for how keys are stored and injected.

Terminal window
consortium doctor # diagnose common problems
consortium doctor clean # kill runaway agent/daemon processes
consortium daemon logs # print the path of the latest daemon log
consortium reset # last resort: wipe local state (--keep-auth)