music on atproto
plyr.fm
description: Review PR feedback and address comments argument-hint: [PR number, optional]#
consider review#
check PR feedback and address it.
process#
-
find the PR
- if number provided: use it
- otherwise:
gh pr view --json number,title,url
-
gather all feedback in parallel:
# top-level review comments gh pr view NNN --comments # inline code review comments gh api repos/zzstoatzz/plyr.fm/pulls/NNN/comments --jq '.[] | {path: .path, line: .line, body: .body, author: .user.login}' # review status gh pr view NNN --json reviews --jq '.reviews[] | {author: .author.login, state: .state, body: .body}' -
summarize feedback:
- blocking issues (changes requested)
- suggestions (nice to have)
- questions needing response
-
for each item:
- if code change needed: make the fix
- if clarification needed: draft a response
- if disagreement: explain your reasoning
-
report what you addressed and what needs discussion