agentsclimarketplace

Commit msg

Skill nmoinvaz/speedy-gonzales/skills/commit-msg

Analyze staged git changes and generate commit message options with title and bodyFrom its SKILL.md

Install
npx -y skills add nmoinvaz/speedy-gonzales --skill commit-msg

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.0 KB, 208 tokens by cl100k_base, as published. Nobody here has run it

Workflow

  1. Get the staged diff for analysis:

    git diff --cached
    
  2. Check previous commit message format in the repository:

    git log --oneline -10
    
  3. Search staged changes for ticket IDs (patterns like PROJ-123, D4T-123, etc.)

  4. Generate 3 distinct commit message options following the format above. Each option should use a different verb and framing — not rephrase the same sentence.

  5. Follow these guidelines:

    • Match the format used in previous commits in the repository
    • If a ticket ID was found, include it in the title (typically as a prefix)
    • Do not add Claude as a co-author in the commit message
  6. Present the options to the user for selection using AskUserQuestion

  7. Create the commit with the selected title and body:

    git commit -m "<title>" -m "<body>"
    

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.