Help us improve
Share bugs, ideas, or general feedback.
From commit-commands
Commits current changes (staged/unstaged) to a new branch if on main, pushes to origin, and creates a GitHub pull request via gh.
npx claudepluginhub ericgrill/agents-skills-plugins --plugin anthropic-commit-commandsHow this command is triggered — by the user, by Claude, or both
Slash command
/commit-commands:commit-push-prThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
## Context - Current git status: !`git status` - Current git diff (staged and unstaged changes): !`git diff HEAD` - Current branch: !`git branch --show-current` ## Your task Based on the above changes: 1. Create a new branch if on main 2. Create a single commit with an appropriate message 3. Push the branch to origin 4. Create a pull request using `gh pr create` 5. You have the capability to call multiple tools in a single response. You MUST do all of the above in a single message. Do not use any other tools or do anything else. Do not send any other text or messages besides these tool ...
/commit-push-prCommits current changes (staged/unstaged) to a new branch if on main, pushes to origin, and creates a GitHub pull request via gh.
/createCreates a Pull Request from current code changes: generates new branch, commits and pushes changes, creates PR via GitHub CLI preferring upstream if available.
/push-prCommits changes to a new branch if on main, pushes to origin, fills PR template with git diff details, and opens GitHub pull request.
/commit-push-prCommits staged changes with a conventional commit message, pushes current branch to origin, and creates GitHub pull request with auto-generated title, change summary, and issue links. Accepts optional PR title/description hint.
/commit-push-prCommits staged changes after build/test/lint/security verification, pushes branch, creates PR, optionally merges (merge/squash/rebase), and notifies. Supports flags like --draft, --no-verify, --skip-security.
Share bugs, ideas, or general feedback.
git statusgit diff HEADgit branch --show-currentBased on the above changes:
gh pr create