Skip to main content
CLI Reference

travsr config

Inspect and set layered configuration. Settings resolve from a global layer and a per-repo layer, and the command tells you which one is actually in effect.

travsr config list
travsr config get embed.capacity
travsr config set embed.capacity 4096
travsr config set docs.enabled true --repo

Subcommands

CommandWhat it does
get <KEY>Show a key's active value and which layer set it
set <KEY> <VALUE>Set a key. Writes the global layer unless --repo is given
listEvery known key with its resolved value and source layer

Why the layer matters

A value that looks wrong is usually a value set somewhere you were not looking. get and list name the layer for exactly that reason, so "why is this 2048 when I set 4096" is answerable without hunting through files.

embed.capacity = 4096 (repo)
docs.enabled = true (global)

Known keys

embed.capacity, embed.max_workers, embed.priority, docs.enabled, docs.max_results, docs.budget_pct, docs.exclude.

travsr config list is the authority; an unknown key is rejected rather than silently stored, so a typo cannot masquerade as a setting that never takes effect.