Our review
Switches between different sets of rites (workflows) in Claude Code using a simple command.
Strengths
- Single command to quickly change workflow
- Supports multiple predefined rites (dev, doc, quality)
- Clear error handling with exit codes
Limitations
- Requires the swap-team.sh script to be installed and configured
- Rites are limited to those provided by default
- Only works within the Claude Code environment
When you need to switch between development, documentation, or code quality workflows without leaving Claude Code.
If you need custom rites not included in the defaults or prefer to manage workflows manually.
Security analysis
CautionThe skill instructs the agent to use the Bash tool to run an external script. While the described functionality appears safe, the skill does not declare allowed tools, and the script's source is not provided, making it impossible to verify its safety. The use of a environment variable also introduces potential for abuse.
- •Instructs to execute an external Bash script without declaring allowed-tools.
- •Relies on $ROSTER_HOME environment variable, which could be manipulated.
- •The actual behavior depends on the content of the swap-team.sh script, which is not included.
Examples
/team/team dev-pack/team --listRite Swapper
Swap Claude Code rites for different workflows.
Usage
/team # Show current active rite
/team <rite-name> # Switch to specified rite
/team --list # List all available rites
Available Rites
- dev-pack: Development workflow (Architect, Principal Engineer, QA Adversary)
- doc-pack: Documentation workflow (Technical Writer, API Documenter, README Author)
- hygiene: Code quality workflow (Refactorer, Linter Advisor, Dependency Auditor)
Implementation
This skill invokes the swap-team.sh script located at $ROSTER_HOME/.
Instructions
When the user invokes /team, execute the swap-team.sh script with the provided arguments:
- If no arguments provided: Query current rite
- If
--listor-l: List available rites - If
<rite-name>provided: Swap to that rite
Always use the Bash tool to execute:
$ROSTER_HOME/swap-team.sh [args]
Display the script output to the user. The script handles all validation, backup, and swap operations.
Error Handling
The script returns appropriate exit codes:
- 0: Success
- 1: Invalid arguments
- 2: Validation failure (rite doesn't exist)
- 3: Backup failure
- 4: Swap failure
If the script fails, display the error message and suggest next steps based on the output.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.