commit

Installation
SKILL.md

Commit

Quick start

When user triggers /commit or asks to commit:

  1. Run git add -A to stage all changes
  2. Run git status and git diff --staged to review changes
  3. Draft a conventional commit message (type(scope): subject)
  4. Present summary + commit message to user
  5. Ask for confirmation via question tool
  6. If confirmed: git commit -m "message"

Workflow

1. Stage all changes

Run git add -A to stage all modified, added, and deleted files.

Related skills
Installs
10
First Seen
Apr 25, 2026