xano_knowledge_get
Retrieve the CLI command to obtain the full content of a knowledge item or its attached reference file. Use after listing items to access detailed documentation.
Instructions
Get the CLI command to fetch the full content of one named knowledge item (a skill, doc, or agents.md), or one of a skill's attached reference files. This tool does not run the command itself — it returns the exact xano knowledge get command to run in a shell, so you can invoke it and read its output.
Use this after xano_knowledge_list has identified an on-demand item whose full content is now needed, or when a skill's step tells you to consult a specific reference file (via @filename syntax in the skill content).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | No | Path of a reference file attached to the item (as listed in that item's `references` array from xano_knowledge_list), fetched instead of the item's own content. | |
| name | Yes | The knowledge item's name (case-insensitive exact match). Required. | |
| branch | No | Branch ID. Optional; defaults to the workspace's live branch. | |
| output | No | text returns the raw markdown content. json wraps it with metadata (item: full object; file: {content, name, path}). Default: text. | |
| profile | No | CLI credential profile to use. | |
| workspace | No | Workspace ID. Optional if the active profile has a default workspace configured. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | The `xano knowledge get` command to run to fetch the knowledge item's content. |