← スキル一覧に戻る

git-pr-merge
by mattg101
Solidworks Plugin for Developing Robotic Descriptions
⭐ 0🍴 0📅 2026年1月18日
SKILL.md
name: git-pr-merge description: Conducts an audit of a Pull Request, merges it into main, and synchronizes the local environment. Use this skill when a PR is ready for final review and integration. trigger: always_on
This skill focuses on the "Gatekeeper" role, ensuring that only high-quality, verified code enters the main branch.
PR Merge & Sync Workflow
-
Audit:
- Inspect the PR diff using
gh pr diff [id]. Focus on source code changes, excluding third-party packages or generated binaries. - Create an audit report in
audit_reports/audit_PR-[id].mdconfirming compliance with tech specs and UI guides.
- Inspect the PR diff using
-
Merge Execution:
- Once the user approves the audit, perform the merge:
gh pr merge [id] --merge --delete-branch(if it''s a feature branch). - For core
devbranches, use--mergeto integrate intomain.
- Once the user approves the audit, perform the merge:
-
Local Sync:
- Switch to
mainand pull the latest changes:git checkout main; git pull origin main. - Switch back to
devand mergemainto ensure the local development branch is up-to-date:git checkout dev; git merge main. - Push the updated
devbranch to the remote:git push origin dev.
- Switch to
-
Verification:
- Verify that the local state is clean and ready for the next task.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です