Notre avis
Attribue un problème à l'utilisateur Git actuel en modifiant le fichier du problème et en ajoutant un commentaire.
Points forts
- Automatise l'attribution des problèmes
- Utilise l'email Git de l'utilisateur pour l'assignation
- Journalise l'action dans le fichier du problème
Limites
- Nécessite un format de fichier spécifique (.issues/{id}.toml)
- Attribue uniquement à l'utilisateur configuré dans Git
- Ne gère pas les conflits d'attribution
Lorsque vous souhaitez réclamer rapidement un problème dans un workflow de gestion de projet local.
Lorsque les problèmes sont gérés en externe ou que plusieurs utilisateurs doivent collaborer sur une attribution.
Analyse de sécurité
SûrThe skill only uses Bash for git config and git add, and Read/Edit/Glob to modify local issue files. There are no destructive commands, network calls, or data exfiltration.
Aucun point d'attention détecté
Exemples
Assign issue 0001 to myselfClaim issue 42name: issues-assign description: Assign an issue to the current git user. disable-model-invocation: true argument-hint: "[issue-id]" allowed-tools: Bash(git *), Read, Edit, Glob
Arguments
The argument is the issue ID, e.g. 0001 or 1. If the ID is not zero-padded, pad it to 4 digits (e.g. 1 becomes 0001).
Steps
- Parse the argument as an issue ID. Zero-pad it to 4 digits.
- Use the Glob tool to verify
.issues/{id}.tomlexists. - If the file does not exist, inform the user and stop.
- Run
git config user.emailusing the Bash tool to get the current user's email. - Read the issue file using the Read tool.
- Update the
assigned_tofield in the TOML content to the git user's email. Use the Edit tool to replace the existingassigned_toline. - Append a
[[comments]]entry to the end of the issue file using the Edit tool to log the assignment. Use the current date inYYYY-MM-DDformat. Format:
[[comments]]
author = "{email}"
date = "{today}"
message = "Assigned to {email}"
- Run
git add .issues/{id}.tomlusing the Bash tool. - Display the updated issue to the user, confirming the assignment.
Allowed tools
Bash(git *)- for git config and git addRead- for reading the issue fileWrite- for writing the updated issue fileGlob- for verifying the issue file exists
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.