Commit

Generate a commit message following project conventions. Use when the user says "commit", "commit this", "make a commit", or invokes /commit.

nimblepros 8cd13e9 2 files · 3.4 KB Updated

File contents

Commit

Generate and execute a commit following the project's conventional commit format.

Step 1: Understand the changes

Use AskUserQuestion to confirm:

  1. Work item ID (auto-detect from branch name if possible)
  2. Commit type (fix, feat, refactor, chore, docs, test, perf)

If the conversation already makes the type and work item obvious, skip the question and proceed.

Step 2: Read the diff

git status
git diff -w HEAD
git log --oneline -5

Derive the message from the conversation context first. Fall back to the diff only when invoked with no prior discussion.

Step 3: Generate and commit

Present the commit message in a code block for confirmation, then stage and commit.

Format

type(scope): subject line

Optional body (ONLY when the subject alone is not enough).

See references/conventions.md for the full format specification and examples.

nimblepros/agent-skills/tree/main/.claude/skills/commit commit 8cd13e9147

Frequently asked questions

npx skillmds@latest add nimblepros/commit