← スキル一覧に戻る

address-latest-pr-comments
by erikbeerepoot
lora automation platform
⭐ 0🍴 0📅 2026年1月24日
SKILL.md
name: address-latest-pr-comments description: Fetch latest PR review comments, summarize fixed vs open issues, fix open issues, commit and push.
Address Latest PR Comments
Automates the PR review feedback loop for the current branch.
Workflow
- Fetch PR comments - Get all review comments from the current branch's PR
- Summarize status - Show which issues are fixed vs still open
- Fix open issues - Apply code changes to address remaining feedback
- Commit fixes - Create atomic commits with clear messages
- Push changes - Push to remote branch
Instructions
Step 1: Fetch and Display Comments
Run this to get the PR number and fetch comments:
BRANCH=$(git branch --show-current)
PR_NUMBER=$(gh pr list --head "$BRANCH" --json number --jq '.[0].number')
echo "PR #$PR_NUMBER"
gh api repos/:owner/:repo/pulls/$PR_NUMBER/comments --jq '.[].body'
gh pr view $PR_NUMBER --json reviews --jq '.reviews[].body'
Step 2: Analyze and Summarize
Read through the comments and categorize:
- Fixed: Issues already addressed in the codebase
- Open: Issues still needing fixes
Present a summary to the user for confirmation before proceeding.
Step 3: Fix Open Issues
For each open issue:
- Read the relevant files
- Apply the fix
- Verify the build still passes
Step 4: Commit and Push
Use the /commit skill to create atomic commits from the changes:
/commit
Then push:
git push
Skills Used
/commit- Creates atomic commits from current branch changes
Notes
- Always confirm the list of open issues with the user before fixing
- Run build verification after changes when applicable
- Let
/commithandle grouping and commit message formatting
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です