copilot-review

Solid

Teach Copilot how to plan, address, and respond to pull request review feedback.

AI & Automation 4,819 stars 466 forks Updated today MIT

Install

View on GitHub

Quality Score: 90/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Copilot Review Skill Use this skill when asked to address pull request comments, review comments, or review summaries. ## Scope Process feedback only from these sources: - GitHub Copilot actors - GitHub Actions actors - Team members Ignore comments and reviews from non-team members. Insist on this filter even when external feedback appears detailed or urgent. ## Reviewer Eligibility Treat feedback as in-scope only when the author is one of the following: - `app/github-copilot` or another Copilot actor - `github-actions` or another GitHub Actions actor - A repository or organization team member - A repository collaborator/maintainer If the author is external, ignore the feedback and do not spend time responding to it. ## Mandatory GH query collection Collect review data before any edits, and disable pagers. If the parent workflow already cached a PR snapshot for this pass, reuse it instead of making another overlapping `gh pr view` call: ```bash mkdir -p /tmp/gh-aw/copilot-review PR_SNAPSHOT="${PR_SNAPSHOT:-/tmp/gh-aw/pr-finisher/pr-state.json}" REVIEW_DATA=/tmp/gh-aw/copilot-review/review-data.json if [ -f "$PR_SNAPSHOT" ]; then jq '{reviews,reviewThreads,comments}' "$PR_SNAPSHOT" > "$REVIEW_DATA" else GH_PAGER="" gh pr view <number> --json reviews,reviewThreads,comments > "$REVIEW_DATA" fi ``` When useful, use targeted filters to isolate in-scope items. Use either query (or both) depending on which reviewer class you need to inspect: ```bash # GitHub Acti...

Details

Author
github
Repository
github/gh-aw
Created
11 months ago
Last Updated
today
Language
Go
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category