with one click
commit-all
Create git commits in logical groups for all current changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create git commits in logical groups for all current changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | commit-all |
| description | Create git commits in logical groups for all current changes |
Create logically grouped git commits following project conventions.
(<type>): <description>
| Type | Use For |
|---|---|
feat | New features |
fix | Bug fixes |
refactor | Code restructuring |
docs | Documentation |
test | Tests |
chore | Maintenance |
perf | Performance |
style | Formatting |
git status to see changes (never use -uall)git diff --staged and git diff to understand changesgit log --oneline -5 to see recent commit stylegit addgit commit -m "$(cat <<'EOF'
(type): description
EOF
)"
git status to verify.env or credential files--amend unless explicitly requested--no-verifygit add server/http/src/main/kotlin/
git commit -m "$(cat <<'EOF'
(feat): Add user preferences endpoint
EOF
)"
Build the project (auto-detects build system)
Find and remove dead code, unused imports, and technical debt
Create a git commit with conventional commit message
Pick up unfinished work from where the last session left off
Debug and fix failing tests or errors
Search Claude Code conversation history on disk for a given query. Use when the user asks to find something from a previous conversation, check what was discussed before, or recover lost context.