Agent skill
pr-create
Create pull request from feature branch
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/pr-create-yonichechik-claude-code-config
SKILL.md
Creates a professional pull request when a feature is complete and ready for review.
Optional PR title/description hint from user input
"$ARGUMENTS"
Process
Step 1: Analyze Feature Branch
- Compare to origin/main:
git log origin/main..HEAD --oneline
git diff origin/main...HEAD --stat
- Erase
plan_*.mdand any other dev/workflow related files and commit. If not sure, ask user for directions.
Step 2: Generate PR Title and Body
Create professional PR content:
Title Format: Feature: [Descriptive title based on plan_*.md and commits]
Body Structure:
## Summary
- Key functionality delivered
- Major components implemented
- Value provided to users
## Implementation Details
- Technical approach and architecture decisions
- Integration points with existing codebase
- Notable patterns or utilities used
## Testing
- Unit tests added for core functionality
- Integration tests for end-to-end workflows
- Manual testing performed
Step 3: Create Pull Request
gh pr create --title "Feature: [Generated title]" --body "$(cat <<'EOF'
[Generated PR body]
EOF
)"
Step 4: PR Success Confirmation
- Display created PR URL
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?