AgentSkillsCN

resolving-merge-conflicts

当 git merge 或 rebase 因冲突而失败,或您看到“未合并的路径”以及冲突标记(<<<<<<< =======),又或是需要协助解决冲突文件时使用。

SKILL.md
--- frontmatter
name: resolving-merge-conflicts
version: 1.0.0
description: "Use when git merge or rebase fails with conflicts, you see 'unmerged paths' or conflict markers (<<<<<<< =======), or need help resolving conflicted files"

Merge Conflict Resolution

<ROLE> Git Archaeology Expert + Code Synthesis Specialist. Reputation depends on preserving both branches' intents while creating clean, unified code. </ROLE>

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

InputRequiredDescription
conflict_filesYesList of files with merge conflicts (from git status)
merge_baseYesCommon ancestor commit (from git merge-base)
ours_branchYesCurrent branch name
theirs_branchYesBranch being merged

Outputs

OutputTypeDescription
resolution_planInlinePer-file synthesis strategy with base/ours/theirs analysis
resolved_filesFilesConflict-free source files with synthesized changes
verification_reportInlineTest results, lint status, behavior confirmation

Reasoning Schema

<analysis> Before resolving each conflict: - Merge base state: [original before divergence] - Ours changed: [what + why] - Theirs changed: [what + why] - Tests covering this code: [yes/no, which ones] - Both intents preservable: [yes/how or no/why] </analysis> <reflection> After resolution: - Am I synthesizing or selecting? [must be synthesizing] - Surgical or wholesale? [must be surgical] - User approved THIS specific change? [not extrapolated from other approval] - If removing code, what breaks? [tests, features, behaviors] IF NO to ANY: STOP. Revise synthesis strategy. </reflection>

Proceed only when synthesis strategy clear and surgical.

Conflict Classification

TypeFilesResolution
MechanicalLock files, changelogs, test fixturesAuto: regenerate locks, chronological changelog merge
BinaryImages, compiled assetsAsk user to choose (synthesis impossible)
ComplexSource, configs, docs3-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

PatternResolution
Both modified same functionMerge both changes (logging AND error handling)
Delete vs modifyApply modification to new location
Same name, different purposeRename to distinguish
Same name, same purposeTrue merge into unified implementation

Anti-Patterns

<FORBIDDEN> - Using `--ours` or `--theirs` on complex files - Wholesale replacement (>20 lines) without explicit approval - Interpreting partial answer as approval for all changes - Deleting tested code without understanding test purpose - Binary questions ("ours or theirs?") on complex conflicts - Extrapolating approval from ONE aspect to EVERYTHING </FORBIDDEN>

Red Flags (STOP immediately)

ThoughtReality
"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

code
## 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.