pull_asset, this does not write anything to disk. The content lives only in the agent’s conversation.
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The asset ID. Get it from list_assets or search_assets. |
Example
Prompt:“Load the ‘code review checklist’ skill from Versuno.”Tool call chain:
- Agent calls
search_assetswith"code review checklist"and gets back the iddef456. - Agent calls
get_assetwith{ "id": "def456" }.
When to use it
- You want the agent to follow a specific skill, persona, or system prompt.
- You need a context document available for the current task but don’t want to save it to disk.
- You’re using an asset as a one-time reference.
When to use pull_asset instead
If you want to edit the asset, version-control it, or sync changes back to Versuno, use pull_asset instead. It writes to .versuno/ with frontmatter metadata so you can push_asset later.
See also
pull_asset— save the asset to disk for editing.- CLI:
versuno assets get— equivalent in the CLI.

