Gestion des Pull Requests

VérifiéSûr

Crée des pull requests avec un formatage approprié. Utilisez-le pour ouvrir des PR, préparer des modifications pour révision ou suivre les conventions de titres, descriptions, libellés et noms de branches.

Spar Skills Guide Bot
DeveloppementDébutant
8002/06/2026
Claude CodeCursorWindsurfCopilotCodex
#pull-requests#conventional-commits#github#branch-naming#labeling

Recommandé pour

Notre avis

Crée des pull requests formatées correctement avec titres conventionnels, description structurée, labels appropriés et nom de branche standardisé.

Points forts

  • Automatise la création de PR avec des conventions claires
  • Intègre le format Conventional Commit pour les titres
  • Propose un modèle de description avec plan de test
  • Applique automatiquement les labels pertinents

Limites

  • Nécessite que l'outil AI ait accès à gh CLI et à un dépôt GitHub
  • Ne gère pas les workflows de PR complexes (reviewers, assignees)
  • Dépend de la présence d'un historique git et de différences entre branches
Quand l'utiliser

Utilisez cette compétence lorsque vous devez ouvrir une pull request standardisée sur GitHub avec un formatage cohérent.

Quand l'éviter

Évitez pour des PR nécessitant une personnalisation avancée ou des intégrations avec d'autres plateformes (GitLab, Bitbucket).

Analyse de sécurité

Sûr
Score qualité85/100

The skill only offers guidance on PR formatting and suggests standard git and gh commands for reviewing changes and creating PRs. No destructive, exfiltrating, or obfuscated actions are involved.

Aucun point d'attention détecté

Exemples

Create PR from current branch
Create a pull request for my current branch with a summary of the changes and a test plan. Use the conventional commit format for the title.
Open labeled PR
Open a PR for branch feat/search-pagination with label enhancement and documentation. Include verification steps.

name: pr description: Creates pull requests with proper formatting. Use when creating PRs, opening pull requests, or preparing changes for review.

Pull Requests

PR Title

Use the Conventional Commit Format, same as commit messages:

<type>(<scope>): <description>

Types

  • feat: User-facing features or behavior changes (must change production code)
  • fix: Bug fixes (must change production code)
  • docs: Documentation only
  • style: Code style/formatting (no logic changes)
  • refactor: Code restructuring without behavior change
  • test: Adding or updating tests
  • chore: CI/CD, tooling, dependency bumps, configs (no production code)

PR Description Template

## Summary

One sentence describing the overall change.

- Optional supporting details
- If needed

## Test plan

- [ ] How to verify it works

Labels

Apply all labels that fit. Use gh pr create --label <label> or gh pr edit --add-label <label>:

  • enhancement - User-facing features or improvements (must change production code behavior)
  • refactor - Production code changes that don't alter behavior
  • bug - Fixes broken production code functionality
  • test - Changes to tests
  • documentation - Documentation changes

No label needed for dependency bumps, CI/CD, tooling, or infrastructure changes.

Branch Naming

Use type/short-description:

feat/search-pagination
fix/year-search-bug
chore/pre-commit-hooks

Instructions

  1. Run git log main..HEAD to see commits for this branch
  2. Run git diff main...HEAD to see all changes
  3. Summarize the changes in 1-2 sentences
  4. Create a test plan with verification steps
  5. Apply appropriate labels
Skills similaires