en un clic
commit
// Create a conventional commit from current workspace changes. Use when the user asks to run $commit, asks to commit changes, or asks for a commit message from the current diff.
// Create a conventional commit from current workspace changes. Use when the user asks to run $commit, asks to commit changes, or asks for a commit message from the current diff.
Use when the user explicitly invokes $work or asks for execution strategy for complex engineering work with unclear scope, dependent steps, or separable workstreams.
Preparing and creating git commits when explicitly requested; covers staged diff review, secrets checks, and conventional commit messages.
Verifying implementation work before claiming completion; covers tests, affected artifacts, evidence, and unresolved risks.
Create GitHub issues with optional parent/sub-issue relationships and organization issue types. Use when the user asks to create, link, or retag GitHub issues, especially when they mention a parent issue, sub-issues, tasks, bugs, epics, or cross-repo issue hierarchy.
Extract the underlying intent behind a request, issue, PR, or diff. Focus on problem and desired outcome; do not propose implementation, testing strategy, or rollout plans.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
| name | commit |
| description | Create a conventional commit from current workspace changes. Use when the user asks to run $commit, asks to commit changes, or asks for a commit message from the current diff. |
| metadata | {"short-description":"Minimal commit workflow"} |
Use this skill for a small, safe commit workflow. If the user only wants a commit message from the current diff, generate the message and stop before committing.
git status --short--all, stage all changes with git add -A.--all was requested.git diff --cached --stat<type>(<scope>): <summary>scope is optional.feat, fix, docs, refactor, test, chore, ci, build.-m strings.git commit -F - <<'EOF'
<type>(<scope>): <summary>
<wrapped body>
EOF
git log -1 --onelineCommit aborted: no staged changes. Stage files first or rerun with --all.git commit fails: show the git error and stop.--all is opt-in because staging unrelated work by default is unsafe in a dirty tree.