🔧 Configuration Commands

Commands for customizing Code Puppy's behavior.

/show [option]

Show current configuration values.

# Show all settings
/show

# Show specific setting
/show yolo_mode
/show verbosity
/show safety_permission_level

/set <option> <value>

Set a configuration value. Changes take effect immediately.

# Enable YOLO mode (no confirmations)
/set yolo_mode true

# Set verbosity
/set verbosity verbose  # or: quiet, normal

# Set safety level
/set safety_permission_level high  # or: low, medium, critical

# Enable autosave
/set autosave true

# Allow recursive file listing
/set allow_recursion true

Available Options

OptionValuesDescription
yolo_modetrue/falseSkip command confirmations
verbosityquiet/normal/verboseOutput detail level
autosavetrue/falseAuto-save sessions
allow_recursiontrue/falseAllow recursive listing
safety_permission_levellow/medium/high/criticalCommand safety threshold

/reasoning <level>

Set the AI reasoning effort level.

/reasoning low     # Faster, less detailed
/reasoning medium  # Balanced (default)
/reasoning high    # More thorough, slower

/verbosity <level>

Set output verbosity level.

/verbosity quiet   # Minimal output
/verbosity normal  # Standard output
/verbosity verbose # Detailed output

/pin_model <model>

Pin a specific model to the current agent. The agent will always use this model.

# Switch to code reviewer
/agent code-reviewer

# Pin Claude to this agent
/pin_model claude-4-5-sonnet

# Now code-reviewer always uses Claude,
# regardless of default model

/unpin

Remove the pinned model from the current agent.

/unpin

# Agent now uses the default model again

/diff

Configure diff display colors and options.

/diff

# Opens interactive diff configuration

Common Configurations

Speed Mode

/set yolo_mode true
/reasoning low
/verbosity quiet

Careful Mode

/set yolo_mode false
/set safety_permission_level high
/reasoning high
/verbosity verbose

Development Mode

/set yolo_mode true
/set autosave true
/reasoning medium