원클릭으로
git-commit
Stage meaningful diffs and create Conventional Commits with WHY-focused messages
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Stage meaningful diffs and create Conventional Commits with WHY-focused messages
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Codex CLI を外部レビュアーとして使うレビューゲート。2 モード: native (欠陥検出、codex exec review) / adversarial (設計・前提への挑戦、 懐疑プロンプト付き codex exec)。clean になるまで review→fix→re-review を 反復する。bubblewrap sandbox が使えないホストでも動く bypass フラグ対応。 Triggers: spec/PRD/plan の作成・更新直後 (adversarial モード)、major 実装 ステップ完了後 (>=5 files / 新規モジュール / 公開 API / infra・config 変更) および git commit / PR / merge / release の前 (native モード)。 キーワード: Codex レビュー, codex review, レビューゲート, codex-review, adversarial review, Codex で確認, レビューしてもらう。
Claude Code CLI を外部レビュアーとして使うレビューゲート (Codex ホスト用)。 2 モード: native (欠陥検出、claude -p "/code-review") / adversarial (設計・前提への挑戦、懐疑プロンプトを claude -p に渡す)。clean になるまで review→fix→re-review を反復する。別モデル系統によるクロスレビューのため 独立性が最も高く、Codex ホストの第一レビュー手段。 Triggers: spec/PRD/plan の作成・更新直後 (adversarial モード)、major 実装 ステップ完了後 (>=5 files / 新規モジュール / 公開 API / infra・config 変更) および git commit / PR / merge / release の前 (native モード)。 キーワード: Claude レビュー, claude review, レビューゲート, クロスレビュー, Claude で確認, レビューしてもらう。
Codex CLI を外部レビュアーとして使うレビューゲート。2 モード: native (欠陥検出、codex exec review) / adversarial (設計・前提への挑戦、 懐疑プロンプト付き codex exec)。clean になるまで review→fix→re-review を 反復する。bubblewrap sandbox が使えないホストでも動く bypass フラグ対応。 Triggers: spec/PRD/plan の作成・更新直後 (adversarial モード)、major 実装 ステップ完了後 (>=5 files / 新規モジュール / 公開 API / infra・config 変更) および git commit / PR / merge / release の前 (native モード)。 キーワード: Codex レビュー, codex review, レビューゲート, codex-review, adversarial review, Codex で確認, レビューしてもらう。
Stage meaningful diffs and create Conventional Commits with WHY-focused messages
Guide structural code improvements using Kent Beck's Tidy First methodology. Use when seeing messy code, before making behavioral changes, after completing features, or discussing when to clean up code.
Use when the user says 「記憶の整理」「dream」, after large refactors that invalidate stored knowledge, or roughly every 20-30 sessions when memory files accumulate duplicates, contradictions, or stale references.
| name | git-commit |
| description | Stage meaningful diffs and create Conventional Commits with WHY-focused messages |
| allowed-tools | Bash(git status:*), Bash(git diff:*), Bash(git log:*), Bash(git add:*), Bash(git commit:*), Bash(git restore:*), Bash(git show:*) |
Create Conventional Commits (1.0.0) with WHY-focused messages.
Inspect the repository state first:
git status --short
git diff --stat # unstaged
git diff --cached --stat # staged
git log --oneline -10 # style reference
feat!: / fix!: may carry !. If a
refactor/style/docs/chore changed behavior, it is misclassified —
recategorize as feat or fix.git add -p <file> when a file mixes
unrelated changes, and split into multiple commits, one at a time.git diff --cached)refactor: has no behavior change)feat!: / fix!: