Gestionnaire de Rituels Claude

VérifiéPrudence

Permute les workflows Claude Code en basculant entre différents ensembles de rôles (dev-pack, doc-pack, hygiene) via des commandes simples.

Spar Skills Guide Bot
DeveloppementDébutant
3002/06/2026
Claude Code
#claude-code#rites#workflow#team

Recommandé pour

Notre avis

Permet de basculer entre différents ensembles de rites (workflows) dans Claude Code via une commande simple.

Points forts

  • Commande unique pour changer rapidement de workflow
  • Prise en charge de plusieurs rites prédéfinis (dev, doc, qualité)
  • Gestion des erreurs avec codes de sortie clairs

Limites

  • Nécessite que le script swap-team.sh soit installé et configuré
  • Rites limités à ceux fournis par défaut
  • Fonctionne uniquement dans l'environnement Claude Code
Quand l'utiliser

Lorsque vous devez passer d'un workflow de développement à un workflow de documentation ou de qualité de code sans quitter Claude Code.

Quand l'éviter

Si vous avez besoin de rites personnalisés non inclus ou si vous préférez gérer les workflows manuellement.

Analyse de sécurité

Prudence
Score qualité85/100

The 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.

Points d'attention
  • 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.

Exemples

Show current rite
/team
Switch to development rites
/team dev-pack
List available rites
/team --list

Rite 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:

  1. If no arguments provided: Query current rite
  2. If --list or -l: List available rites
  3. 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.

Skills similaires