ai-coding/skills/merge/SKILL.md
Intelligently merge branches with context-aware conflict resolution
npx skillsauth add melvynx/aiblueprint mergeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Merge branches intelligently by understanding feature context and resolving conflicts efficiently.
git branch --show-currentgit status --shortgit log --oneline -5CONTEXT GATHERING:
git branch --show-current to identify current branchgit status to ensure clean working treeFEATURE ANALYSIS:
gh pr list --head <branch-name>gh pr view <number> --json title,body,filesMERGE ATTEMPT:
git fetch origin <branch-name>git merge origin/<branch-name> --no-commitgit status --porcelainCONFLICT DETECTION:
git commit with descriptive messagegit diff --name-only --diff-filter=USMART RESOLUTION: For each conflicted file:
VERIFICATION:
git diff --cached to review changesgrep -r "<<<<<<< HEAD"git add -A and commitgit merge --abort and report blockersdevelopment
Create or edit Claude, Codex, and Cursor skills/rules. Use for SKILL.md, .cursor/rules, AGENTS.md, skill prompts, frontmatter, references, scripts, and discovery rules.
data-ai
Create and maintain agent rules in AGENTS.md and .agents/rules/. Use for project rules, conventions, constraints, rule indexes, or requests to add or optimize agent rules.
development
Set up per-worktree environments for Claude Code, Cursor, or Codex. Use for worktree-ready repos, IDE environment config, worktree-up/down scripts, or dev.sh wiring.
testing
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".