Help us improve
Share bugs, ideas, or general feedback.
From quality-gates
Address actionable GitHub pull request review feedback. Use when the user wants to inspect unresolved review threads, requested changes, or inline review comments on a PR, then implement selected fixes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/quality-gates:gh-address-commentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user wants to work through requested changes on a GitHub pull request. Use the GitHub MCP or `gh` CLI for PR metadata and patch context. Treat thread-aware review data as a `gh api graphql` problem — the flat comment surface does not preserve full review-thread state.
Share bugs, ideas, or general feedback.
Use this skill when the user wants to work through requested changes on a GitHub pull request. Use the GitHub MCP or gh CLI for PR metadata and patch context. Treat thread-aware review data as a gh api graphql problem — the flat comment surface does not preserve full review-thread state.
Run all gh commands with elevated network access. If CLI auth is required, confirm gh auth status first and ask the user to authenticate with gh auth login if it fails.
Resolve the PR.
gh pr view --json number,url.Inspect review context with thread-aware reads.
gh api graphql whenever the task depends on unresolved review threads, inline review locations, or resolution state — it fetches reviewThreads, isResolved, isOutdated, and file/line anchors.Cluster actionable review threads.
Confirm scope before editing.
Implement the selected fixes locally.
Summarize the result.
gh hits auth or rate-limit issues mid-run, ask the user to re-authenticate and retry.If neither the connector nor gh can resolve the PR cleanly, tell the user whether the blocker is missing repository scope, missing PR context, or CLI authentication, then ask for the missing repo/PR identifier or a refreshed gh login.
# Check auth
gh auth status
# View PR
gh pr view <number> --json number,url,title,state
# List review threads (GraphQL)
gh api graphql -f query='
query($owner:String!, $repo:String!, $pr:Int!) {
repository(owner:$owner, name:$repo) {
pullRequest(number:$pr) {
reviewThreads(first:50) {
nodes {
id
isResolved
isOutdated
comments(first:5) {
nodes { body path line }
}
}
}
}
}
}
' -f owner=OWNER -f repo=REPO -F pr=NUMBER
npx claudepluginhub yeaight7/agent-powerups --plugin quality-gatesGuides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.