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

# Conversation Commands

> List, view, rename, and delete multi-turn conversations

## vrin conversation list

List your recent conversations.

```bash theme={null}
vrin conversation list
```

### Options

| Flag      | Short | Default | Description                     |
| --------- | ----- | ------- | ------------------------------- |
| `--limit` | `-n`  | `50`    | Maximum conversations to return |
| `--json`  |       |         | Force JSON output               |

***

## vrin conversation get

Get the full message history for a conversation.

```bash theme={null}
vrin conversation get conv_abc123 --json
```

***

## vrin conversation rename

Rename a conversation.

```bash theme={null}
vrin conversation rename conv_abc123 "Q4 Revenue Analysis"
```

***

## vrin conversation delete

Delete a conversation and its history.

```bash theme={null}
vrin conversation delete conv_abc123
# Delete conversation conv_abc123? [y/N]: y

# Skip confirmation
vrin conversation delete conv_abc123 --force
```

### Options

| Flag      | Short | Description              |
| --------- | ----- | ------------------------ |
| `--force` | `-f`  | Skip confirmation prompt |
| `--json`  |       | Force JSON output        |
