com um clique
commit-all
Create git commits in logical groups for all current changes
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Create git commits in logical groups for all current changes
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
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.
| 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
)"