en un clic
commit
Create a git commit with conventional commit message
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Create a git commit with conventional commit message
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Build the project (auto-detects build system)
Find and remove dead code, unused imports, and technical debt
Create git commits in logical groups for all current changes
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 |
| description | Create a git commit with conventional commit message |
| argument-hint | [message] |
Create a git commit following project conventions.
(<type>): <description>
No body, no co-authors.
| 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 style$ARGUMENTS provided, use as commit message$ARGUMENTS:
git addgit commit -m "$(cat <<'EOF'
(type): description
EOF
)"
git status to verify.env or credential files--amend unless explicitly requested--force push--no-verifygit add server/http/src/main/kotlin/
git commit -m "$(cat <<'EOF'
(feat): Add user preferences endpoint
EOF
)"