# Spix Docs

Canonical docs: https://docs.spix.sh

Spix is CLI-first for agents and dashboard-assisted for humans.

## Start Here

Install the CLI:

```bash
curl -sf https://spix.sh/install | sh
```

Authenticate:

```bash
spix signup --email you@example.com
spix auth login --email you@example.com
spix auth whoami
```

## Recommended rollout order

1. Email: https://docs.spix.sh/email
2. Calls: https://docs.spix.sh/calls
3. Text: https://docs.spix.sh/text

## Email

Email is the fastest channel to validate a new workspace because it works on Sandbox.

```bash
spix email inbox create --username ops --name "Ops Agent"
spix email send --sender ops@inbox.spix.sh --to customer@example.com --subject "Hello" --body "Welcome to Spix."
```

## Calls

Calls require a call playbook, a rented number, and Agent plan or above.

```bash
spix call create +19175550123 --playbook cmp_call_abc123 --sender +14155550201
```

## Text

SMS requires a rented number bound to an SMS playbook.

```bash
spix sms send +19175550123 --sender +14155550101 --playbook cmp_sms_xyz789 --body "Order confirmed."
```
