Notre avis
Crée des branches git en suivant une convention de nommage type/description-courte pour organiser le travail.
Points forts
- Convention claire et cohérente pour tous les membres de l'équipe
- Catégorisation automatique du type de travail (feat, fix, docs, etc.)
- Facilite la recherche et le suivi des branches
Limites
- Ne couvre pas tous les cas possibles (ex: branches de release)
- Aucune validation automatique sans hook supplémentaire
Au début d'une nouvelle tâche ou d'une fonctionnalité pour créer une branche avec un nom standardisé.
Lorsque l'équipe utilise déjà une autre convention de nommage établie ou un workflow spécifique (ex: Git Flow).
Analyse de sécurité
SûrThe skill only instructs creating a git branch using standard naming conventions and git commands. No destructive, exfiltrating, or unsafe actions.
Aucun point d'attention détecté
Exemples
Create a branch for adding infinite scroll to the feedCreate a branch to fix the album path validation bugCreate a branch to add pre-commit hooks to the projectname: branch description: Creates git branches with proper naming. Use when creating branches, starting new work, or switching to feature branches.
Branch Naming
Use type/short-description format.
Types
feat: User-facing features or behavior changes (must change production code)fix: Bug fixes (must change production code)docs: Documentation onlystyle: Code style/formatting (no logic changes)refactor: Code restructuring without behavior changetest: Adding or updating testschore: CI/CD, tooling, dependency bumps, configs (no production code)
Examples
feat/infinite-scroll
fix/album-path-validation
refactor/state-management
chore/pre-commit-hooks
docs/update-readme
test/e2e-login-flow
Instructions
- Determine the type based on what the work will accomplish
- Choose a short, descriptive slug (2-4 words, hyphenated)
- Create the branch:
git checkout -b type/short-description
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.