with one click
code-review
Run a thorough self-review pass on the most recent change.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run a thorough self-review pass on the most recent change.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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.