toilahuongg/shopify-agents-kit

git-cm

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

First seen Mar 3, 2026

Installation

$ npx skills add toilahuongg/shopify-agents-kit --skill git-cm

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from toilahuongg/shopify-agents-kit · top by installs.

npx skills add toilahuongg/shopify-agents-kit

Browse all from toilahuongg/shopify-agents-kit

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 10
License LICENSE
Default branch master
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash(git:*)

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 863 B
  • docs SUMMARY.md 136 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

Git Commit

Commit changes with a conventional commit message.

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

- Command: git status

  1. View the diff if necessary to understand the changes better.

- Command: git diff --staged or git diff

  1. Add all changes to the staging area (unless specific files are requested).

- Command: git add .

  1. 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).