xano_knowledge_list
Return the CLI command to list a Xano workspace's knowledge base (skills, docs, agents.md). Review existing knowledge before adding new items to prevent duplicates.
Instructions
Get the CLI command to list a Xano workspace's knowledge base: skills, docs, and the agents.md file. This tool does not run the command itself — it returns the exact xano knowledge list command to run in a shell, so you can invoke it and read its output.
Use this to get an overview of what knowledge/skills exist before answering questions about workspace conventions, or before deciding whether a new skill/doc needs to be created (to avoid duplicating existing ones).
Always-on items (mode=always) are returned by the command with full content; on-demand items are returned with just name+description — use xano_knowledge_get to get the command for fetching an on-demand item's full content when it becomes relevant.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter to a single knowledge type. Omit to list all types. | |
| branch | No | Branch ID to read knowledge from. Optional; defaults to the workspace's live branch. | |
| output | No | markdown is human-readable (always-on items inline, on-demand items as a name+description index). json returns the full raw item array — prefer json when you need structured fields (id, guid, mode, references, etc.) for further processing. Default: markdown. | |
| profile | No | CLI credential profile to use. Optional; falls back to XANO_PROFILE env var or the credentials file default. | |
| workspace | No | Workspace ID. Optional if the active profile has a default workspace configured. | |
| enabled_only | No | When true (default), only enabled items are returned. Set to false to include disabled items too. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | The `xano knowledge list` command to run to get the workspace's knowledge base. |