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".
npx claudepluginhub funsaized/claude-and-codex-settings --plugin github-devThis skill uses the workspace's default tool permissions.
Complete workflow for creating pull requests following project standards.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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(...), ...)`