Skip to content

Groups

Profile groups let you apply the same configuration across multiple coders at once.

Create a new group.

Terminal window
swixter group create <name>

A group bundles profiles from different coders. When you switch to a group, it sets the specified profile as active for each coder simultaneously.

Set a group as active for all contained coders.

Terminal window
swixter group switch <name>

This sets the active profile for each coder in the group.

List all groups.

Terminal window
swixter group list

Apply all profiles in the active group.

Terminal window
swixter group apply

Writes the active profile to each coder’s config file.

Modify an existing group.

Terminal window
swixter group edit <name>

Remove a group.

Terminal window
swixter group delete <name>
Terminal window
# Create individual profiles
swixter claude create work-claude -p anthropic
swixter codex create work-codex -p ollama
# Group them
swixter group create work
# ... select claude=work-claude, codex=work-codex
# Apply all at once
swixter group switch work
swixter group apply