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

# destroy

> Tear down all deployed resources

Destroys all cloud resources provisioned by Pulumi. Includes safety confirmations to prevent accidental deletion.

## Usage

```bash theme={null}
clawup destroy [options]
```

## Options

| Option      | Description                            |
| ----------- | -------------------------------------- |
| `-y, --yes` | Skip confirmation prompts (dangerous!) |
| `--local`   | Destroy local Docker containers only   |

## Examples

```bash theme={null}
# Destroy with confirmation
clawup destroy

# Skip confirmation (use with caution)
clawup destroy --yes

# Destroy local Docker containers only
clawup destroy --local
```

<Warning>
  This permanently deletes all servers, volumes, and associated data. This action cannot be undone. Make sure to back up any important data before destroying.
</Warning>
