NYC
skills/smithery/ai/resolving-merge-conflicts

resolving-merge-conflicts

SKILL.md

Merge Conflict Resolution

Invariant Principles

  1. Synthesis over selection - Never pick sides. Create third option combining both intents. --ours/--theirs = amputation.
  2. Intent preservation - Both branches represent valuable parallel work. Understand WHY each changed before touching code.
  3. Surgical precision - Line-by-line edits, never wholesale replacement. >20 line changes require explicit approval.
  4. Evidence-based decisions - Tests exist for reasons. Deleting tested code = breaking expected behavior. Check first.
  5. Consent before loss - User must explicitly approve any code removal after understanding tradeoffs.

Inputs

Input Required Description
conflict_files Yes List of files with merge conflicts (from git status)
merge_base Yes Common ancestor commit (from git merge-base)
ours_branch Yes Current branch name
theirs_branch Yes Branch being merged

Outputs

Output Type Description
resolution_plan Inline Per-file synthesis strategy with base/ours/theirs analysis
resolved_files Files Conflict-free source files with synthesized changes
verification_report Inline Test results, lint status, behavior confirmation

Reasoning Schema

Proceed only when synthesis strategy clear and surgical.

Conflict Classification

Type Files Resolution
Mechanical Lock files, changelogs, test fixtures Auto: regenerate locks, chronological changelog merge
Binary Images, compiled assets Ask user to choose (synthesis impossible)
Complex Source, configs, docs 3-way analysis + synthesis required

Resolution Workflow

  1. Detect: List conflicted files, classify mechanical/complex
  2. Analyze: 3-way diff (base vs ours vs theirs) per file
  3. Auto-resolve: Mechanical files only
  4. Plan: Synthesis strategy per complex file, present for approval
  5. Execute: Surgical edits after explicit approval
  6. Verify: Tests pass, lint clean, behavior preserved

Common Patterns

Pattern Resolution
Both modified same function Merge both changes (logging AND error handling)
Delete vs modify Apply modification to new location
Same name, different purpose Rename to distinguish
Same name, same purpose True merge into unified implementation

Anti-Patterns

Red Flags (STOP immediately)

Thought Reality
"User said simplify, so use theirs" Simplify = new third option simpler than EITHER
"Basically the same" Conflict exists because they differ
"I'll adopt their approach" --theirs with extra steps
"Tests need updating anyway" Understand test purpose first
"This is cleaner" Cleaner is not the goal. Preserving both intents is.

Question Format

Bad (binary, over-interpreted) Good (surgical, specific)
"Ours or theirs?" "What specifically needs to change?"
"Is master's better?" "What from master should we adopt?"
"Should I simplify?" "Which specific lines are unnecessary?"

Binary questions get binary answers, then extrapolate to wholesale changes never approved.

Stealth Amputation Trap

Accidental --theirs without command:

  1. Ask binary question about complex code
  2. Get partial answer about ONE aspect
  3. Interpret as approval for EVERYTHING

Prevention: Approval for ONE aspect is NOT approval for all. Each deletion requires separate verification.

Acceptable Amputation Cases

Only with explicit user consent after tradeoff explanation:

  • Binary files (no synthesis possible)
  • Generated files (will regenerate)
  • User explicitly requests after understanding loss

Plan Template

## Resolution: [filename]
**Base:** [original state]
**Ours:** [change + intent]
**Theirs:** [change + intent]
**Synthesis:** [how combining both]
**Risk:** [edge cases, concerns]

Self-Check

Before completing resolution:

  • All conflicts resolved (no <<<<<<< markers remain)
  • Tests pass (both ours and theirs functionality)
  • Lint/build clean
  • No tested code deleted without test updates
  • Behavior from both branches present
  • User approved specific changes (not extrapolated)
  • Synthesis achieved, not selection

If ANY unchecked: STOP and fix.

Weekly Installs
1
Repository
smithery/ai
First Seen
4 days ago
Installed on
amp1
opencode1
kimi-cli1
codex1
github-copilot1
gemini-cli1