Notre avis
Crée une pull request à partir de la branche courante en utilisant GitHub CLI, avec un format structuré et des vérifications préalables.
Points forts
- Automatise la création de PR avec GitHub CLI et un format standardisé.
- Inclut des vérifications préalables (commits, push) pour éviter les erreurs.
- Génère un titre concis et un corps structuré avec résumé et plan de test.
Limites
- Nécessite que GitHub CLI soit installé et authentifié.
- Ne gère que les PRs vers la branche 'main' par défaut.
- Ne permet pas d'ajouter des reviewers, labels ou autres options avancées.
Utilisez cette compétence après avoir commité des modifications sur une branche et que vous souhaitez ouvrir une pull request avec un format propre.
Évitez de l'utiliser si vous avez besoin d'une configuration complexe de PR (reviewers, milestones) ou si vous n'utilisez pas GitHub.
Analyse de sécurité
SûrThe skill runs standard git and gh commands for creating a pull request. It does not execute destructive actions, expose secrets, or use obfuscated payloads. Pre-flight checks ensure changes are committed and pushed, making it a safe automation.
Aucun point d'attention détecté
Exemples
Create a pull request for my current branch with a summary of changes and a test plan.Open a pull request titled 'Fix login error on mobile' and include a test plan that checks mobile login flow.I've committed my changes. Please create a PR with a clear summary and test plan.name: pr description: Create a pull request for the current branch using GitHub CLI. Use after committing changes when ready to open a PR. allowed-tools: Bash
Create Pull Request
Create a pull request for the current branch against main using the GitHub CLI.
Instructions
- Run
git statusto check for uncommitted changes (warn if any exist) - Check if the branch has an upstream and is pushed
- Run
git log main..HEAD --onelineto see all commits in this branch - Run
git diff main...HEAD --statto understand the full scope of changes - Create a PR with
gh pr create
PR Format
Use a HEREDOC for the body to ensure proper formatting:
gh pr create --title "<concise title>" --body "$(cat <<'EOF'
## Summary
<1-3 bullet points describing what this PR does>
## Test plan
- [ ] <how to verify this works>
EOF
)"
Title Guidelines
- Keep under 72 characters
- Use imperative mood ("Add feature" not "Added feature")
- Be specific about what changed
Body Guidelines
- Summary: 1-3 bullet points explaining what and why
- Test plan: Checklist of verification steps
Pre-flight Checks
Before creating the PR:
- Ensure all changes are committed
- Ensure branch is pushed to remote
- If not pushed, run
git push -u origin HEADfirst
Example
gh pr create --title "Fix cron machine image updates in CI/CD" --body "$(cat <<'EOF'
## Summary
- Fix CI/CD to explicitly pass --image when updating cron machines
- Cron machines created via `flyctl machine run` don't auto-update with app releases
- Fetches image from deployed app machines and passes it to machine update
## Test plan
- [ ] Deploy to staging and verify cron machine gets updated
- [ ] Check cron logs after next scheduled run
EOF
)"
After Creation
Return the PR URL so the user can review it.
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.