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

# cast sessions

> Manage agent sessions

# cast sessions

Manage sessions for deployed agents. Sessions allow multi-turn conversations that reuse the same sandbox.

## Subcommands

| Command                                    | Description                |
| ------------------------------------------ | -------------------------- |
| `cast sessions list <slug>`                | List sessions for an agent |
| `cast sessions delete <slug> <session-id>` | Delete a session           |

***

## cast sessions list

List all sessions for a deployed agent.

### Usage

```bash theme={null}
cast sessions list <slug>
```

### Arguments

| Argument | Description             | Required |
| -------- | ----------------------- | -------- |
| `slug`   | The agent's unique slug | Yes      |

### Output

Displays a table with session ID, sandbox ID, creation date, and last invocation time.

***

## cast sessions delete

Delete a specific session.

### Usage

```bash theme={null}
cast sessions delete <slug> <session-id>
```

### Arguments

| Argument     | Description              | Required |
| ------------ | ------------------------ | -------- |
| `slug`       | The agent's unique slug  | Yes      |
| `session-id` | The session ID to delete | Yes      |

## See Also

* [cast invoke](/cli/invoke) — Invoke an agent (use `--session` for multi-turn)
* [Concepts: Invocations](/concepts/invocations) — How sessions work
