Notre avis
Cette compétence permet à l'agent d'exécuter des opérations Git de base sur des dépôts locaux et distants.
Points forts
- Couvre les commandes essentielles comme status, add, commit, push, pull et log.
- Interface simple et normalisée pour interagir avec Git via des outils dédiés.
- Supporte la gestion des branches : création, suppression, renommage.
Limites
- Ne gère pas les opérations avancées comme rebase, stash, ou merge.
- Pas de support pour les sous-modules ou les hooks Git.
- Les messages d'erreur peuvent être vagues sans accès à la sortie brute.
Idéal pour les tâches quotidiennes de versionnement comme vérifier l'état, commiter et pousser du code.
Éviter pour des workflows complexes nécessitant des fusions manuelles ou la résolution de conflits.
Analyse de sécurité
SûrThe skill exclusively uses standard Git operations (status, diff, add, commit, log, branch, checkout, pull, push, init, clone, remote) which are non-destructive and do not expose the system to external code execution or data exfiltration. No shell injection, network calls beyond Git protocols, or dangerous commands are present.
Aucun point d'attention détecté
Exemples
Show me the current Git status of this repository.Stage all changed files and commit with message 'Fix bug in login feature'.Push the current branch to the remote repository 'origin'.name: git description: Git version control operations for repositories. allowed-tools:
- git_status
- git_diff
- git_add
- git_commit
- git_log
- git_branch
- git_checkout
- git_pull
- git_push
- git_init
- git_clone
- git_remote
Git Skill
This skill provides the agent with capabilities to interact with Git repositories for version control.
Tools
git_status
Show the working tree status.
repo_path: Path to the Git repository (defaults to current directory).
git_diff
Show changes between commits, commit and working tree, etc.
repo_path: Path to the Git repository (defaults to current directory).args: Additional diff arguments (optional).
git_add
Add file contents to the index.
repo_path: Path to the Git repository (defaults to current directory).pathspec: Files to add (defaults to '.' for all).
git_commit
Record changes to the repository.
repo_path: Path to the Git repository (defaults to current directory).message: Commit message.
git_log
Show commit logs.
repo_path: Path to the Git repository (defaults to current directory).args: Additional log arguments (optional).
git_branch
List, create, or delete branches.
repo_path: Path to the Git repository (defaults to current directory).action: Branch action: 'list', 'create', 'delete', 'rename'.branch_name: Branch name for create/delete/rename.new_name: New branch name for rename.
git_checkout
Switch branches or restore working tree files.
repo_path: Path to the Git repository (defaults to current directory).target: Branch, commit, or file to checkout.
git_pull
Fetch from and integrate with another repository or local branch.
repo_path: Path to the Git repository (defaults to current directory).remote: Remote name (defaults to 'origin').branch: Branch name (defaults to current branch).
git_push
Update remote refs along with associated objects.
repo_path: Path to the Git repository (defaults to current directory).remote: Remote name (defaults to 'origin').branch: Branch name (defaults to current branch).
git_init
Create an empty Git repository or reinitialize an existing one.
repo_path: Path where to initialize repository.
git_clone
Clone a repository into a new directory.
repository_url: URL of the repository to clone.destination: Directory to clone into.
git_remote
Manage set of tracked repositories.
repo_path: Path to the Git repository (defaults to current directory).action: Remote action: 'list', 'add', 'remove', 'rename'.name: Remote name.url: Remote URL for add.new_name: New name for rename.
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.