ワンクリックで
review-branch
Review the diff of the current branch against the base branch, critique the changes, then fix any issues found.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review the diff of the current branch against the base branch, critique the changes, then fix any issues found.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Squash all commits on the current git branch into a single commit. Soft-resets to the base branch, then re-commits the combined working tree with a single message.
Read the full diff of the current branch against its base so the assistant has context for follow-up prompts. Produces a brief grouped summary, not a critique.
SOC 職業分類に基づく
| name | review-branch |
| description | Review the diff of the current branch against the base branch, critique the changes, then fix any issues found. |
| disable-model-invocation | true |
| argument-hint | ["base-branch"] |
Review the diff of the current branch against the base branch and critique the code changes. Don't make any edits yet, just provide a review with issues categorized as major, minor, or nitpick.
If an argument is provided ($ARGUMENTS), use that as the base branch. Otherwise, detect the default branch from the remote by running git symbolic-ref refs/remotes/origin/HEAD and extracting the branch name. If that fails, fall back to whichever of main, master, or dev exists locally (check in that order with git rev-parse --verify).
isinstance checks or other runtime type guards that are redundant given the declared types. If values don't actually conform to the annotations, the annotations are wrong — that's the bug to fix, not a reason to add defensive checks.Ask whether to fix the issues. If yes, fix them, run typecheck/lint/tests to verify, and commit the fixes.