> ## 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.

# Quickstart

> Install Scott, sync recent agent work, and learn the daily team workflow.

## Get a quick overview

<CardGroup cols={2}>
  <Card title="Core concepts" icon="compass" href="/getting-started/concepts">
    Sync Chat, planspaces, reviews, approvals, the Scott agent plugin, and the GitHub App.
  </Card>

  <Card title="The Scott Method" icon="book-open" href="https://tryscott.ai/method">
    Our philosophy on building with agents: align on intent before delegating execution.
  </Card>
</CardGroup>

## Start with Sync

`scott sync` is the fastest way to onboard. From your development machine, run:

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

The installer sets up the Scott plugin for detected coding agents. Then `scott sync` reads recent local coding-agent sessions and opens `/sync`. After sync finishes, open the URL Scott prints and ask across recent Claude Code, Codex, Cursor, OpenCode, Gemini, and other supported agent sessions.

<Tip>
  Install plus `scott sync` is the manual getting-started step. After that, push and pull should be invoked from your coding agent because they depend on the active thread context.
</Tip>

Learn more in [Sync](/developer-tools/sync).

## Add code context

Sync Chat works immediately from session history. For code-aware answers, connect GitHub from the Sync Chat source picker or the planspace composer.

1. Click **Connect repo**
2. Install the Scott GitHub App for the GitHub account or organization you want Scott to read from
3. We recommend granting access to all repositories; limiting access can cap answer quality when relevant context lives outside one repo

<Info>
  **Security note:** Scott is SOC 2 compliant. We do not persist repository contents. We fetch code only into ephemeral sandboxes when an answer needs it, and if you remove GitHub access Scott can no longer fetch that code.
</Info>

After installation, the repositories you granted access to appear in Scott's repo picker.

Learn more in [Code context](/planspaces/connected-sources).

## Push early, pull when ready

Ask your coding agent to push to Scott whenever a thread becomes a prototype, design direction, or proposal that needs team feedback.

`# from claude code, codex, gemini, opencode, etc`

```text theme={null}
push this conversation to Scott so my teammates can review it
```

Your agent runs the Scott workflow from the thread that already has the context. Scott creates a planspace with a readable document and a URL you can share in Slack, Linear, a design review, or a PR description. Teammates can comment, request changes, and approve a specific document version.

When the team is aligned, start a fresh agent thread and ask it to pull from Scott:

`# from claude code, codex, gemini, opencode, etc`

```text theme={null}
pull from Scott using this planspace and start building: https://app.tryscott.ai/workspace/...
```

Learn more in [Push](/developer-tools/push), [Pull](/developer-tools/pull), and [Teams](/planspaces/overview).

## Configure PR design review

Set up the Scott GitHub App for your organization when you want pull requests to stay linked to the planspaces that shaped the work.

1. Open your team settings in Scott
2. Install the Scott GitHub App for the GitHub organization
3. Select the repositories where your team wants Scott review and PR linking
4. Add one or more planspace URLs to a pull request description or commit message

When a pull request includes planspace links, Scott connects the PR to the design approvals and review context. The GitHub App can run an agent-assisted architectural review and leave a comment on GitHub. After code lands, the PR link feeds execution context back into Scott.

Learn more in [Scott GitHub App](/developer-tools/github-app) and [PR design review](/developer-tools/scott-ci).

## What to read next

<CardGroup cols={2}>
  <Card title="Teams" icon="users" href="/planspaces/overview">
    Learn how to use planspaces, documents, comments, reviews, approvals, sharing, and For You.
  </Card>

  <Card title="Scott agent plugin" icon="terminal" href="/developer-tools/cli">
    Learn how sync, push, pull, and setup fit into your daily agent workflow.
  </Card>

  <Card title="Scott GitHub App" icon="github" href="/developer-tools/github-app">
    Learn how PR design review, execution feedback, and code context connect planspaces to code.
  </Card>

  <Card title="Reviews and approvals" icon="circle-check" href="/collaboration/reviews">
    Learn how teams approve design intent before execution.
  </Card>
</CardGroup>
