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