Skip to content

disclaw-team switch

Synopsis

Terminal window
disclaw-team switch <save|load|list|delete> [name]

Description

Manages named team configuration profiles. Save your current team config under a name, load a previously saved profile to swap configurations, list all saved profiles, or permanently delete one.

Subcommands

disclaw-team switch save <name>

Save the current config as a named profile. Creates ~/.disclaw-team/profiles/<name>/team.yaml.

ArgumentRequiredDescription
nameYesName for this profile (e.g., production, staging)

disclaw-team switch load <name>

Load a saved profile. Stops the running team before switching.

ArgumentRequiredDescription
nameYesProfile name to load

disclaw-team switch list

List all saved profiles. The active profile is marked with *.

disclaw-team switch delete <name>

Permanently delete a saved profile.

ArgumentRequiredDescription
nameYesProfile name to delete

Examples

Terminal window
# Save current config as "production"
disclaw-team switch save production
Terminal window
# List all profiles
disclaw-team switch list
Terminal window
# Switch to staging config
disclaw-team switch load staging
disclaw-team start
Terminal window
# Delete a profile
disclaw-team switch delete old-setup

Gotchas