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.
Fetches a single asset from the Versuno API and prints it to stdout as a Markdown file with YAML frontmatter. Nothing is written to disk.
This is useful for piping an asset’s content into other tools.
Arguments
| Argument | Required | Description |
|---|
id | Yes | Asset ID (e.g. ctx_abc123) |
Options
| Flag | Description |
|---|
--format json | Output the full asset object as JSON instead of Markdown. |
Example
# Print as Markdown with frontmatter
versuno assets get ctx_abc123
# Full JSON metadata
versuno assets get ctx_abc123 --format json
# Pipe content into another tool
versuno assets get ctx_abc123 | grep "system"
Output
---
id: ctx_abc123
type: context
title: Onboarding Guide
tags: [onboarding]
created_at: 2026-01-01T00:00:00Z
updated_at: 2026-04-01T12:00:00Z
---
Welcome to the onboarding flow...
See also