From base-tools
Creates GitHub PRs using .github/PULL_REQUEST_TEMPLATE.md: removes comments, adds 'Closes [Issue#]', assigns current user via gh CLI, bases on default branch, reports URL.
How this skill is triggered — by the user, by Claude, or both
Slash command
/base-tools:create-prsonnetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
このスキルは、GitHubでPull Request(PR)を作成するためのスキルです。
このスキルは、GitHubでPull Request(PR)を作成するためのスキルです。 このスキルが呼び出された際には、Instructionsに従って、PRの作成を行ってください。
PRは以下のルールで作成します。
.github/PULL_REQUEST_TEMPLATE.mdを参照し、それに従うことCloses [Issue番号]と記載することgh api user --jq '.login'で取得したユーザーをAssigneesに追加すること
gh pr create --title "PRタイトル" --body "PRの本文" --base main --assignee "$(gh api user --jq '.login')"
gh api user --jq '.login'
gh pr create --title "PRタイトル" --body "PRの本文" --base main --assignee "$(gh api user --jq '.login')" --label "cc-triage-scope"
npx claudepluginhub getty104/claude-code-marketplace --plugin base-toolsCreates GitHub pull requests with formatted descriptions, labels, issue references, draft mode, reviewers, and base branch selection from pushed branches. Use for 'create PR' or 'submit for review'.
Guides creating complete GitHub pull requests with git status checks, descriptive titles, structured markdown descriptions, labels, issue links, and reviewers using gh CLI. Useful for team code reviews.
Creates GitHub pull requests from the current branch, analyzes diffs, applies PR templates, and prompts for effort and testing details.