skills/pr-create/SKILL.md
Use this skill when you want to push the current branch and create a GitHub PR in one run without per-step confirmations.
npx skillsauth add ryoh827/dotfiles pr-createInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
現在のブランチをリモートにpushし、全コミットを分析してGitHub PRを作成するスキル。 各ステップ間で承認を求めず一括実行する。
以下を満たさない場合はエラーで停止する:
main または master でないことgit symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'
取得できない場合は main をフォールバックとする。
以下を実行して全コミットの内容を把握する:
git log <base>..HEAD --oneline
git diff <base>...HEAD --stat
git push -u origin HEAD
全コミットの内容を元に以下を作成する:
## Summary
<1-3行の箇条書き>
## Test plan
<テスト手順の箇条書き>
PRを作成する:
gh pr create --base "<base>" --title "<title>" --body "<body>"
作成されたPRのURLを返却する。
development
Review and improve a plan document by applying inline feedback markers (XXX:), adding targeted clarification questions as AI-ASK:, and producing a concise change summary. Use when a user asks to refine planning docs before implementation without writing code.
development
Execute an approved implementation plan file step by step, enforce unresolved-marker gate checks (XXX:/TODO:/AI-ASK:), run verification commands in defined priority, and remove the plan file after successful completion.
development
Use this skill when adding or updating a skill in ryoh827's dotfiles so the same source is deployed to both Codex and Claude via chezmoi includes.
testing
Use this skill when editing ryoh827's chezmoi/dotfiles repo to follow repository-specific path conventions, especially home bin script placement.