← Back to list

pr-completion
by kamushadenes
My Nix (nix-darwin, NixOS, home-manager) configuration
⭐ 0🍴 0📅 Jan 22, 2026
SKILL.md
name: pr-completion description: Ensure PR checks pass and conflicts are resolved before completing tasks. Use after creating a PR, when marking tasks as done, or when completing work that resulted in a PR.
PR Completion Workflow
Before marking a task as done after creating a PR, verify:
- All PR checks pass
- No merge conflicts exist
Check PR Status
# View PR checks
gh pr checks
# View PR status (includes mergeable state)
gh pr view --json state,mergeable,mergeStateStatus
Wait for Checks
If checks are pending:
# Wait for checks to complete (blocking)
gh pr checks --watch
If checks fail:
- Read check logs:
gh pr checks --json name,state,conclusion - Fix failing checks
- Push fixes
- Re-verify with
gh pr checks --watch
Resolve Conflicts
If PR has conflicts (mergeable: CONFLICTING):
# Update branch from base
gh pr update-branch
# Or rebase locally
git fetch origin
git rebase origin/main
# Resolve conflicts
git add .
git rebase --continue
git push --force-with-lease
Completion Checklist
Before set_task_status --status=done:
-
gh pr checksshows all checks passing -
gh pr view --json mergeableshowsMERGEABLE
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon