From cook-fr
Lists open PRs in the current GitHub repository, organized by priority based on commit type. Uses gh CLI to fetch PR data and generate summaries with URLs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cook-fr:pr-listThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Affiche une liste priorisée des PR ouvertes dans le dépôt actuel.
Affiche une liste priorisée des PR ouvertes dans le dépôt actuel.
# Demande à Claude
"Show a prioritized list of open PRs"
# Obtenir les informations du dépôt
gh repo view --json nameWithOwner | jq -r '.nameWithOwner'
# Obtenir les informations des PR ouvertes et demander à Claude
gh pr list --state open --draft=false --json number,title,author,createdAt,additions,deletions,reviews --limit 30
"Organize the above PRs by priority, including a 2-line summary for each PR. Generate URLs using the repository name obtained above"
Liste des PR Ouvertes (par Priorité)
### Haute Priorité
#numéro Titre [Draft/DNM] | Auteur | Temps depuis ouverture | Nombre d'approbations | +ajouts/-suppressions
├─ Ligne de résumé 1
└─ Ligne de résumé 2
https://github.com/owner/repo/pull/numéro
### Priorité Moyenne
(Format similaire)
### Basse Priorité
(Format similaire)
Haute Priorité
fix: Corrections de bugsrelease: Travail de releasePriorité Moyenne
feat: Nouvelles fonctionnalitésupdate: Améliorations de fonctionnalitésBasse Priorité
test:, build:, perf:gh)npx claudepluginhub wasabeef/claude-code-cookbook --plugin cook-frLists open PRs with a priority ranking (high/medium/low) based on conventional commit type, including summaries and age. Helps triage review workload.
Shows a prioritized list of open pull requests in the current GitHub repository, ranked by type (fix, release, feat, etc.). Helps developers triage and focus on high-impact PRs first.
Lists open PRs in the current repository sorted by priority (high/medium/low) based on commit type and draft status. Useful for triaging pull requests.