原始内容
doc-review
A native Markdown document review window for terminal coding agents, powered by Glimpse. Ships for Claude Code, Codex CLI, and pi.
- In Claude Code it adds a
/doc-reviewslash command. - In Codex CLI it ships as a
doc-reviewskill. - In pi it registers a
/doc-reviewslash command.
All three open the same native review window, render a Markdown file, let the user leave selection and document comments, allow direct raw Markdown edits, and write feedback back to the agent.
Install
pi
pi install npm:pi-doc-review
# or
pi install git:github.com/danmactough/doc-review
Then in pi:
/doc-review [path/to/file.md]
Claude Code
/plugin marketplace add danmactough/doc-review
/plugin install doc-review@doc-review
Codex CLI
codex plugin marketplace add danmactough/doc-review
Then enable the plugin in Codex and invoke:
@doc-review [path/to/file.md]
Standalone CLI
git clone https://github.com/danmactough/doc-review.git
cd doc-review/plugin
npm install
npm install -g .
npm run install-command
Then:
doc-review [path/to/file.md]
Prior Art
Based on (https://github.com/dbachelder/slop-review) by Dan Bachelder, which is a port of pi-diff-review (https://github.com/badlogic/pi-diff-review) by Mario Zechner.