一键导入
code-review
Run a thorough self-review pass on the most recent change.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run a thorough self-review pass on the most recent change.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Help the user create a new zot extension (slash command, LLM tool, or guard) in any language.
Help the user create, install, or package zot themes, including theme-only extensions.
Diagnose and minimally fix a failing test, then re-run.
| name | code-review |
| description | Run a thorough self-review pass on the most recent change. |
| allowed-tools | ["read","bash"] |
| permissions | {"bash":["git diff*","git log*","git show*","git status"]} |
When the user asks for a code review (and you have not already done one in this turn), follow this routine.
Use bash to run git status and git diff (or git diff --staged
if there are no unstaged changes). Skim the patch end to end before
analysing any single hunk.
Read the file in full with the read tool — never review only the
hunk; you need surrounding context to evaluate the change properly.
Then look for:
Produce a concise written review with this shape:
Don't restate every line of the diff. Don't speculate about future features. Stay grounded in what the patch does.
Do not auto-apply fixes. The user will decide what to act on.