review-mode
Review Mode brings structured, annotation-based code review into your AI workflow. Instead of pasting feedback in chat, you review Markdown
Open source Open in the app JSON README (API)
About
Review Mode brings structured, annotation-based code review into your AI workflow. Instead of pasting feedback in chat, you review Markdown plans and documents directly in VS Code — adding inline comments, setting priorities, and threading replies — while your AI agent reads those annotations and implements changes automatically. The workflow has three parts that work together: - Review Mode VS Code extension renders your file in a read-only WebView panel with a comment sidebar. Click any line to add an annotation, set its priority (low → urgent), and start a threaded discussion. - Review Mode MCP server exposes the annotation data to your AI agent. The agent can read all open comments, implement changes, mark comments resolved, and reopen the file for another review round. - This plugin gives your agent the skills and slash commands to run the full cycle: /review-mode to open a file, /update-plan to implement feedback on a document, and /implement-review to iterate on any file type. E
Details
- Kind
- Plugins
- Topic
- Developer tools
- Publisher
- aurelio-amerio
- Origin
- marketplace
- Category
- ferramentas
- Last push
- 2026-05-16T15:21:22Z
- Repository state
- ativo
- License
- MIT
- Added
- 2026-08-30 01:48:58
- Updated
- 2026-08-30 01:48:58
- Origin id
aurelio-amerio/review-mode-plugin/review-mode
README
# review-mode-plugin Plugin for the [Review Mode](https://marketplace.visualstudio.com/items?itemName=aurelio-amerio.review-mode) VS Code extension. Adds AI agent skills and commands for annotation-based document review workflows. Works with **Claude Code**, **GitHub Copilot**, **Cursor**, and **Codex**. For full documentation, see the [Review Mode GitHub page](https://github.com/aurelio-amerio/review-mode). ## Prerequisites 1. Install the [Review Mode](https://marketplace.visualstudio.com/items?itemName=aurelio-amerio.review-mode) VS Code extension. 2. Install [`uv`](https://docs.astral.sh/uv/getting-started/installation/) if you don't have it already. 3. Install the MCP server: ```bash uv tool install review-mode-mcp ``` ## Installation This plugin is not currently published on the official marketplace, as such it needs to be installed as a local plugin. ### Claude Code ``` /plugin marketplace add https://github.com/aurelio-amerio/review-mode-plugin /plugin install review-mode@review-mode-plugin ``` ### GitHub Copilot Open the Command Palette and run **Chat: Install Plugin From Source**, then enter: ``` https://github.com/aurelio-amerio/review-mode-plugin ``` ### Cursor ```bash git clone --depth 1 https://github.com/aurelio-amerio/review-mode-plugin ~/.cursor/plugins/local/review-mode-plugin ``` ### Codex ```bash codex plugin marketplace add aurelio-amerio/review-mode-plugin ```