# Quick Commit

> Stage all changes and commit with a descriptive message

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

---


1. Run `git status` to see the current state
2. Run `git diff` to understand the changes
3. If no files are staged, run `git add -A .` to stage all changes; otherwise skip
4. Create a commit with a clear message that:
   - Starts with a type prefix (feat:, fix:, refactor:, docs:, test:, chore:)
   - Briefly describes what changed
   - Uses imperative mood ("Add feature" not "Added feature")

Example: `feat: add product search functionality`

