merge
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Merge
Merge branches intelligently by understanding feature context and resolving conflicts efficiently.
Context
- Current branch: !
git branch --show-current - Working tree status: !
git status --short - Target branch: $1
- Recent commits: !
git log --oneline -5
Workflow
- CONTEXT GATHERING:
git branch --show-currentto identify current branchgit statusto ensure clean working tree- CRITICAL: Abort if uncommitted changes exist