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

ArgumentRequiredDescription
idYesAsset ID (e.g. ctx_abc123)

Options

FlagDescription
--format jsonOutput 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