askill
pr-workflow

pr-workflowSafety 90Repository

Use when creating PRs, managing stacked PRs, or completing feature branches.

0 stars
1.2k downloads
Updated 1/22/2026

Package Files

Loading files...
SKILL.md

PR Workflow

Goal: Clean PRs that are easy to review and merge.

Workflow

PREPARE -> Verify tests, clean commits
PUSH    -> git push -u origin branch
CREATE  -> gh pr create with description
RESPOND -> Address review feedback
MERGE   -> gh pr merge --squash
CLEANUP -> Delete branch, pull main

Create PR

# Prepare
npm test && npm run build && git status

# Push and create
git push -u origin feature/auth
gh pr create --title "Add authentication" --body "$(cat <<'EOF'
## Summary
- Add login/logout endpoints
- Implement JWT handling

## Test Plan
- [ ] Login with valid credentials
- [ ] Protected routes require token
EOF
)"

Respond to Review

SeverityAction
CriticalFix immediately
ImportantFix before approval
MinorFix or discuss

Merge and Cleanup

gh pr merge --squash
git checkout main && git pull
git branch -d feature/auth

Stacked PRs

# PR 1: Base
git checkout -b feature/auth-db && gh pr create --base main

# PR 2: Depends on PR 1
git checkout -b feature/auth-api && gh pr create --base feature/auth-db

# Merge bottom-up, rebase each after merge

Decision Criteria

SituationAction
Tests failingDon't create. Fix first.
Large changeSplit into stacked PRs
Approved + CI greenMerge immediately

Pairs with: code-review, commit-discipline, verification

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

93/100Analyzed 2/16/2026

Excellent PR workflow skill with clear structure, actionable commands, and comprehensive coverage of the full PR lifecycle including stacked PRs.

90
95
95
90
95

Metadata

Licenseunknown
Version-
Updated1/22/2026
Publishererikpr1994

Tags

apici-cdgithub-actionssecuritytesting