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

# Setup

> Install and configure Scott for your local coding agents.

The installer configures Scott for detected local coding agents:

```bash theme={null}
curl -fsSL https://tryscott.ai/install | sh
```

Then run the manual onboarding sync:

```bash theme={null}
scott sync
```

The installer configures the skills, rules, and hosted MCP connection where supported. `scott sync` reads recent local agent work and opens `/sync`.

## Manual setup

Use `scott setup` from a local terminal when the installer cannot detect an agent automatically or when you want to target a specific tool.

```bash theme={null}
scott setup                 # auto-detect agents
scott setup --claude        # Claude Code
scott setup --cursor        # Cursor
scott setup --codex         # Codex
scott setup --opencode      # OpenCode
scott setup --gemini        # Gemini CLI
```

You can target multiple agents in one run:

```bash theme={null}
scott setup --claude --cursor --codex
```

## What setup installs

Setup adds the Scott skill, rule, and hosted MCP entry needed for your coding agent to:

* sync recent local agent history
* push the current conversation to Scott
* pull planspace context into execution
* understand when to ask for feedback before creating a planspace

## Remove setup

```bash theme={null}
scott remove --claude
scott remove --mcp-only
scott remove --skills-only
```

Removing local setup does not delete planspaces or team context from Scott.

## Login and logout

```bash theme={null}
scott login
scott logout
```

`scott login` opens your browser and stores credentials locally. `scott logout` clears the local credentials file.
