Interactive markdown review with web UI. Use when user says "review this", "check this plan", "피드백", "검토해줘" or specifies a file path to review.
This skill opens an interactive web UI where users can review content with checkboxes and comments.
Read tool to get the file contentsmcp__interactive_review__start_review with the contentRead tool and use its contentsWhen the user wants to review content:
# If file path is specified, read it first:
Read({ "file_path": "/path/to/file.md" })
# Then start the review:
mcp__interactive_review__start_review({
"content": "<content from file or conversation>",
"title": "<descriptive title>"
})
The tool returns a JSON with review items. Handle each item based on:
| checked | comment | Action |
|---|---|---|
| true | empty | Approved - proceed as planned |
| true | has text | Approved with note - consider the feedback |
| false | has text | Rejected - modify according to comment |
| false | empty | Rejected - remove or reconsider this item |
User: "Review this implementation plan"
After receiving feedback:
## Review Summary
**Approved**: X items
**Needs revision**: Y items
### Items requiring changes:
- [Item]: [User's comment]
Would you like me to:
1. Proceed with approved items
2. Revise the rejected items based on feedback
3. Both - revise then proceed