# Commit All

> Commit all current working tree changes to a git repository using conventional commits format. Use when the user asks to commit everything, commit all, or check in all changes.

- Skill: `heikopanjas/commit-all` (Agent Skill)
- Install (CLI): `npx skillmds@latest add heikopanjas/commit-all`
- Raw SKILL.md: https://api.skillmd.com/api/skills/heikopanjas/commit-all/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: heikopanjas (https://skillmd.com/u/heikopanjas)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/heikopanjas/commit-all

---


# Skill: commit-all

Commit **all current changes** to a git repository. Every modified, added, and deleted file in the working tree is staged and included in a single commit.

For commit message guidelines, protocol, and examples, read the shared conventions:
`shared/commit-conventions.md`

---

## Staging

Stage all changes with `git add -A` before committing. No file filtering is applied.

