원클릭으로
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.