ワンクリックで
uncommitted
Critically review uncommitted git changes (staged + unstaged + untracked) before committing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Critically review uncommitted git changes (staged + unstaged + untracked) before committing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
End the current session with comprehensive summary of work done. Use when completing significant work or stopping for the day.
Start a new development session with optional name. Use when beginning significant work or wanting to track progress.
Add notes and progress to the current session. Use when tracking changes, issues, or accomplishments.
Show the current active session status including duration and recent updates. Use when checking progress or session state.
Show help and reference for the session management system. Use when learning how sessions work or available commands.
List all development sessions with their titles and dates. Use when reviewing past work or finding a specific session.
| name | uncommitted |
| description | Critically review uncommitted git changes (staged + unstaged + untracked) before committing. |
| argument-hint | ["path/glob"] |
| allowed-tools | Bash(git:*), Bash(test:*), Bash(find:*), Bash(grep:*), Bash(wc:*), Read |
git branch --show-current 2>/dev/null || echo "(not a git repo)"git status --porcelain 2>/dev/null || echo "(not a git repo)"git --no-pager diff --stat --cached 2>/dev/null || truegit --no-pager diff --stat 2>/dev/null || truegit --no-pager log --oneline -5 2>/dev/null || trueReview uncommitted changes in the working tree.
$ARGUMENTS is provided, focus the review on those paths (treat it like a path or glob).git diff (and git diff --cached) to inspect the actual changes.CLAUDE.md exists, call out any violated constraints or needed updates.Detect likely test commands (from package.json, Makefile, common configs). Do not run tests by default.
Summary
Critical Issues
Improvements (Should Address)
Suggested Tests
Test Results (only if tests were run)
Be direct. Focus on actual issues, not hypothetical edge cases.