testy-claw config

Inspect and manage your Testy Claw configuration from the command line.

Usage

terminal
testy-claw config <subcommand>

Subcommands

SubcommandDescription
showPrint the resolved config (config file + env overrides)
validateCheck claw.config.ts for errors without running
set <k> <v>Set a global user-level config value
get <key>Print a single config value

Examples

terminal
# Show resolved config
testy-claw config show

  model:    gpt-4o
  provider: openai
  tools:    ["fs", "shell"]
  maxSteps: 20
  timeout:  30000
  logDir:   .claw/runs

# Validate config file
testy-claw config validate
  ✓ claw.config.ts is valid

# Set global default model
testy-claw config set model claude-3-5-sonnet