Stats
Actions
Tags
From commit
Create a git commit with semantic commit message format and push to remote
How this command is triggered — by the user, by Claude, or both
Slash command
/commit:and-pushThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Commit and Push Commands ## Context - Current Git status: `git status` - Current Git diff (staged and unstaged changes): `git diff HEAD --` - Current branch: `git branch --show-current` - Recent commits: `git log --oneline -10` ## Your task Based on the above changes, create a single Git commit and push it to the remote repository. You have the capability to call multiple tools in a single response. Stage, create the commit, and push using a single message. Do not use any other tools or do not send any other text or messages besides these tool calls. Commit should follow semantic co...
git statusgit diff HEAD --git branch --show-currentgit log --oneline -10Based on the above changes, create a single Git commit and push it to the remote repository.
You have the capability to call multiple tools in a single response. Stage, create the commit, and push using a single message. Do not use any other tools or do not send any other text or messages besides these tool calls.
Commit should follow semantic commit format: type(scope): description
Types: feat, fix, docs, style, refactor, test, chore
npx claudepluginhub duyet/codex-claude-plugins --plugin commit