Notre avis
Ce skill affiche les détails complets d'un problème stocké dans un fichier TOML local, en formatant les champs et les commentaires.
Points forts
- Interface simple et claire pour consulter un problème spécifique.
- Gère automatiquement le padding des identifiants.
- Formatage soigné avec séparation des commentaires.
Limites
- Ne fonctionne que si le fichier .issues/{id}.toml existe.
- Ne permet pas de filtrer ou de lister plusieurs problèmes.
- Pas de gestion des erreurs si le fichier est mal formaté.
Quand vous avez besoin de voir rapidement tous les détails d'un problème identifié par son numéro.
Quand vous voulez modifier un problème ou rechercher parmi plusieurs problèmes.
Analyse de sécurité
SûrThe skill only reads local TOML files from a specific .issues/ directory using the Read and Glob tools; no destructive, network, or shell operations are involved.
Aucun point d'attention détecté
Exemples
Show issue 1Display details of issue 42name: issues-show description: Show the full details of a specific issue. disable-model-invocation: true argument-hint: "[issue-id]" allowed-tools: Read, 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.
- Read the issue file using the Read tool.
- Display all fields in a nicely formatted output:
Issue {id}: {title}
─────────────────────────
Status: {status}
Priority: {priority}
Assigned to: {assigned_to}
Created: {created_at}
Comments:
──────────
[2026-02-15] user@example.com:
Comment text here...
If assigned_to is empty, show "unassigned". If the issue has [[comments]] entries, render them at the bottom under a "Comments:" header. Each comment shows [{date}] {author}: followed by the message text indented with two spaces. If there are no comments, omit the Comments section entirely.
Allowed tools
Bash(git *)- for git commandsRead- for reading the 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.