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

# Quickstart for your coding agent

> The fastest way to get started with Edgee. Two commands to install, authenticate, and launch your coding assistant with compression.

The Edgee CLI is the fastest way to use Edgee with your AI coding assistant. It handles account creation, authentication,
and tool configuration automatically, no manual API key setup or environment variables needed.

<Steps>
  <Step title="Install the CLI">
    <Tabs>
      <Tab title="macOS / Linux">
        ```bash theme={"dark"}
        curl -fsSL https://edgee.ai/install.sh | bash
        ```
      </Tab>

      <Tab title="Homebrew (macOS)">
        ```bash theme={"dark"}
        brew install edgee-ai/tap/edgee
        ```
      </Tab>

      <Tab title="Windows (PowerShell)">
        ```powershell theme={"dark"}
        irm https://edgee.ai/install.ps1 | iex
        ```
      </Tab>
    </Tabs>
  </Step>

  <Step title="Launch your coding assistant">
    ```bash theme={"dark"}
    edgee launch claude
    ```

    That's it. Claude Code is now running with Edgee compression and full observability enabled.

    For Codex users:

    ```bash theme={"dark"}
    edgee launch codex
    ```

    For OpenCode users:

    ```bash theme={"dark"}
    edgee launch opencode
    ```
  </Step>
</Steps>

After your session ends, the CLI prints a link to view your session analytics, token usage,
compression savings, and cost breakdown, directly in the [Edgee Console](https://www.edgee.ai).

<img src="https://mintcdn.com/edgee/x2tJcE6leWW8m4zJ/images/session.png?fit=max&auto=format&n=x2tJcE6leWW8m4zJ&q=85&s=6a78daca11fb862232c15d069924c4bc" alt="Edgee Coding Agent Session" width="1200" height="630" data-path="images/session.png" />

<Note>
  The CLI requires [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overview) or [Codex](https://github.com/openai/codex) to be installed on your machine.
</Note>

## What's Next

<CardGroup cols={2}>
  <Card title="CLI Reference" icon="terminal" href="/features/cli">
    Full documentation of all CLI commands, flags, and configuration options.
  </Card>

  <Card title="Claude Token Compression" icon="https://mintcdn.com/edgee/RmPUqoqJw-u0FxFP/images/icons/claude.svg?fit=max&auto=format&n=RmPUqoqJw-u0FxFP&q=85&s=d3154991b618d253ee22ffaf55a433fc" href="/features/claude-compression" width="128" height="128" data-path="images/icons/claude.svg">
    Learn how lossless compression extends your Claude Code sessions by up to 3x.
  </Card>

  <Card title="Codex Token Compression" icon="https://mintcdn.com/edgee/CrNen493EQpoYoa2/images/icons/codex.svg?fit=max&auto=format&n=CrNen493EQpoYoa2&q=85&s=0f19fa96ee1277109c66c3b411f868c0" href="/features/codex-compression" width="128" height="128" data-path="images/icons/codex.svg">
    Discover how Edgee compression maximizes the length and efficiency of your Codex sessions.
  </Card>

  <Card title="Observability" icon="chart-line" href="/features/observability">
    Track token usage, costs, and latency across all your sessions.
  </Card>

  <Card title="Alerts & Budgets" icon="bell" href="/features/alerts">
    Set up spending alerts to stay in control of your AI costs.
  </Card>
</CardGroup>
