一键导入
crit-code-review
Review code changes in crit's multi-file TUI with syntax highlighting and diff markers. After the review, address any comments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review code changes in crit's multi-file TUI with syntax highlighting and diff markers. After the review, address any comments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Open a document or plan in crit's interactive TUI for review. After the review, address any comments by editing the document. Use when a plan or document needs human review, when the user asks to review a document, or after generating/updating a plan.
Open crit for review. Routes to code review (multi-file TUI for code changes) or plan/document review (single-file TUI).
基于 SOC 职业分类
| name | crit-code-review |
| description | Review code changes in crit's multi-file TUI with syntax highlighting and diff markers. After the review, address any comments. |
| allowed-tools | Bash(crit *), Read, Edit, Grep, MultiEdit |
Review code changes using crit's multi-file code review TUI.
The crit binary must be installed and on PATH. If not installed:
go install github.com/kevindutra/crit/cmd/crit@latest
Check if $TMUX is set:
If in tmux, run this command with a timeout of 600000 (10 minutes) since it blocks until the user finishes reviewing:
crit review --code --detach --wait
If not in tmux (command fails with "requires a tmux session"), ask the user to run the TUI manually:
Please run this in your terminal, review the changes, and let me know when you're done:
crit review --code
Wait for the user to confirm before proceeding.
After the user confirms the review is complete, read the aggregate review comments:
crit status --code
This outputs JSON with all files and their comments.
For each file in the files array, for each comment:
line number and content_snippet to locate where the comment appliesbody for what the reviewer wants changedAfter addressing ALL comments across ALL files, summarize what you changed.
After making changes, ask the user if they want to re-review:
"I've addressed all comments. Want to review the changes? I'll open crit again."
If yes, go back to Step 1. If no, done.
content_snippet field shows the line content when the comment was created — use it to find the right location even if line numbers have shifted