Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-team-dev:git-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
確認なしでGitHub Draft PRを作成する。
確認なしでGitHub Draft PRを作成する。
# gh CLIがインストール・認証済みか確認
gh auth status
gh CLIが利用できない場合はエラーを報告し、インストール・認証を促す。
git branch --show-current で現在のブランチを確認gh repo view --json defaultBranchRef -q '.defaultBranchRef.name' でベースブランチを特定git log --oneline <base>..HEAD でコミット一覧を取得git diff <base>...HEAD --stat で変更ファイルの概要を把握gh pr create --draft でDraft PRを作成gh pr create --draft --base "<base_branch>" --title "<title>" --body "$(cat <<'EOF'
## Summary
<変更内容を1-3行で説明>
## Changes
<主要な変更点をbulletで列挙>
## Test plan
<テスト方法をbulletで列挙>
EOF
)"
--draft フラグを必ず付ける--base フラグを必ず指定する — Step 2で取得したベースブランチを明示的に渡すgh CLIが利用可能であることを事前に確認するBash(git branch:*)Bash(git log:*)Bash(git diff:*)Bash(gh repo view:*)Bash(gh pr create:*)Bash(gh pr view:*)Bash(gh auth:*)npx claudepluginhub nanopx/nanopx-plugins --plugin agent-team-devCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.