commit-all

star 1

Commit all local changes in the current repository, including tracked, untracked, and deletions, as a single Conventional Commit. Use only when the user explicitly wants all changes committed together.

w00ing By w00ing schedule Updated 3/3/2026

name: commit-all description: Commit all local changes in the current repository, including tracked, untracked, and deletions, as a single Conventional Commit. Use only when the user explicitly wants all changes committed together.

Commit All

Commit every local change in one commit.

Steps

  1. Review what will be committed.
git status --short
git diff --name-status
  1. Stage everything.
git add -A
  1. Commit using Conventional Commits format.
git commit -m "<type>(<scope>): <single intent>"
  • Use type(scope)!: subject when there is a breaking change.
  • Prefer: feat, fix, refactor, test, docs, chore, build, ci, perf.
  1. Verify commit and remaining state.
git log --oneline --decorate -n 1
git status --short
Install via CLI
npx skills add https://github.com/w00ing/skills --skill commit-all
Repository Details
star Stars 1
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator