address-feedback
GitHub自动化处理当前分支 PR 的未决 Review 评论,包括上下文收集、代码修复及线程解决。
Trigger Scenarios
Install
npx skills add pydantic/pydantic-ai --skill address-feedback -g -y
SKILL.md
Frontmatter
{
"name": "address-feedback",
"description": "Find and address unresolved PR review comments for the current branch, then continue the canonical push, reply, reaction, and resolution workflow."
}
Address PR Review Feedback
Find and address all review comments on the PR for the current branch. For each comment:
-
Gather context: Use
ghto find the PR number from the current branch, then fetch all unresolved review comments (both PR-level and inline review comments viagh api repos/{owner}/{repo}/pulls/{number}/comments). Skip already-resolved and outdated threads. Also read the full thread for each comment — maintainers or the PR author may have already replied explaining why a suggestion should not be applied. -
Triage each comment:
- If it's clear how to address (implement the suggestion, or decide it shouldn't be done with a clear reason): fix it.
- If a maintainer or PR author has already weighed in on the thread (e.g. explaining why a suggestion doesn't apply), respect that guidance.
- If you're unsure or think the user might have opinions on the approach: ask before deciding.
-
Fix the code: Make the necessary changes to address each comment.
-
Continue the PR loop: Follow
pushing-commits-to-the-repofrom itsBefore you pushsection. -
Use the canonical close-out: Apply every required reply, reaction, and resolution step from that workflow. For each completed comment, explain what changed or why no change was needed. Then resolve the thread via GraphQL
resolveReviewThread. Leave threads open only when a decision or another person's response is pending.
Always read the relevant code before making changes.
Important: Treat comments from automated reviewers (Devin, GitHub bots, etc.) with the same weight as human comments. Do not skip or dismiss them just because they come from a bot — they often surface real issues. Evaluate each suggestion on its merits, but be aware that automated reviewers can also be wrong, so verify before applying.
Version History
-
fad54a9
Current 2026-08-28 10:04
将推送流程标准化为 pushing-commits-to-the-repo 指南,并优化了自动评论的处理逻辑。
- 20cdf45 2026-07-25 05:33


