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

# versuno versions

> Show the full version table for a single asset.

```
versuno versions <id> [--limit <n>]
```

Prints a formatted table of versions for the given asset. Similar to `versuno prompts log` but focused on a single asset and defaults to more results (10 vs 5).

## Arguments

| Argument | Required | Description                  |
| -------- | -------- | ---------------------------- |
| `id`     | Yes      | Asset ID (e.g. `prm_abc123`) |

## Options

| Flag            | Description                                              |
| --------------- | -------------------------------------------------------- |
| `--limit <n>`   | Number of versions to show (default: `10`, max: `200`).  |
| `--format json` | Output a JSON object with `asset` and `versions` arrays. |

## Example

```bash theme={null}
versuno versions prm_abc123

versuno versions prm_abc123 --limit 50

versuno versions prm_abc123 --format json
```

## Output

```
 VERSION | DATE             | AUTHOR | DESCRIPTION
---------|------------------|--------|--------------------
 v5      | 2026-04-01 12:00 | alice  | Improved tone
 v4      | 2026-03-28 09:15 | bob    | Fix grammar
 v3      | 2026-03-20 11:30 | alice  |
```

## See also

* [versuno prompts log](/cli/log) — version history across all tracked assets
* [versuno prompts diff](/cli/diff) — compare local file vs a specific version
