Claude Code Plugins

Community-maintained marketplace

Feedback
28
0

Create clean, descriptive git commits for Leavn app following emoji prefix convention with comprehensive change summaries

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 Leavn Commit Machine
description Create clean, descriptive git commits for Leavn app following emoji prefix convention with comprehensive change summaries
allowed-tools Bash, Read

Leavn Commit Machine

Instructions

Create commits following Leavn's emoji convention:

  1. Check what changed:

    git status
    git diff --stat
    git diff
    
  2. Choose emoji prefix:

    • ๐Ÿ”ง :wrench: - Bug fixes, corrections
    • ๐Ÿš€ :rocket: - New features, major improvements
    • ๐Ÿงน :broom: - Code cleanup, deletions
    • โšก๏ธ :zap: - Performance improvements
    • ๐Ÿ›ก๏ธ :shield: - Security, error handling
    • ๐Ÿ”€ :twisted_rightwards_arrows: - Merge, consolidation
    • ๐Ÿ› :bug: - Bug fixes (visual/functional)
    • ๐ŸŽจ :art: - UI/UX improvements
    • ๐ŸŽต :musical_note: - Audio features
    • ๐Ÿ“ :memo: - Documentation
  3. Write commit message:

    {emoji} Brief summary (50 chars)
    
    - Bullet point details
    - File counts, line changes
    - Impact statement
    
    ๐Ÿค– Generated with Claude Code
    Co-Authored-By: Claude <noreply@anthropic.com>
    
  4. Commit:

    git add -A
    git commit -m "$(cat <<'EOF'
    Message here
    EOF
    )"
    

Use this skill when: Ready to commit changes, multiple files modified, need good commit message