with one click
commit
Create a git commit with conventional commit message
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 a git commit with conventional commit message
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.
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.
Based on SOC occupation classification
| 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
)"