Claude Code Plugins

Community-maintained marketplace

Feedback

Used when creating pull requests. Generates PR title and description based on branch changes.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name git-pr
description Used when creating pull requests. Generates PR title and description based on branch changes.

Git Pull Request

Create a pull request with appropriate title and description.

Steps

  1. Use the base branch specified in the command arguments
  2. Analyze all commits and changes from base branch
  3. Generate PR title and description:
    • Title: Single-line summary using conventional commit format
    • Description: If template exists, fill it in with appropriate content. Otherwise, include summary, test plan, and changes overview
  4. Match language (English/Japanese) from commit history
  5. Push branch if needed: git push -u origin <branch>
  6. Create PR with base branch: gh pr create --draft --base <base-branch> --title "title" --body "description"
  7. Return PR URL

Notes

  • No Claude Code references
  • Analyze ALL commits in the branch, not just the latest
  • Include base branch comparison (e.g., git diff main...HEAD)
  • Push with -u flag if branch not yet pushed
  • PR template locations to check: .github/pull_request_template.md, .github/PULL_REQUEST_TEMPLATE.md
  • If template exists, respect its structure and fill in all sections appropriately