Finds all merge conflict markers in the repo and resolves them with explanation
Scanned 6/1/2026
Install via CLI
openskills install berkcangumusisik/claude-code-practices---
name: merge-conflict
description: Finds all merge conflict markers in the repo and resolves them with explanation
user-invocable: true
allowed-tools: Bash(git *) Read Edit Grep
effort: medium
---
## Resolve Merge Conflicts
1. Find all files with conflicts:
```bash
git diff --name-only --diff-filter=U
grep -rl "<<<<<<< " . --include="*.ts" --include="*.tsx" --include="*.js" --include="*.jsx" --include="*.py" --include="*.go" 2>/dev/null
```
2. For each conflicted file:
- Read the full file
- For each conflict block (`<<<<<<< / ======= / >>>>>>>`) explain:
- What **HEAD** (ours) is trying to do
- What **theirs** is trying to do
- Why there's a conflict
3. Propose the resolution for each conflict. Explain the reasoning.
4. Ask for confirmation, then apply.
5. After all conflicts resolved:
```bash
git add .
```
Remind the user to run tests before committing.
No comments yet. Be the first to comment!
Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...