# Commit

> Stage and commit changes with conventional commit format. Use when the user says /commit or asks to commit.

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

---


## Instructions

1. Run `git status` and `git diff` to inspect changes
2. Run `git log --oneline -5` to see recent commit style
3. Draft a conventional commit message (`type(scope): description`)
4. Stage files: `git add <files>`
5. Commit: `git commit -m "<message>"`
6. Show final `git status`

## Rules
- Do NOT commit .env, credentials.json, or secrets
- Do NOT use --no-verify or --no-gpg-sign
- Only commit when user explicitly requests it

