Help us improve
Share bugs, ideas, or general feedback.
From github-dev
Guides GitHub PR comment workflows: drafts responses, creates pending reviews via gh CLI, resolves feedback by fixing code or replying per strict style rules.
npx claudepluginhub fcakyon/claude-codex-settings --plugin github-devHow this skill is triggered — by the user, by Claude, or both
Slash command
/github-dev:pr-comment-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Procedural knowledge for writing and responding to PR review comments.
Processes PR review feedback by analyzing comments, implementing fixes, committing, pushing, replying on GitHub, and resolving threads. Triggered by /pr-respond or relevant queries.
Reads open GitHub PR review comments, triages by severity, applies code fixes, and drafts replies. Use when addressing PR feedback or code review.
Fetches GitHub PR review feedback, triages comments as valid/stale/incorrect, implements fixes, verifies with tests, and drafts replies.
Share bugs, ideas, or general feedback.
Procedural knowledge for writing and responding to PR review comments.
—, –, --) between sentences, expressions, examples, or terms. Use commas, periods, or "or" insteadWhen posting review comments via gh api, use the two-step pending flow:
gh api repos/{owner}/{repo}/pulls/{number}/reviews -f event=PENDING -f body=""gh api repos/{owner}/{repo}/pulls/{number}/reviews/{review_id}/comments -f body="..." -f path="..." -F line=N -f side=RIGHTReply comments (responses to existing threads) are posted directly, not as pending:
gh api repos/{owner}/{repo}/pulls/comments/{comment_id}/replies -f body="..."sleep $((RANDOM % 3 + 3))