Agent skill
review
Interactive markdown review with web UI. Use when user says "review this", "check this plan", "피드백", "검토해줘" or specifies a file path to review.
Install this agent skill to your Project
npx add-skill https://github.com/team-attention/plugins-for-claude-natives/tree/main/plugins/interactive-review/skills/review
SKILL.md
Interactive Review Skill
This skill opens an interactive web UI where users can review content with checkboxes and comments.
How It Works
- Determine the content source:
- If user specifies a file path: Use the
Readtool to get the file contents - If user provides content directly: Use that content as-is
- Otherwise: Collect the most recent relevant content from the conversation
- If user specifies a file path: Use the
- Call
mcp__interactive_review__start_reviewwith the content - A browser window opens automatically with the review UI
- User reviews each item:
- Check/uncheck to approve/reject
- Add optional comments
- User clicks Submit
- Process the feedback and respond accordingly
Content Sources (Priority Order)
- Explicit file path: User says "review /path/to/file.md" or "이 파일 리뷰해줘: README.md"
- Read the file using
Readtool and use its contents
- Read the file using
- Direct content: User provides or references specific content to review
- Use the provided content directly
- Conversation context: Extract relevant content from recent conversation
- Plans, documents, code, etc. that were recently discussed
Usage
When 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>"
})
Processing Results
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 |
Example Flow
User: "Review this implementation plan"
- Extract the plan content from recent output
- Call start_review with the content
- Wait for user feedback (tool blocks until submit)
- Present summary of feedback
- Ask if user wants you to proceed with approved items or revise rejected items
Response Template
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dev-scan
개발 커뮤니티에서 기술 주제에 대한 다양한 의견 수집. "개발자 반응", "커뮤니티 의견", "developer reactions" 요청에 사용. Reddit, HN, Dev.to, Lobsters 등 종합.
tech-decision
This skill should be used when the user asks to "기술 의사결정", "뭐 쓸지 고민", "A vs B", "비교 분석", "라이브러리 선택", "아키텍처 결정", "어떤 걸 써야 할지", "트레이드오프", "기술 선택", "구현 방식 고민", or needs deep analysis for technical decisions. Provides systematic multi-source research and synthesized recommendations.
google-calendar
Google 캘린더 일정 조회/생성/수정/삭제. "오늘 일정", "이번 주 일정", "미팅 추가해줘" 요청에 사용. 여러 계정(work, personal) 통합 조회 지원.
metamedium
This skill should be used when the user is building, planning, or strategizing and the key question is whether to optimize content (what) or change form (how/medium). Trigger on "내용 vs 형식", "content vs form", "metamedium", "형식을 바꿔볼까", "새로운 포맷", "관점 전환", "perspective shift", "다른 방법 없을까", "같은 방식이 안 먹혀", "diminishing returns". Applies Alan Kay's metamedium concept to surface form-level alternatives. For requirement clarification use vague; for strategy blind spots use unknown.
unknown
This skill should be used when the user provides a strategy, plan, or decision document and wants to surface hidden assumptions and blind spots using the Known/Unknown 4-quadrant framework. Trigger on "known unknown", "4분면 분석", "blind spots", "뭘 놓치고 있지", "뭘 모르는지 모르겠어", "전략 점검", "전략 분석", "assumption check", "가정 점검", "quadrant analysis", "what am I missing". Strategy-level blind spot analysis with hypothesis-driven questioning. For requirement clarification use vague; for content-vs-form reframing use metamedium.
vague
This skill should be used when the user's request or requirement is ambiguous and needs iterative questioning to become actionable. Trigger on "clarify requirements", "refine requirements", "요구사항 명확히", "요구사항 정리", "뭘 원하는 건지", "make this clearer", "spec this out", "scope this", "/clarify". Turns vague inputs into concrete specs. For strategy blind spots use unknown; for content-vs-form reframing use metamedium.
Didn't find tool you were looking for?