> ## Documentation Index
> Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Developer Quickstart

> Set up the Murmur CLI, join your team's workspace, and spawn your first agent — the developer's path from zero to a working pull request.

<Info>
  Your admin must finish [Admin Quickstart](/admin-quickstart) before developers can use Murmur.
</Info>

Murmur setup happens in two stages. Your admin configures the team Workspace once, then each developer sets up Murmur locally. This page covers the developer side.

## CLI setup

CLI setup requires a GitHub account, the `gh` CLI (authenticated via `gh auth login`), and a Claude API key or Anthropic subscription.

### Step 1: Install the CLI

```bash theme={null}
brew tap prassoai/tap
brew install prassoai/tap/murmur
```

### Step 2: Navigate to your repository

`cd` into the repository where you want your Murmur agents to work.

### Step 3: Set up

```bash theme={null}
murmur setup
```

The wizard:

* Gathers your credentials (GitHub, Claude, optionally OpenAI)
* Generates an SSH signing key, and optionally uploads the public key to GitHub for verified commits
* Reads the shared `.murmur/murmur.yaml` your admin committed and bookmarks the same tenant and Workspace
* Writes your encrypted personal profile to `.murmur/murmur.local.yaml` (gitignored)
* Registers the Murmur MCP with your coding agent (e.g. Claude Code)

When prompted to add the Murmur MCP, say **Yes**.

## Next steps

<CardGroup cols={2}>
  <Card title="Spawn your first agent" icon="rocket" href="/spawn-your-first-agent">
    Launch an agent from the dashboard, CLI, or your coding agent.
  </Card>

  <Card title="Core concepts" icon="lightbulb" href="/concepts/overview">
    Agents, Workspaces, Pools, Flights, Events, and the rest of the model.
  </Card>

  <Card title="Flights" icon="paper-plane" href="/concepts/flights">
    Orchestrate multiple agents with declarative Markdown DAGs.
  </Card>

  <Card title="CLI reference" icon="terminal" href="/cli/spawn">
    All flags and options for `murmur spawn`.
  </Card>
</CardGroup>
