odoo-commit

Installation
SKILL.md

Workflow

  1. Run git diff --stat and git status --short to see what changed, plus git log -1 --oneline (and git log @{u}.. --oneline if a remote-tracking branch exists) to see the last local commit and whether it's still unpushed.

  2. If the change is a direct continuation or fix of that unpushed HEAD commit, skip drafting a new message and fold it in instead of creating a second commit for the same logical change:

    git add <file>
    git commit --amend --no-edit   # or drop --no-edit to also revise the message
    

    Otherwise, draft a new commit message.

  3. Stage relevant files by name - never git add -A or git add ..

  4. Write the commit message to a temporary file, then commit with git commit -F:

Installs
60
GitHub Stars
126
First Seen
Jul 14, 2026
odoo-commit — unclecatvn/agent-skills