EN 中文

Quick Start

快速开始

$ /code-review            # Review current changes (medium)
$ /review                 # Alias for /code-review
$ /code-review thorough   # High depth
$ /code-review high main  # Review diff against main branch
$ /code-review max --fix   # Exhaustive + auto-fix

Effort Levels

审查深度

Level级别Command命令Scope范围
quick/code-review quickHigh-confidence blocking bugs only只报高置信度阻塞 bug
medium/code-review (default)Blockers + obvious code smells阻塞 + 明显代码异味
high/code-review highCross-file data flow, concurrency, error handling跨文件数据流、并发、错误处理
max/code-review maxExhaustive — long-tail design, perf, test coverage穷举——长尾设计、性能、测试覆盖

Work Modes

工作模式

Review + Output (--comment)

审查 + 输出

Results printed as structured PR-style file-by-file comments in-conversation.

审查结果以 PR 风格逐文件输出到对话中。

Review + Auto-Fix (--fix)

审查 + 自动修复

After reviewing, applies the suggested fixes to the working tree. Each fix is a separate edit so you can undo selectively with /undo.

审查后自动将建议修复应用到工作区。每项修复是独立的 edit,可通过 /undo 选择性撤销。

Branch Diff Review

分支差异审查

$ /code-review high main   # Review changes since main
$ /code-review max feature-branch

See Also

相关文档