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

# Quickstart

> Augment is the developer AI for teams that deeply understands your codebase and how you build software. Your code, your dependencies, and your best practices are all at your fingertips.

export const Next = ({children}) => <div className="border-t border-b pb-8 border-gray dark:border-white/10">
    <h3>Next steps</h3>
    {children}
  </div>;

export const Keyboard = ({shortcut}) => <span className="inline-block border border-gray-200 bg-gray-50 dark:border-white/10 dark:bg-gray-800 rounded-md text-xs text-gray font-bold px-1 py-0.5">
    {shortcut}
  </span>;

### 1. Install the Augment extension

<CardGroup cols={3}>
  <Card href="https://marketplace.visualstudio.com/items?itemName=augment.vscode-augment">
    <img className="w-12 h-12" src="https://mintcdn.com/augment-mtje7p526w/UY2Rh_0CnixHwMMm/images/vscode-icon.svg?fit=max&auto=format&n=UY2Rh_0CnixHwMMm&q=85&s=47281db92ee05156193ad2d7add521ee" alt="Visual Studio Code" width="64" height="64" data-path="images/vscode-icon.svg" />

    <h2 className="pt-4 font-semibold text-base text-gray-800 dark:text-white">
      Visual Studio Code
    </h2>

    <p>Install Augment for Visual Studio Code</p>
  </Card>

  <Card className="bg-red" href="https://plugins.jetbrains.com/plugin/24072-augment">
    <img className="w-12 h-12" src="https://mintcdn.com/augment-mtje7p526w/fJvjK_qwrwY5u9ss/images/jetbrains-icon.svg?fit=max&auto=format&n=fJvjK_qwrwY5u9ss&q=85&s=b05fd40fb2fc22b43d89a90abfc463a0" alt="JetBrains IDEs" width="64" height="64" data-path="images/jetbrains-icon.svg" />

    <h2 className="pt-4 font-semibold text-base text-gray-800 dark:text-white">
      JetBrains IDEs
    </h2>

    <p>Install Augment for JetBrains IDEs, including WebStorm, PyCharm, and IntelliJ</p>
  </Card>

  <Card className="bg-red" href="/cli/setup-auggie/install-auggie-cli">
    <img className="w-12 h-12" src="https://mintcdn.com/augment-mtje7p526w/OQGzHw_wD-n9a1ch/images/cli.svg?fit=max&auto=format&n=OQGzHw_wD-n9a1ch&q=85&s=bdc9aed7bd4c71864560604d3d0b7f77" alt="Auggie CLI" width="230" height="230" data-path="images/cli.svg" />

    <h2 className="pt-4 font-semibold text-base text-gray-800 dark:text-white">
      Auggie CLI
    </h2>

    <p>
      All the power of Augment's agent, context engine, and tools in your terminal.
    </p>
  </Card>
</CardGroup>

### 2. Sign-in and sync your repository

For VS Code and JetBrains IDEs, follow the prompts in the Augment panel to [sign in](/setup-augment/sign-in) and [index your workspace](/setup-augment/workspace-indexing). If you don't see the Augment panel, press <Keyboard shortcut="Cmd/Ctrl L" /> or click the Augment icon in the side panel of your IDE.

For Auggie CLI, use the command `auggie login` to sign in.

### 3. Start coding with Augment

<Steps>
  <Step title="Using Agent">
    Augment agent enables you to complete tasks using natural language. Ask Agent to explain your codebase, debugging an
    issue, or writing entire functions, tests, or features. See [Using
    Agent](/using-augment/agent) for more details.
  </Step>
</Steps>

<Next>
  * [Use keyboard shortcuts](/setup-augment/vscode-keyboard-shortcuts)
  * [Configure indexing](/setup-augment/workspace-indexing)
</Next>
