conflict-resolver

Detect and resolve Git merge conflicts while escalating ambiguous cases to the user.

Updated Jan 16, 2026
One-click install
npx skills add https://github.com/adiomas/claude-code-adiomas-plugins --skill conflict-resolver-adiomas
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: conflict-resolver
Source: https://github.com/adiomas/claude-code-adiomas-plugins/tree/main/autonomous-dev/skills/conflict-resolver
Command: npx skills add https://github.com/adiomas/claude-code-adiomas-plugins --skill conflict-resolver-adiomas

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Developers face tedious, error-prone merge conflict resolution during branch integration. This Skill helps automatically resolve clearly resolvable conflicts and safely escalate uncertain cases to the user, preserving code integrity.

Core Features & Use Cases

  • Automatic conflict detection and classification (e.g., additive changes, conflicting imports, semantic collisions)
  • Safe automatic resolutions for non-ambiguous cases with an auditable trail
  • User-guided escalation for semantic or business-logic conflicts
  • Reference patterns and best practices to inform manual resolutions

Quick Start

Use this skill after a merge to scan the repository for unresolved conflicts and apply safe resolutions. When ambiguity is detected, provide options or request user input to proceed.

Frequently Asked Questions about conflict-resolver

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically resolve Git merge conflicts in my repository?

Automatically resolve Git merge conflicts by detecting additive changes, conflicting imports, and semantic collisions, applying safe resolutions while escalating ambiguous business-logic changes for explicit user input.

What is the safest way to handle Git merge conflicts during branch integration?

The safest way to handle Git merge conflicts is using a strict workflow that verifies actual conflicts exist, avoids automatic resolution of business-logic changes without confirmation, and requires explicit user input for ambiguous scenarios.

Can I automate pull request conflict resolution without breaking business logic?

Yes, you can automate pull request conflict resolution for non-ambiguous cases like additive changes while ensuring business logic is preserved by escalating uncertain semantic conflicts to the user for guided input.

How do I classify Git merge conflicts to decide between automatic and manual resolution?

Classify Git merge conflicts by detecting additive changes, conflicting imports, and semantic collisions to determine which cases can be safely resolved automatically and which require user-guided escalation.

When should I avoid automatic conflict resolution during a Git merge?

Avoid automatic conflict resolution when business-logic changes or ambiguous semantic scenarios are detected, requiring explicit user confirmation to preserve code integrity and prevent incorrect merges.

What should I do after resolving merge conflicts to ensure an auditable trail?

After resolving merge conflicts, review the auditable trail of safe automatic resolutions and reference patterns applied, ensuring all semantic conflicts and business-logic changes were properly escalated and confirmed.