Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .claude/commands/respond-to-pr-comments.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Task is to resolve all active comments on PR in GitHub.

First enumerate them, and then let's discuss each one. Wait for direction from me before moving forward on a fix.

Use `gh` CLI to perform operations

# Get PR number from current branch
gh pr view --json number --jq .number

# Get all comments
gh pr view --json comments --jq '.comments[] | {id: .id, body: .body, author: .author.login}'

# Mark comment as resolved
gh pr comment resolve <comment-id>