Notre avis
Ce skill automatise les opérations Git courantes en suivant les conventions de commits et les workflows GitFlow/GitHub Flow.
Points forts
- Standardise les messages de commit et les noms de branches
- Facilite la création de pull requests avec template
- Aide à la résolution de conflits de manière structurée
- Fonctionne avec tous les outils supportant shell et Git
Limites
- Nécessite que l'outil d'IA ait accès au terminal
- Ne gère pas les cas de conflits très complexes automatiquement
- Dépend de la configuration Git existante (hooks, etc.)
Utilisez ce skill pour toute opération Git répétitive ou structurée comme les commits, branches, PRs ou résolution de conflits.
Évitez de l'utiliser pour des opérations Git avancées très spécifiques (rebase interactif lourd, bisect) ou quand vous voulez un contrôle manuel complet.
Analyse de sécurité
SûrThis skill uses standard git commands and shell for git operations like branching, committing, and PR creation. No destructive or exfiltrating actions are instructed. The declared tools (git, shell) are used for their legitimate purposes, and no sensitive data exposure is indicated. The smart_commit.sh script is not provided but likely benign.
Aucun point d'attention détecté
Exemples
Create a new feature branch named 'feature/AUTH-123-user-login' and commit changes with a conventional commit message of type 'feat' and scope 'auth'.Create a pull request from branch 'feature/AUTH-123-user-login' to 'main' with a descriptive title, fill in the PR template, and request review from the team.I have a merge conflict in 'src/app.js' between 'main' and 'feature/user-profile'. Please help me resolve it by fetching the latest changes, identifying conflict sources, and preserving both intents.name: git-ops description: Git operations including commits, branches, PRs, and conflict resolution version: 1.0.0 author: Vertice Agency tools:
- git
- shell
Git Operations Skill
Overview
Handle all Git-related operations following conventional commits and GitFlow/GitHub Flow patterns.
Instructions
Commit Message Format
<type>(<scope>): <description>
[optional body]
[optional footer]
Types:
feat: New featurefix: Bug fixdocs: Documentationstyle: Formattingrefactor: Code restructuringtest: Adding testschore: Maintenance
Branch Naming
feature/<ticket>-<description>fix/<ticket>-<description>hotfix/<description>release/<version>
PR Creation
- Create descriptive title
- Fill PR template
- Link related issues
- Add appropriate labels
- Request reviewers
Conflict Resolution
- Fetch latest changes
- Identify conflict sources
- Resolve preserving both intents
- Test after resolution
- Commit with clear message
Scripts
smart_commit.sh
Generates commit message from diff analysis.
pr_template.md
Standard PR template.
Examples
Create feature branch and commit
git checkout -b feature/AUTH-123-user-login
# ... make changes ...
git add .
git commit -m "feat(auth): implement user login with JWT"
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.