
Resolve Copilot Pr Feedback
- 2 repo stars
- Updated July 24, 2026
- cboone/agent-harness-plugins
Process and resolve GitHub Copilot's automated PR review comments systematically.
About
Resolve-copilot-pr-feedback processes and resolves GitHub Copilot's automated PR review comments in a systematic way. It turns a wall of bot suggestions into tracked, addressed changes so PRs move forward cleanly. Aimed at developers who get heavy automated review feedback on pull requests.
- Processes Copilot comments
- Systematic resolution
- PR review workflow
- GitHub integration
Resolve Copilot Pr Feedback by the numbers
- Data as of Jul 25, 2026 (Skillselion catalog sync)
/plugin marketplace add cboone/agent-harness-plugins/plugin install resolve-copilot-pr-feedback@agent-harness-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | July 24, 2026 |
| Repository | cboone/agent-harness-plugins ↗ |
What it does
Process and resolve GitHub Copilot's automated PR review comments systematically.
README.md
Resolve Copilot PR Feedback
Process and resolve GitHub Copilot automated PR review comments.
Type: Skill
Trigger: /resolve-copilot-pr-feedback
Installation
See the marketplace install instructions.
What It Does
Fetches unresolved Copilot review threads via GraphQL, categorizes them (nitpick, outdated, incorrect, valid, deferred), resolves threads, and updates Copilot instruction files under .github/ when Copilot feedback is incorrect. After reaching a terminal workflow state, posts a required final summary comment to the PR for every outcome, including no unresolved feedback, non-code-change resolutions, code-change resolutions, partial processing, and failures when PR context and GitHub authentication are available. If the summary cannot be posted, the workflow reports that incomplete state and preserves the intended summary for retry instead of claiming success. Empty-fetch no-op runs reuse an existing same-head no-op summary instead of adding duplicate comments. Helps you quickly triage automated suggestions after opening a PR.
Usage
/resolve-copilot-pr-feedback
Recommended Permissions
This skill runs custom scripts and git commands that trigger permission prompts. To allow them automatically, add these rules to your .claude/settings.json (project-wide) or ~/.claude/settings.json (global):
{
"permissions": {
"allow": ["Bash(bash */resolve-copilot-threads *)", "Bash(git push*)", "Bash(mktemp /tmp/copilot-reply-*)", "Bash(rm -f /tmp/copilot-reply-*)", "Bash(gh pr comment *)", "Bash(mktemp /tmp/copilot-summary-*)", "Bash(rm -f /tmp/copilot-summary-*)"]
}
}
If you already have a permissions.allow array, merge these entries into it. Review and adjust the rules to match your security preferences.
Examples
- "resolve copilot feedback": fetches and processes Copilot review comments
- "check copilot review": same behavior
- "handle copilot comments": same behavior
See Also
- Address Review: work through a human-written review document
- PR: create the PR that Copilot will review
- All plugins