Claude Code Plugins

Community-maintained marketplace

Feedback

Generating Commit Messages

@seanogdev/dotfiles
1
0

Stages all changes and generates clear commit messages following conventional commit format. Use when ready to commit your work.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name Generating Commit Messages
description Stages all changes and generates clear commit messages following conventional commit format. Use when ready to commit your work.

Generating Commit Messages

Instructions

  1. Run git add . to stage all changes (if not already staged)
  2. Run git diff --staged to see changes
  3. I'll suggest a single-sentence commit message under 50 characters
  4. Use conventional commit format (feat:, fix:, docs:, style:, refactor:, test:, chore:)
  5. Ensure clarity and context for future reference

Best practices

  • Use present tense
  • Explain what and why, not how