Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
windmill-labs avatar

Commit

  • 87 installs
  • 17.4k repo stars
  • Updated August 5, 2026
  • windmill-labs/windmill

Helps with git & pull requests tasks.

About

commit is a Claude Code skill for git & pull requests. It helps solo builders move faster with AI-assisted development.

  • commit
  • Git & Pull Requests
  • AI-coding skill

Commit by the numbers

  • 87 all-time installs (skills.sh)
  • Ranked #246 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/windmill-labs/windmill --skill commit

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs87
repo stars17.4k
Last updatedAugust 5, 2026
Repositorywindmill-labs/windmill

What it does

Helps with git & pull requests tasks.

Files

SKILL.mdMarkdownGitHub ↗

Git Commit Skill

Create a focused, single-line commit following conventional commit conventions.

Instructions

1. Analyze changes: Run git status and git diff to understand what was modified 2. Stage only modified files: Add files individually by name. NEVER use git add -A or git add . 3. Write commit message: Follow the conventional commit format as a single line

Conventional Commit Format

<type>: <description>

Types

  • feat: New feature or capability
  • fix: Bug fix
  • refactor: Code change that neither fixes a bug nor adds a feature
  • docs: Documentation only changes
  • style: Formatting, missing semicolons, etc (no code change)
  • test: Adding or correcting tests
  • chore: Maintenance tasks, dependency updates, etc
  • perf: Performance improvement

Rules

  • Message MUST be a single line (no multi-line messages)
  • Description should be lowercase, imperative mood ("add" not "added")
  • No period at the end
  • Keep under 72 characters total

Examples

feat: add token usage tracking for AI providers
fix: resolve null pointer in job executor
refactor: extract common validation logic
docs: update API endpoint documentation
chore: upgrade sqlx to 0.7

Execution Steps

1. Run git status to see all changes 2. Run git diff to understand the changes in detail 3. Run git log --oneline -5 to see recent commit style 4. Stage ONLY the modified/relevant files: git add <file1> <file2> ... 5. Create the commit with conventional format:

   git commit -m "<type>: <description>"

6. Run git status to verify the commit succeeded

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.