Skip to main content
View and update clawup.yaml config values with validation. No need to re-run init.

config show

clawup config show [options]
OptionDescription
--jsonOutput as JSON

config set

clawup config set <key> <value> [options]
OptionDescription
-a, --agent <name>Target a specific agent (name, role, or alias)

Settable Keys

Top-level: region, instanceType, ownerName, timezone, workingHours, userNotes, templateVars.<KEY> Per-agent (with -a): instanceType, volumeSize, displayName

Examples

# View current config
clawup config show
clawup config show --json

# Update top-level values
clawup config set region us-west-2
clawup config set instanceType t3.large

# Update template variables
clawup config set templateVars.LINEAR_TEAM ENG

# Update per-agent values
clawup config set instanceType cx32 -a titus
clawup config set volumeSize 50 -a scout
Run clawup redeploy after changing config to apply changes to running agents.