Agent Skills: Git Commit

Commit changes to git with a descriptive conventional commit message. Use when ready to commit staged or unstaged changes.

UncategorizedID: toilahuongg/shopify-agents-kit/git-cm

Install this agent skill to your local

pnpm dlx add-skill https://github.com/toilahuongg/Shopify-Agents-Kit/tree/HEAD/.claude/skills/git-cm

Skill Files

Browse the full folder contents for git-cm.

Download Skill

Loading file tree…

.claude/skills/git-cm/SKILL.md

Skill Metadata

Name
git-cm
Description
Commit changes to git with a descriptive conventional commit message. Use when ready to commit staged or unstaged changes.

Git Commit

Commit changes with a conventional commit message.

  1. Check the current git status to understand what has changed.

    • Command: git status
  2. View the diff if necessary to understand the changes better.

    • Command: git diff --staged or git diff
  3. Add all changes to the staging area (unless specific files are requested).

    • Command: git add .
  4. Commit the changes with a descriptive and conventional commit message.

    • Command: git commit -m "<type>: <subject>"
    • Ensure the message follows conventional commit standards (e.g., feat, fix, chore, docs, refactor).