# Ado Fix Review Comments

> Fix PR review comments, simplify code, and self-review

- Skill: `majiayu000/ado-fix-review-comments` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/ado-fix-review-comments`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/ado-fix-review-comments/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/ado-fix-review-comments

---


# Fix Review Comments Skill

## Process

### 1. Understand Each Comment
- Read the review comment carefully
- Understand what change is requested
- Check the surrounding code context via the diff hunk

### 2. Make Targeted Fixes
For each comment:
- Navigate to the file and line
- Implement the requested change
- Keep changes minimal and focused
- Maintain code style consistency

### 3. Run Code Simplifier
After all fixes:
- Run /code-simplifier on modified files
- Ensure code remains clean and readable

### 4. Reply & Resolve on GitHub
After fixing each comment:
- Reply to EVERY review comment on the PR explaining the fix (use `mcp__plugin_github_github__add_reply_to_pull_request_comment`)
- Resolve each review thread so the reviewer sees all comments addressed
- Even if a comment required no code change, reply explaining why

### 5. Self-Review
Before committing:
- Review all changes made
- Verify fixes are correct
- Check for regressions
- Ensure code style is consistent

### 6. Output Format
```
## Review Comment Fixes

### Comment 1: [file:line]
**Feedback:** [original comment]
**Fix:** [what was changed]

### Comment 2: [file:line]
...

## Code Simplification
[changes made by code-simplifier]

## Self-Review
- [ ] All comments addressed
- [ ] No regressions introduced
- [ ] Code style consistent
- [ ] Tests still pass (if applicable)
```

