File contents Resolve Conflict
When to use
Git merge conflicts occur
Agents have conflicting recommendations
Multiple approaches need reconciliation
Instructions
Git Conflicts
Identify the conflict type:
Content conflict (same lines modified)
Structural conflict (file moved/deleted)
Dependency conflict (version mismatch)
Analyze both sides:
Understand intent of each change
Check which is more recent
Verify which aligns with requirements
Resolve appropriately:
Keep the correct version
Merge changes if both needed
Document the resolution
Agent Disagreements
Compare assessments:
List points of agreement
Identify specific disagreements
Check confidence levels
Apply resolution rules:
Security issues: Cursor preferred (0.8 weight)
Architecture issues: Gemini preferred (0.7 weight)
Equal weight: Escalate to human
Document decision:
Record which assessment won
Note the reason
Save for future learning
Resolution Commands
# See conflicts
git status
# View conflict markers
git diff
# Accept current (ours)
git checkout --ours <file>
# Accept incoming (theirs)
git checkout --theirs <file>
# Manual resolution then:
git add <file>
git commit
1 --- 2 name: resolve-conflict-2 3 description: Resolve Conflict 4 --- 5 6 # Resolve Conflict 7 8 ## When to use 9 10 - Git merge conflicts occur 11 - Agents have conflicting recommendations 12 - Multiple approaches need reconciliation 13 14 ## Instructions 15 16 ### Git Conflicts 17 18 1. Identify the conflict type: 19 - Content conflict (same lines modified) 20 - Structural conflict (file moved/deleted) 21 - Dependency conflict (version mismatch) 22 23 2. Analyze both sides: 24 - Understand intent of each change 25 - Check which is more recent 26 - Verify which aligns with requirements 27 28 3. Resolve appropriately: 29 - Keep the correct version 30 - Merge changes if both needed 31 - Document the resolution 32 33 ### Agent Disagreements 34 35 1. Compare assessments: 36 - List points of agreement 37 - Identify specific disagreements 38 - Check confidence levels 39 40 2. Apply resolution rules: 41 - Security issues: Cursor preferred (0.8 weight) 42 - Architecture issues: Gemini preferred (0.7 weight) 43 - Equal weight: Escalate to human 44 45 3. Document decision: 46 - Record which assessment won 47 - Note the reason 48 - Save for future learning 49 50 ## Resolution Commands 51 52 ```bash 53 # See conflicts 54 git status 55 56 # View conflict markers 57 git diff 58 59 # Accept current (ours) 60 git checkout --ours <file> 61 62 # Accept incoming (theirs) 63 git checkout --theirs <file> 64 65 # Manual resolution then: 66 git add <file> 67 git commit 68 ```
majiayu000/claude-skill-registry-data/tree/main/workflow/resolve-conflict-etroxtaran-conductor-3 commit 8e7865df23
Frequently asked questions How do I install the Resolve Conflict skill? Run npx skillmds@latest add majiayu000/resolve-conflict-2 in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Resolve Conflict skill do? Resolve Conflict It is listed under Productivity on SkillMD.
Is Resolve Conflict safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Resolve Conflict? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Resolve Conflict free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Resolve Conflict? majiayu000 (@majiayu000) published this skill. Their other Agent Skills are listed on their SkillMD profile.