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

# CLI Overview

> Control plane command-line interface and automation runtime for Qumo Deploy.

# `qumod` CLI

`qumod` is the official command-line interface and automation runtime for Qumo Deploy. Built with TypeScript and compiled into standalone native executables, `qumod` enables engineers and AI coding agents to provision projects, manage credentials, and deploy edge relays without external runtime dependencies.

***

## Key Capabilities

<CardGroup cols={2}>
  <Card title="Standalone Binaries" icon="download" href="/cli/installation">
    Self-contained executables for macOS (Intel & Apple Silicon), Linux (amd64 & arm64), and Windows.
  </Card>

  <Card title="Interactive & Headless Auth" icon="lock" href="/cli/authentication">
    Seamless OAuth 2.0 Device Flow browser logins alongside `QUMO_TOKEN` headless CI authentication.
  </Card>

  <Card title="Full Command Suite" icon="terminal" href="/cli/commands">
    Manage deployments (`deploy`), projects (`project list/create`), and identities (`whoami`).
  </Card>

  <Card title="Agent & CI Ready" icon="robot" href="/cli/ci-cd">
    Structured `--json` output and strict exit codes designed for automated coding agents and CI runners.
  </Card>
</CardGroup>

***

## Quick Example

```bash theme={null}
# 1. Check current authenticated user and organization
qumod whoami

# 2. List projects in JSON for scripting
qumod project list --json

# 3. Trigger project deployment
qumod deploy --project my-stream-project
```

***

## Documentation Index

* [Installation Guide](/cli/installation) — Download binaries and configure paths.
* [Authentication](/cli/authentication) — Device flow vs. API keys and tokens.
* [Command Reference](/cli/commands) — Detailed argument and flag reference.
* [CI/CD & Coding Agents](/cli/ci-cd) — GitHub Actions and AI automation recipes.
