commit-work

Installation
Summary

Create logical, well-described git commits with staged review and Conventional Commits formatting.

  • Guides you through inspecting changes, deciding commit boundaries, and staging only intended modifications using patch mode when needed
  • Enforces Conventional Commits format (type, scope, subject, body, footer) with clear separation of what changed and why
  • Includes a pre-commit checklist covering secrets detection, accidental debug code, and unrelated formatting to catch issues before shipping
  • Splits mixed changes across files or within single files by feature, backend/frontend, logic/tests, and dependency updates to keep commits logically scoped
SKILL.md

Commit work

Goal

Make commits that are easy to review and safe to ship:

  • only intended changes are included
  • commits are logically scoped (split when needed)
  • commit messages describe what changed and why

Inputs to ask for (if missing)

  • Single commit or multiple commits? (If unsure: default to multiple small commits when there are unrelated changes.)
  • Commit style: Conventional Commits are required.
  • Any rules: max subject length, required scopes.

Workflow (checklist)

  1. Inspect the working tree before staging
    • git status
    • git diff (unstaged)
    • If many changes: git diff --stat
  2. Decide commit boundaries (split if needed)
Related skills

More from softaworks/agent-toolkit

Installs
3.7K
GitHub Stars
1.8K
First Seen
Jan 20, 2026