create-pr
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Create PR
Create pull request with concise, meaningful description.
Context
- Current branch: !
git branch --show-current - Working tree status: !
git status --short - Recent commits: !
git log --oneline -5 - Remote tracking: !
git rev-parse --abbrev-ref @{upstream} 2>/dev/null || echo "none"
Workflow
- Verify: Check
git statusand current branch - Branch Safety: CRITICAL - If on main/master, create descriptive branch from changes
- Push:
git push -u origin HEAD - Analyze:
git diff origin/main...HEAD --stat - Generate PR:
- Title: One-line summary (max 72 chars)
- Body: Bullet points of key changes
- Submit:
gh pr create --title "..." --body "..." - Return: Display PR URL
PR Format
## Summary
• [Main change or feature]
• [Secondary changes]
• [Any fixes included]
## Type
[feat/fix/refactor/docs/chore]
Rules
- NO verbose descriptions
- NO "Generated with" signatures
- Auto-detect base branch (main/master/develop)
- Use HEREDOC for multi-line body
- If PR exists, return existing URL
User: $ARGUMENTS
More from melvynx/aiblueprint
apex
Systematic implementation using APEX methodology (Analyze-Plan-Execute-Validate) with parallel agents and self-validation. Use when implementing features, fixing bugs, or making code changes that benefit from structured workflow.
18prompt-creator
Expert prompt engineering for creating effective prompts for Claude, GPT, and other LLMs. Use when writing system prompts, user prompts, few-shot examples, or optimizing existing prompts for better performance.
15oneshot
Ultra-fast feature implementation using Explore → Code → Test workflow. Use when implementing focused features, single tasks, or when speed over completeness is priority.
14commit
Quick commit and push with minimal, clean messages
13skill-creator
This skill should be used when the user asks to "create a skill", "build a skill", "write a skill", "improve skill structure", "understand skill creation", or mentions SKILL.md files, skill development, progressive disclosure, XML structure, or bundled resources (scripts, references, assets). Comprehensive guide for creating effective Claude Code skills.
13fix-pr-comments
Fetch PR review comments and implement all requested changes
12