From claude-toolkit
Generate a PR description from current branch changes and create a pull request. Use when the user says "PR 올려줘", "PR 작성해줘", "push PR", "create PR", or asks to ship their work.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-toolkit:prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyzes all changes on the current branch compared to the base branch, generates a comprehensive PR title and description, then pushes and creates the pull request.
Analyzes all changes on the current branch compared to the base branch, generates a comprehensive PR title and description, then pushes and creates the pull request.
CRITICAL: You MUST detect the user's language from their messages and use that language for ALL interactions — status updates, error messages, and result summaries. The English in this document is only a reference for the AI.
Use when the user wants to create a pull request, push their work for review, or asks to ship changes.
--base <branch> — Base branch to compare against (default: main)--draft — Create as a draft PRFollow the steps below exactly.
Run these commands in parallel:
git status
git branch --show-current
git remote -v
Resolve the base branch in this priority order:
--base option is provided, use thatgit remote show origin | grep 'HEAD branch' | sed 's/.*: //'
mainVerify the resolved base branch exists: git rev-parse --verify <base>
Run these commands in parallel:
git log <base>..HEAD --oneline
git diff <base>...HEAD --stat
git diff <base>...HEAD
Title (< 70 chars):
feat:, fix:, refactor:, docs:, test:, chore:Body:
## Summary
<1-3 bullet points describing the key changes>
## Changes
<detailed list of what was changed and why>
## Sequence Diagram
<mermaid sequence diagram showing the added or modified flows>
## Test plan
- [ ] <checklist of how to verify the changes>
Sequence Diagram rules:
git push -u origin <current-branch>
gh pr create --title "<title>" --body "<body>"
Add --draft if flag given. Add --base <branch> if specified.
Show PR URL, title, and summary.
gh not installed → brew install ghgh auth loginGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub ten1010-io/claude-toolkit --plugin claude-toolkit