Fix Review Points
Address unresolved review comments on branch: $ARGUMENTS
Setup
- •Create/access worktree
- •Use
/create-worktree $ARGUMENTS
bashcd .git-worktrees/$(echo "$ARGUMENTS" | tr '/' '-') pwd # Verify location
- •Use
Process
- •
Analyze unresolved comments
bashgh pr view --json reviewThreads --jq '.reviewThreads[] | select(.isResolved == false) | {path: .path, line: .line, body: .comments[0].body}' - •
Plan fixes
- •Use Explore sub-agent to understand each issue
- •Use Plan sub-agent to create fix strategy
- •
Execute fixes
- •Address each comment sequentially
- •Use general-purpose sub-agent for implementation
- •Test each fix
- •
Commit and push
- •Use
/commit-pushwith descriptive message - •Reference review comments in commit
- •Use
- •
Resolve threads
bash# Resolve via GitHub UI or API gh api graphql -f query='...'
- •
Update PR
- •Update PR description with fix summary
- •Request re-review
bashgh pr comment --body "Review feedback addressed. Please re-review."
Critical Constraints
- •ALL work within the worktree only
- •Verify with
pwdbefore changes - •Do not modify outside the worktree
Output
- •List of fixed issues
- •Updated PR description
- •Re-review requested