pr-feedback-fix¶
Systematically addresses PR review comments by loading feedback and implementing changes.
Synopsis¶
Description¶
The pr-feedback-fix command loads collected PR feedback and systematically addresses each item. It prioritizes by severity, implements changes, and tracks resolution status.
Parameters¶
| Parameter | Position | Required | Default | Description |
|---|---|---|---|---|
FEATURE_ID |
$1 |
No | Auto-detect | Feature identifier |
Prerequisites¶
pr_feedback.mdmust exist (frompr-feedback-collect)
Workflow¶
- Load
pr_feedback.md - Sort items by priority (P0 first)
- For each item:
- Analyze the feedback
- Implement the fix
- Mark as resolved
- Update feedback document
- Report completion
Examples¶
Fix All Feedback¶
Example output:
✅ PR Feedback Resolution Complete
Feature: user-auth
Items Resolved: 6/6
Changes Made:
1. [P1] Fixed null check in validateToken()
2. [P1] Added rate limiting to login endpoint
3. [P2] Renamed variable for clarity
4. [P2] Added missing error handling
5. [P2] Updated docstring
6. [P3] Fixed typo in comment
Run code-check to verify changes.
Resolution Status¶
| Status | Meaning |
|---|---|
RESOLVED |
Fix implemented |
WONT_FIX |
Declined with reason |
QUESTION |
Needs clarification |
PENDING |
Not yet addressed |
Related Commands¶
pr-feedback-collect- Collect feedback firstcode-check- Verify after fixing