Skip to main content
versuno 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

FlagDescription
--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 jsonOutput a grouped JSON object ({ prompts, personas, contexts, systemPrompts, skills }).

Example

# List all assets in the active workspace
versuno assets list

# List only prompts
versuno assets list --type prompt

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

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

# JSON output
versuno 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