Stats
Actions
Tags
From git-workflow
Merge git branches with auto-generated Conventional Commits messages. Use when merging branches, finishing feature work, or creating merge commits.
How this skill is triggered — by the user, by Claude, or both
Slash command
/git-workflow:mergeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Merge branches with auto-generated Conventional Commits messages.
Merge branches with auto-generated Conventional Commits messages.
$merge # Merge current branch into develop/main
$merge feature/auth # Merge specific source branch
$merge develop main # Merge develop into main
$merge -i "#123" -s auth-flow # With issue and spec references
$merge --yes # Skip confirmation
$merge --all # Merge across all sub-repos
| Flag | Description |
|---|---|
-i, --issue <id> | Issue ID for commit message |
-s, --spec <name> | Spec name for commit message |
--all | Merge across all git repos in subdirectories |
-y, --yes | Skip confirmation prompt |
merge.md (in this skill directory)Use the companion merge.md in this directory as the agent prompt. Provide it with:
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
npx claudepluginhub shdennlin/agent-plugins --plugin git-workflow