ワンクリックで
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.