Review Implementing
Systematically implement code review feedback and suggestions with thoroughness and best practices.
npx degit LangbaseInc/agent-skills/review-implementing my-review-implementing
Helps developers systematically address code review comments, implement suggestions, and improve code quality based on reviewer feedback.
- Feedback Analysis - Parse and understand review comments
- Priority Assessment - Determine order of implementation
- Change Tracking - Track which comments have been addressed
- Testing - Verify fixes don't break existing functionality
- Documentation - Update docs to reflect changes
1. Gather Feedback
Collect all review comments and suggestions
2. Categorize
Organize by type:
- Critical issues
- Bugs
- Style improvements
- Refactoring suggestions
- Documentation updates
3. Prioritize
Order by importance and dependency
4. Implement
Address each item systematically
5. Verify
Test changes thoroughly
6. Respond
Reply to reviewers with resolution details
For each review comment:
- Understand the concern
- Plan the solution
- Implement the change
- Test the fix
- Mark as resolved
- Add explanation if needed
- Address all comments before re-requesting review
- Test each change thoroughly
- Keep related changes together
- Explain your reasoning when declining suggestions
- Ask for clarification when needed
- Update tests when fixing bugs
- Document non-obvious decisions
- Respond to each comment
- Explain your implementation approach
- Ask questions when unclear
- Thank reviewers for valuable feedback
- Mark conversations as resolved appropriately