Create a git commit with conventional commit format. Injects current git state automatically.
git status -sbgit diff HEAD --statgit branch --show-currentgit config --get user.name && git config --get user.emailgit log --oneline -10Commits are terse one-liner conventional commits: type(scope): description.
feat, fix, refactor, docs, test, chorekevin/ prefix. Do not create new codex/ branches for Kevin's work.Co-authored-by, or generated-by trailers. The agent is operating on Kevin's behalf, not claiming authorship.Stage files by name (never git add -A or git add .). Group changes by intent.
Based on the context above, stage the relevant files and create the commit. Do not use any other tools. Do not send any text besides the tool calls.