From ox
Commits changes with a short imperative git message following strict style rules; creates new branch if on main. Uses git status, diff, log for context.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ox:commitThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Current git status: !`git status`
git statusgit diff HEADgit branch --show-currentgit log --oneline -10Based on the above changes:
npx claudepluginhub oxidian/cc-plugins --plugin oxCreates git commits with clear messages from working tree changes, following repo conventions or conventional commits. Handles clean trees and detached HEAD.
Creates a single well-crafted git commit by analyzing the diff, matching the repo's commit style, and writing a concise "why not what" message. Invoked via /commit.
Automates Git workflow: creates new branch if on main, commits changes with short imperative message, pushes to origin, and opens GitHub PR via gh CLI. Use after code changes.