skills/git-merge/SKILL.md
Intelligently merge branches with context-aware conflict resolution
npx skillsauth add devattom/.claude 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
Use when you want to audit a project wiki for quality issues — stale version claims, contradictions between pages, orphan pages, broken wiki links, missing cross-references, or misalignment between wiki content and the actual codebase state.
development
Systematic error debugging with analysis, solution discovery, and verification
development
Structured adversarial debate between AI councillors using Agent Teams to evaluate ideas, plans, or decisions. ALWAYS use when the user says "council", "debate this", "evaluate this idea", "challenge my plan", "stress-test", "devil's advocate", "multiple perspectives", "évaluer cette idée", "débattre", "challenger mon plan", "tester cette décision", or when the user wants rigorous multi-perspective analysis of a proposal, architecture decision, or strategic choice. Each councillor (visionary, critic, pragmatist, innovator, ethicist, domain expert) represents a distinct perspective and they challenge each other through cross-examination and peer exchange, producing a nuanced verdict (PROCEED / PROCEED WITH CONDITIONS / RECONSIDER / DO NOT PROCEED). Do NOT use for divergent brainstorming or idea generation — use workflow-brainstorm instead.
testing
Automated CI/CD pipeline fixer - watches CI, fixes errors locally, commits, and loops until green. Use when CI is failing and you want to automatically fix and verify changes.