Notre avis
Crée des branches Git avec une convention de nommage standardisée.
Points forts
- Assure une cohérence dans les noms de branches au sein d'une équipe.
- Facilite la reconnaissance rapide du type de travail (feat, fix, etc.).
- Utilise des slugs courts et descriptifs pour une meilleure lisibilité.
Limites
- Ne gère pas les branches avec des tickets ou des identifiants (ex: JIRA-123).
- La nomenclature est limitée à quelques types prédéfinis, ce qui peut être rigide.
Utilisez cette compétence chaque fois que vous devez créer une nouvelle branche Git pour démarrer une tâche.
Évitez de l'utiliser si vos branches nécessitent une convention différente (ex: inclure un ticket ID) ou si vous travaillez sur une branche existante sans en créer une nouvelle.
Analyse de sécurité
SûrThe skill only instructs creating a git branch using 'git checkout -b', which is a standard, non-destructive version control command. No external data exfiltration, destructive system commands, or credential leakage is involved.
Aucun point d'attention détecté
Exemples
Create a new branch for adding search pagination feature.I need to fix the year search bug. Create a branch for that.Create a branch to update pre-commit hooks.name: 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/search-pagination
fix/year-search-bug
chore/pre-commit-hooks
docs/update-readme
refactor/simplify-dynamo-queries
test/integration-coverage
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.