ported/20260305-191444/skills/git-commit/SKILL.md
Commit staged changes with conventional commit message. Use when user says "commit changes", "commit this", "save my changes", or wants to create a git commit.
npx skillsauth add sequenzia/agent-alchemy git-commitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create a commit with a conventional commit message based on staged changes. Automatically stages all changes and analyzes the diff to generate an appropriate commit message.
Execute these steps in order.
Check for changes to commit:
git status --porcelain
Stage all changes including untracked files:
git add .
Report: "Staged all changes."
View the staged diff to understand what changed:
git diff --cached --stat
git diff --cached
Analyze the diff to determine:
Build a conventional commit message following this format:
<type>(<optional-scope>): <description>
[optional body]
Types:
feat - New featurefix - Bug fixdocs - Documentation onlystyle - Formatting, no code changerefactor - Code restructuring without behavior changetest - Adding or updating testschore - Maintenance tasksbuild - Build system or dependenciesci - CI configurationperf - Performance improvementRules:
Create the commit:
git commit -m "$(cat <<'EOF'
<commit message here>
EOF
)"
On success:
On pre-commit hook failure:
If the commit fails:
git reset HEAD to unstage without losing changesThis skill requires the following capabilities:
Note: Originally ran on a fast model -- suitable for lightweight execution.
development
Systematic, hypothesis-driven debugging workflow with triage-based track routing. Use when asked to "fix this bug", "debug this", "why is this failing", "this is broken", "investigate this error", "track down this issue", or any debugging situation. Supports --deep flag to force full investigation.
development
Executes diagnostic investigation tasks to test debugging hypotheses. Runs tests, traces execution, checks git history, and reports evidence. (converted from agent)
content-media
Provides architectural pattern knowledge for designing feature implementations including MVC, event-driven, microservices, and CQRS patterns. Use when designing system architecture or choosing implementation patterns.
documentation
Provides Mermaid diagram syntax, best practices, and styling rules for technical visualizations. Use when creating diagrams, flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, architecture diagrams, C4 diagrams, or any visual documentation in markdown.