Interactive markdown review with web UI. Use when: - User says "review this", "check this plan", "/review" - User wants to give feedback on a plan or document - User says "let me review", "피드백", "검토해줘" - User specifies a file path to review (e.g., "review /path/to/file.md")
/plugin marketplace add team-attention/plugins-for-claude-natives/plugin install team-attention-interactive-review-plugins-interactive-review@team-attention/plugins-for-claude-nativesThis skill is limited to using the following tools:
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
Use when working with Payload CMS projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior.