Inspect a runtime from the CLI
When you’re building with KAOS, the kaos-core CLI lets you look inside a runtime —
what tools are registered, what’s in the virtual filesystem, what settings are active —
without writing code.
# List registered tools (add --json for machine-readable output)kaos-core tools listkaos-core tools search "pdf" --category document
# Browse the virtual filesystem and stored artifactskaos-core vfs ls /artifacts/kaos-core artifacts list --session my-session
# Show resolved settings and credential statuskaos-core config show --jsonkaos-core creds listNotes
- Every KAOS CLI follows the same conventions:
--jsonfor structured output, human-readable by default, errors to stderr. See the CLI reference. kaos-core config showreflects the full settings resolution — handy for debugging “why is this value what it is?”.- To expose the same tools to an AI client instead of the CLI, see serve over MCP.