> ## 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 assets list

> List assets in the active workspace.

```
versuno prompts assets list [options]
```

Fetches all assets from the Versuno API for the active workspace (or a specified team) and prints a formatted table. Supports filtering by asset type or project.

## Options

| Flag             | Description                                                                              |
| ---------------- | ---------------------------------------------------------------------------------------- |
| `--type <type>`  | Filter by asset type: `context`, `prompt`, `persona`, `system-prompt`, or `skill`.       |
| `--project <id>` | Filter to assets belonging to a specific project ID.                                     |
| `--team <id>`    | Override the active workspace for this call only.                                        |
| `--format json`  | Output a grouped JSON object (`{ prompts, personas, contexts, systemPrompts, skills }`). |

## Example

```bash theme={null}
# List all assets in the active workspace
versuno prompts assets list

# List only prompts
versuno prompts assets list --type prompt

# Scope to a project
versuno prompts assets list --project proj_abc123

# Use a different team without switching
versuno prompts assets list --team tm_xyz456

# JSON output
versuno prompts assets list --format json
```

## Output

```
Workspace: tm_abc123  Project: my-project

 ID           | TITLE              | TYPE    | VERSION | UPDATED
--------------|--------------------|---------|---------|-----------
 prm_abc123   | Intro Prompt       | prompt  |       5 | 2026-04-01
 ctx_def456   | Onboarding Guide   | context |       2 | 2026-03-28
```

## See also

* [versuno prompts assets get](/cli/assets-get) — print a single asset's content
* [versuno prompts pull](/cli/pull) — download an asset to disk
