Back to list
team-attention

review

by team-attention

Claude Code plugins for power users

396🍴 46📅 Jan 23, 2026

SKILL.md


name: review description: Interactive markdown review with web UI. Use when user says "review this", "check this plan", "피드백", "검토해줘" or specifies a file path to review. allowed-tools:

  • mcp__interactive_review__start_review
  • Read

Interactive Review Skill

This skill opens an interactive web UI where users can review content with checkboxes and comments.

How It Works

  1. Determine the content source:
    • If user specifies a file path: Use the Read tool 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
  2. Call mcp__interactive_review__start_review with the content
  3. A browser window opens automatically with the review UI
  4. User reviews each item:
    • Check/uncheck to approve/reject
    • Add optional comments
  5. User clicks Submit
  6. Process the feedback and respond accordingly

Content Sources (Priority Order)

  1. Explicit file path: User says "review /path/to/file.md" or "이 파일 리뷰해줘: README.md"
    • Read the file using Read tool and use its contents
  2. Direct content: User provides or references specific content to review
    • Use the provided content directly
  3. 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:

checkedcommentAction
trueemptyApproved - proceed as planned
truehas textApproved with note - consider the feedback
falsehas textRejected - modify according to comment
falseemptyRejected - remove or reconsider this item

Example Flow

User: "Review this implementation plan"

  1. Extract the plan content from recent output
  2. Call start_review with the content
  3. Wait for user feedback (tool blocks until submit)
  4. Present summary of feedback
  5. 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

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

+5
最近の活動

3ヶ月以内に更新

+5
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon