Agent Skills: Leavn Commit Machine

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

UncategorizedID: willsigmon/sigstack/leavn-commit-machine

Install this agent skill to your local

pnpm dlx add-skill https://github.com/willsigmon/sigstack/tree/HEAD/plugins/app-dev/skills/leavn-commit-machine

Skill Files

Browse the full folder contents for leavn-commit-machine.

Download Skill

Loading file tree…

plugins/app-dev/skills/leavn-commit-machine/SKILL.md

Skill Metadata

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

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