> ## Documentation Index
> Fetch the complete documentation index at: https://pessoal-86816071.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Operations Overview

> Operator-focused documentation for environment setup, vault lifecycle commands, and protocol validation.

# Operations Overview

This section is for the person actually running the system.

## Main operator goals

* load the correct environment
* deploy the program safely
* validate protocol bundle construction
* bootstrap the vault
* manage strategy state
* process deposits and withdrawals
* inspect on-chain state

## Main operator CLIs

| CLI                              | Purpose                                                 |
| -------------------------------- | ------------------------------------------------------- |
| `anchor build` / `anchor deploy` | Build and deploy the Anchor program                     |
| `doctor.ts`                      | Diagnose local and on-chain runtime state               |
| `drift-smoke.ts`                 | Build the Drift bundle against RPC                      |
| `kamino-smoke.ts`                | Build the Kamino bundle against RPC                     |
| `drift-live-send.ts`             | Send a direct Drift transaction without the vault       |
| `vault-bootstrap.ts`             | Initialize the vault and register strategies            |
| `vault-admin.ts`                 | Pause/resume the vault or strategies                    |
| `vault-user.ts`                  | Deposit, request withdrawal, finalize withdrawal        |
| `vault-status.ts`                | Inspect vault, strategies, allocations, and withdrawals |

## Recommended sequence

1. load `.env`
2. follow the devnet deploy runbook
3. run `doctor.ts`
4. run protocol smoke tests
5. bootstrap the vault
6. inspect state with `vault-status.ts`
7. run live user flows
8. run the Ranger rebalance demo

## Important mindset

The code assumes a clean separation between:

* `protocol validation`
* `vault lifecycle`
* `full rebalance orchestration`

Do not collapse all three into the first live run.

## Recommended runbook

* [Devnet Deploy](./devnet-deploy)
* [Environment](./environment)
* [Vault Lifecycle](./vault-lifecycle)
