From claude-mastery
Crée une nouvelle branche Git à partir de la dernière version de main, avec un préfixe conventionnel feat/ (nouvelle fonctionnalité) ou fix/ (correction de bug). Utilise sur /branche, ou quand l'utilisateur veut démarrer un nouveau travail sur une branche dédiée : "nouvelle branche", "crée une branche", "je commence une feature", "pars de main à jour", avant d'attaquer un développement isolé. Amont naturel de /livre.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-mastery:branche [nom-de-branche][nom-de-branche]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Crée une nouvelle branche à partir de la dernière version de main.
Crée une nouvelle branche à partir de la dernière version de main.
Bascule sur main et récupère la dernière version :
git checkout main && git pull origin main
Si $ARGUMENTS est fourni (ex. /branche feat/algorithme-churn) :
git checkout -b <nom-de-branche>Si aucun argument n'est fourni :
feat/ ou fix/git checkout -b <nom-de-branche>Confirme la création de la branche en exécutant git branch --show-current
Utilise ces préfixes :
feat/ — Nouvelle fonctionnalitéfix/ — Correction de bugSi l'utilisateur fournit un nom sans préfixe, propose d'en ajouter un.
npx claudepluginhub naiersaidane/claude-masteryCreates Git feature branches with short auto-incremented names and type prefixes (feat/fix/refactor/chore/docs). Generates from manual descriptions, uncommitted changes, or Arkhe SDLC specs.
Creates, tracks, switches, syncs, and cleans up Git branches with consistent naming conventions and safe working-tree handling.
Creates a git branch following Sentry naming conventions with type prefixes (feat, fix, docs, etc.) and GitHub username prefix. Automatically classifies work from task descriptions or local diffs.