From github-dev
This skill should be used when user asks to "create a PR", "make a pull request", "open PR for this branch", "submit changes as PR", "push and create PR", or explicitly invokes "create-pr".
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-dev:create-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Complete workflow for creating pull requests following project standards.
Complete workflow for creating pull requests following project standards.
When explicitly invoked with extra text, treat that text as additional context for branch naming, commit context, and PR title and body generation. Compress it into a short plain-language branch name rather than copying the full text.
Preferred execution
github-dev:pr-creator for the full workflow.Verify staged changes exist with git diff --cached --name-only
Branch setup
feature/short-topic, fix/short-topic, or docs/short-topicgithub-dev:commit-creator subagent to handle staged changes if needed, and pass session findings and motivation into the commit contextDocumentation check
mcp__tavily__tavily_search to verify info and include sourcesAnalyze all commits
git diff <base-branch>...HEAD to review complete changesetCreate PR
gh for GitHub operations and git only for local branch managementgithub-dev:pr-creator or gh pr create with parameters:
-t (title): Start with capital letter, use verb, NO "fix:" or "feat:" prefix
Use plain language. Avoid jargon and internal shorthand unless a command or tool name is needed.-b (body): Brief summary + bullet points with inline markdown links-a @me (self-assign)-r <reviewer>: Only add if the user explicitly asks OR recent PRs by this author have reviewers.
Check with: gh pr list --repo <owner>/<repo> --author @me --limit 5 --json reviewRequests
If recent PRs have no reviewers, skip -r entirely.PR Body Guidelines
Add compare command for side-by-side model comparison
- Run multiple models on same images with `--models` and `--phrases` flags
- Horizontal panel concatenation with model name headers
`ultrannotate compare --source ./images --models sam3.pt,yoloe-26x-seg.pt --phrases "person,car"`
Inline single-use variables in compare_models
- xyxy2xywhn handles empty arrays, guard unnecessary
- Use function reference for draw dispatch
Before: `boxes = result.get(...); ops.xyxy2xywhn(boxes, ...)`
After: `ops.xyxy2xywhn(result.get(...), ...)`
Guides 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 ruslands/plugins --plugin github-dev