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

> ## Agent Instructions
> Reactor hosts multiple models, each with its own connect slug (modelName) and command/event schema. The catalog of every model — slug, typed SDK package, and links to its schema — is at /model-api-reference/overview. Some models expose one slug per experience (e.g. HappyOyster); always take the slug from the model's own pages, never guess it.
> Fastest path to a working app: `npx create-reactor-app my-app --model=<slug>` scaffolds a complete app with secure auth wired up. Typed TypeScript SDKs are published as @reactor-models/<model>; Python uses the base reactor-sdk package.
> Auth: exchange an API key (rk_...) for a JWT via POST https://api.reactor.inc/tokens from your server. Never put the API key in client-side code.
> Append .md to any docs URL for clean Markdown. Search these docs via the MCP server at https://docs.reactor.inc/mcp.

# All commands

> Every reactor CLI command, grouped by the command it belongs to.

This page lists every command in the CLI. Each row links to its full reference.

The pages come from the CLI itself, so they always match the installed binary. Run `reactor <command> --help` to see the same text in your terminal.

## reactor

| Command                                                      | Description                                                             |
| ------------------------------------------------------------ | ----------------------------------------------------------------------- |
| [`reactor`](/deploy/cli-reference/reactor)                   | The CLI for the Reactor platform                                        |
| [`reactor build`](/deploy/cli-reference/reactor_build)       | Build the workspace's model container locally                           |
| [`reactor doctor`](/deploy/cli-reference/reactor_doctor)     | Check that this machine is set up to use the Reactor CLI                |
| [`reactor init`](/deploy/cli-reference/reactor_init)         | Initialize a new Reactor model workspace                                |
| [`reactor logs`](/deploy/cli-reference/reactor_logs)         | Stream logs for a session or model instance                             |
| [`reactor ls`](/deploy/cli-reference/reactor_ls)             | List models registered against the current account                      |
| [`reactor regions`](/deploy/cli-reference/reactor_regions)   | List the canonical Reactor Regions usable in a deployment.yaml          |
| [`reactor run`](/deploy/cli-reference/reactor_run)           | Run the workspace's model container locally                             |
| [`reactor validate`](/deploy/cli-reference/reactor_validate) | Validate reactor.yaml and deployment.yaml without contacting the server |
| [`reactor version`](/deploy/cli-reference/reactor_version)   | Print the reactor CLI version                                           |
| [`reactor welcome`](/deploy/cli-reference/reactor_welcome)   | Display the Reactor welcome screen                                      |

## reactor auth

| Command                                                            | Description                            |
| ------------------------------------------------------------------ | -------------------------------------- |
| [`reactor auth`](/deploy/cli-reference/reactor_auth)               | Authentication commands                |
| [`reactor auth login`](/deploy/cli-reference/reactor_auth_login)   | Authenticate with the Reactor platform |
| [`reactor auth logout`](/deploy/cli-reference/reactor_auth_logout) | Remove stored Reactor credentials      |
| [`reactor auth status`](/deploy/cli-reference/reactor_auth_status) | Show current authentication status     |

## reactor completion

| Command                                                                                | Description                                                |
| -------------------------------------------------------------------------------------- | ---------------------------------------------------------- |
| [`reactor completion`](/deploy/cli-reference/reactor_completion)                       | Generate the autocompletion script for the specified shell |
| [`reactor completion bash`](/deploy/cli-reference/reactor_completion_bash)             | Generate the autocompletion script for bash                |
| [`reactor completion fish`](/deploy/cli-reference/reactor_completion_fish)             | Generate the autocompletion script for fish                |
| [`reactor completion powershell`](/deploy/cli-reference/reactor_completion_powershell) | Generate the autocompletion script for powershell          |
| [`reactor completion zsh`](/deploy/cli-reference/reactor_completion_zsh)               | Generate the autocompletion script for zsh                 |

## reactor gpu

| Command                                                  | Description                                           |
| -------------------------------------------------------- | ----------------------------------------------------- |
| [`reactor gpu`](/deploy/cli-reference/reactor_gpu)       | Inspect accelerator (GPU) types the platform supports |
| [`reactor gpu ls`](/deploy/cli-reference/reactor_gpu_ls) | List the accepted gpu\_type values                    |

## reactor model

| Command                                                                    | Description                                             |
| -------------------------------------------------------------------------- | ------------------------------------------------------- |
| [`reactor model`](/deploy/cli-reference/reactor_model)                     | Model management commands                               |
| [`reactor model delete`](/deploy/cli-reference/reactor_model_delete)       | Delete a model from the Reactor platform                |
| [`reactor model deploy`](/deploy/cli-reference/reactor_model_deploy)       | Activate a published release on the platform            |
| [`reactor model instances`](/deploy/cli-reference/reactor_model_instances) | List the running instances of a model                   |
| [`reactor model ls`](/deploy/cli-reference/reactor_model_ls)               | List models registered against the current account      |
| [`reactor model publish`](/deploy/cli-reference/reactor_model_publish)     | Build, push, and prepare a model release for deployment |
| [`reactor model register`](/deploy/cli-reference/reactor_model_register)   | Register a new model with the Reactor platform          |
| [`reactor model status`](/deploy/cli-reference/reactor_model_status)       | Show model release status                               |
| [`reactor model update`](/deploy/cli-reference/reactor_model_update)       | Update an existing model from its reactor.yaml spec     |

## reactor weights

| Command                                                                  | Description                                          |
| ------------------------------------------------------------------------ | ---------------------------------------------------- |
| [`reactor weights`](/deploy/cli-reference/reactor_weights)               | Upload and inspect model weights                     |
| [`reactor weights list`](/deploy/cli-reference/reactor_weights_list)     | List uploaded artifacts for a model release          |
| [`reactor weights show`](/deploy/cli-reference/reactor_weights_show)     | Show the bundle manifest summary for a model release |
| [`reactor weights upload`](/deploy/cli-reference/reactor_weights_upload) | Upload model weights to the Reactor platform         |
