commit

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

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "commit" with this command: npx skills add windmill-labs/windmill/windmill-labs-windmill-commit

Git Commit Skill

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

Instructions

  • Analyze changes: Run git status and git diff to understand what was modified

  • Stage only modified files: Add files individually by name. NEVER use git add -A or git add .

  • 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

  • Run git status to see all changes

  • Run git diff to understand the changes in detail

  • Run git log --oneline -5 to see recent commit style

  • Stage ONLY the modified/relevant files: git add <file1> <file2> ...

  • Create the commit with conventional format: git commit -m "<type>: <description>

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>"

  • Run git status to verify the commit succeeded

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

rust-backend

No summary provided by upstream source.

Repository SourceNeeds Review
General

svelte-frontend

No summary provided by upstream source.

Repository SourceNeeds Review
General

pr

No summary provided by upstream source.

Repository SourceNeeds Review