Commands
config
Read and update runtime ClawVault configuration in .clawvault.json
The config command manages runtime configuration values stored in your vault's .clawvault.json file.
Usage
clawvault config get <key>
clawvault config set <key> <value>
clawvault config list
clawvault config resetCommands
config get <key>
Reads a single config value using dot-notation paths.
# Top-level key
clawvault config get name
# Nested key
clawvault config get context.maxResultsconfig set <key> <value>
Writes a config value by key path.
clawvault config set theme neural
clawvault config set context.defaultProfile planning
clawvault config set graph.maxHops 3config list
Prints all current config values in a table for quick inspection.
clawvault config listconfig reset
Resets all config values back to ClawVault defaults.
clawvault config resetSupported Keys
| Key | Description |
|---|---|
name | Vault display name |
categories | Enabled category list |
theme | Vault theme preset |
observe.model | Observer model identifier |
observe.provider | Observer provider |
context.maxResults | Maximum context memories returned |
context.defaultProfile | Default context profile |
graph.maxHops | Max traversal hops for graph-aware retrieval |
Details
Configuration is persisted in .clawvault.json at the vault root, so changes made with config set are durable and can be versioned with git.