一键导入
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.