ワンクリックで
review-style
Review unstaged git changes for code style and architectural cleanliness
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review unstaged git changes for code style and architectural cleanliness
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create a git commit with a short, lowercase commit message
Use when the user wants to create a GitHub issue from a rough problem description or feature idea
Create a pull request with a structured description covering why, what, challenges, and future work
Analyze a GitHub issue and develop an implementation plan
Review all changes on the current branch compared to master
Review unstaged git changes for bugs, logic errors, and security problems
| name | review-style |
| description | Review unstaged git changes for code style and architectural cleanliness |
| disable-model-invocation | true |
Look at the currently unstaged changes in git from a purely code style and architectural perspective.
Obtain the diff to review using this fallback chain:
git diff. If this produces output, use it as the diff.git diff --cached. If this produces output, use it as the diff.git diff master...HEAD to see all committed changes on the current branch relative to master.If all three are empty, report that there is nothing to review and stop.
Review the changes for:
Do NOT think about logical bugs, security problems, or correctness. Focus only on ensuring we have a clean, well-structured, maintainable code base. Be specific — reference file names and line numbers. Only flag things that actually matter.