> ## 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 prompts log

> Show recent version history for one asset or all tracked assets.

```
versuno prompts log [file|id] [--limit <n>]
```

Fetches and prints the version history for an asset. Without arguments it shows recent history for every locally tracked asset.

The `file` argument accepts either a local file path or an asset ID directly (anything without a `/` or `.md` extension is treated as an ID).

## Arguments

| Argument | Required | Description                                                               |
| -------- | -------- | ------------------------------------------------------------------------- |
| `file`   | No       | Local file path or asset ID. Omit to show history for all tracked assets. |

## Options

| Flag            | Description                                             |
| --------------- | ------------------------------------------------------- |
| `--limit <n>`   | Number of versions per asset (default: `5`, max: `50`). |
| `--format json` | Output raw JSON.                                        |

## Examples

```bash theme={null}
# History for a specific local file
versuno prompts log prompts/intro.md

# History by asset ID
versuno prompts log ctx_abc123

# Show 20 versions
versuno prompts log prompts/intro.md --limit 20

# History for all tracked assets
versuno prompts log

# JSON output
versuno prompts log ctx_abc123 --format json
```

## Output

```
My Intro Prompt  (prm_abc123)

 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 versions](/cli/versions) — focused version table for a single asset
* [versuno prompts diff](/cli/diff) — diff local vs a specific version
