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

# Installation

> Dependencies, setup, and build steps for Autopilot Desktop.

## System Dependencies

Autopilot Desktop is a native Rust + WGPU app.

* Rust toolchain: `rustup`, `cargo`
* macOS: Xcode Command Line Tools (`xcode-select --install`)
* Linux: X11/Wayland + Vulkan dev headers (install your distro’s wgpu/winit deps)

## Build From Source

```bash theme={null}
git clone https://github.com/OpenAgentsInc/openagents.git
cd openagents
git checkout de76ea6
cargo build -p autopilot-desktop
```

## Run the App (Dev)

```bash theme={null}
cargo run -p autopilot-desktop
```

## `cargo autopilot`

The repo defines a Cargo alias so you can run the desktop app directly:

```bash theme={null}
cd openagents
cargo autopilot
```

If that command isn’t found, ensure you’re running from the repo root and that
`.cargo/config.toml` exists (it defines the alias).
