Merges Pull Requests after validating pre-merge checklist and handling post-merge cleanup.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiongithub-pr-mergeExecute the skills CLI command in your project's root directory to begin installation:
Fetches github-pr-merge from fvadicamo/dev-agent-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate github-pr-merge. Access via /github-pr-merge in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
55
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
55
stars
Merges Pull Requests after validating pre-merge checklist and handling post-merge cleanup.
!gh pr view --json number,title,state -q '"PR #\(.number): \(.title) (\(.state))"' 2>/dev/null
Verify all review comments have at least one reply:
REPO=$(gh repo view --json nameWithOwner -q '.nameWithOwner')
PR=$(gh pr view --json number -q '.number')
# Find unreplied comment IDs
gh api repos/$REPO/pulls/$PR/comments --jq '
[.[] | select(.in_reply_to_id) | .in_reply_to_id] as $replied |
[.[] | select(.in_reply_to_id == null) | select(.id | IN($replied[]) | not) | .id]
'
If unreplied comments exist:
gh pr view $PR --json milestone -q '.milestone.title // "none"'
gh api repos/$REPO/milestones --jq '[.[] | select(.state=="open")] | length'
If open milestones exist but the PR has none, surface a warning in the checklist:
- Milestone: ⚠ not assigned (open milestones exist)
Do NOT block the merge for a missing milestone. It is a warning only.
Run tests, linting, and verify CI checks. All MUST pass before proceeding.
gh pr checks $PR
ALWAYS show checklist summary and ask before merging:
Pre-merge checklist:
- Comments: all replied
- Tests: passing
- Lint: passing
- CI: green
- Milestone: v0.1.0 (or ⚠ not assigned)
Ready to merge PR #X. Proceed?
gh pr merge $PR --merge --delete-branch --body "$(cat <<'EOF'
- Key change 1
- Key change 2
- Key change 3
Reviews: N/N addressed
Tests: X passed (Y% cov)
Refs: Task N, Req M
EOF
)"
Merge strategy: always --merge (merge commit), never squash or rebase.
--delete-branch automatically deletes the remote branch after merge.
git checkout develop && git pull origin develop
If the PR had a milestone, check whether all items are now closed:
MILESTONE=$(gh pr view $PR --json milestone -q '.milestone.number // empty')
if [ -n "$MILESTONE" ]; then
gh api repos/$REPO/milestones/$MILESTONE \
--jq '"Open: \(.open_issues) | Closed: \(.closed_issues) | \(.title)"'
fi
open_issues == 0: inform the user and ask whether to close the milestonegh api repos/$REPO/milestones/$MILESTONE --method PATCH --field state="closed"
open_issues > 0: report remaining open items count. No action needed.Concise format for a clean git log:
- Key change 1 (what was added/fixed)
- Key change 2
- Key change 3
Reviews: 7/7 addressed (Gemini 5, Codex 2)
Tests: 628 passed (88% cov)
Refs: Task 8, Req 14-15
--merge), never squash/rebaseMake data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
ailabs-393/ai-labs-claude-skills
Keeps context tight: github-pr-merge is the kind of skill you can hand to a new teammate without a long onboarding doc.
github-pr-merge reduced setup friction for our internal harness; good balance of opinion and flexibility.
github-pr-merge reduced setup friction for our internal harness; good balance of opinion and flexibility.
github-pr-merge has been reliable in day-to-day use. Documentation quality is above average for community skills.
github-pr-merge reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend github-pr-merge for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Registry listing for github-pr-merge matched our evaluation — installs cleanly and behaves as described in the markdown.
github-pr-merge is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Useful defaults in github-pr-merge — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend github-pr-merge for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 72