Helps developers bundle changes into logical, atomic commits after running automated formatting and verification.
Install
mkdir -p .claude/skills/commit-all && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12077" && unzip -o skill.zip -d .claude/skills/commit-all && rm skill.zipInstalls to .claude/skills/commit-all
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Create atomic commits from all unstaged changesKey capabilities
- →Format code using `just fmt`.
- →Verify the build passes using `just` before committing.
- →Group related unstaged changes into logical commits.
- →Propose commit messages and associated files to the user.
- →Add files and commit them with the approved messages.
How it works
The skill formats code, verifies the build, then interactively helps the user group unstaged changes into atomic commits with conventional messages.
Inputs & outputs
When to use commit-all
- →Creating atomic commits
- →Preparing code for final commit
- →Organizing changes before push
About this skill
Commit All Unstaged Changes
Create atomic commits from all unstaged changes.
Step 1: Format Code
!just fmt
Step 2: Verify Green Build
Run the full check suite before doing anything else. This catches broken code before it gets committed.
!just
If this fails, stop and fix the issues first. Do not proceed to commit
planning with a failing build. Re-run just after fixing until it passes.
Current State
!git status --short
!git diff --stat
Process
- Group related changes into logical commits
- For each group, propose:
Commit 1: <message>
- path/to/file.clj (brief description of change)
Commit 2: <message>
- path/to/other.clj
- Ask "Ready to create these commits?" and wait for approval
- After approval, for each commit:
git add <files>git commit -m "<message>"
Commit Style
- Summary line: imperative mood, capitalised, no trailing period, ~50 chars
- Blank line, then optional body wrapped at 72 chars
- Body explains why, not how — only include when it adds value
- No Co-Authored-By trailers
Match recent style:
!git log --oneline -5
$ARGUMENTS
When not to use it
- →When the build is failing.
- →When the user does not want to create atomic commits.
- →When the user wants to commit all changes in a single, large commit.
Limitations
- →Requires `just fmt` and `just` commands to be available.
- →Requires user approval for commit creation.
- →Does not automatically fix failing builds.
How it compares
This skill structures the commit process by enforcing formatting, build verification, and atomic commit creation, unlike manually staging and committing changes.
Compared to similar skills
commit-all side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| commit-all (this skill) | 0 | 5mo | Review | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| openspec-onboard | 10 | 6mo | Review | Beginner |
| codex-cli-bridge | 9 | 9mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
openspec-onboard
studyzy
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools
skill-sync
KyleKing
Syncs Claude Skills with other AI coding tools like Cursor, Copilot, and Codeium by creating cross-references and shared knowledge bases. Invoke when user wants to leverage skills across multiple tools or create unified AI context.
github-workflow-automation
ruvnet
Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.