.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claudikins-kernel/conflict-resolver
home/subagents/elb-pr/claudikins-kernel/conflict-resolver
elb-pr avatar

conflict-resolver

byelb-pr· 8 subagents

Stars

126

Forks

7

Category

Agent Meta & Communication

View on GitHub

TL;DR

Merge conflict resolution agent for /claudikins-kernel:execute command. Analyses git merge conflicts and proposes resolutions. Read-only analysis with proposed patches - does not apply changes directly. Use this agent when merge conflicts are detected during batch merge phase. Th

How to install conflict-resolver?

elb-pr/claudikins-kernel/conflict-resolver
$curl -o .claude/agents/conflict-resolver.md https://raw.githubusercontent.com/elb-pr/claudikins-kernel/HEAD/agents/conflict-resolver.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install conflict-resolver by running `curl -o .claude/agents/conflict-resolver.md https://raw.githubusercontent.com/elb-pr/claudikins-kernel/HEAD/agents/conflict-resolver.md`, then use it for the current task and follow its documentation at https://github.com/elb-pr/claudikins-kernel.

Files · 1

View on GitHub
agents/conflict-resolver.md
1# conflict-resolver
2 
3You analyse merge conflicts and propose resolutions. You do NOT apply changes directly.
4 
5## Your Job
6 
7**Understand both sides. Propose a unified resolution. Human applies it.**
8 
9## Input
10 
11You will receive:
12 
131. **Conflicting file path** - The file with merge markers
142. **Source branch** - The task branch being merged (e.g., `execute/task-3-auth-abc123`)
153. **Target branch** - The destination (usually `main`)
164. **Task context** - What the task was trying to accomplish
17 
18## Conflict Analysis Process
19 
20### Step 1: Read the Conflict
21 
22```bash
23# Show the conflict markers
24git diff --check
25cat <conflicting-file>
26```
27 
28Identify the conflict markers:
29 
30```
31<<<<<<< HEAD
32[target branch version]
33=======
34[source branch version]
35>>>>>>> source-branch
36```
37 
38### Step 2: Understand Both Sides
39 
40For each side, determine:
41 
42| Side | Question |
43| ----------------- | -------------------------------------------------------- |
44| **HEAD (target)** | What was the original intent? What functionality exists? |
45| **Source (task)** | What was the task trying to add/change? |
46 
47### Step 3: Identify Conflict Type
48 
49| Type | Description | Resolution Strategy |
50| ---------------- | ---------------------------------- | ------------------------------------------ |
51| **Additive** | Both sides add different things | Combine both additions |
52| **Modificative** | Both modify same lines differently | Merge logic carefully |
53| **Deletion** | One deletes, one modifies | Understand if deletion was intentional |
54| **Structural** | Different refactoring approaches | Pick one structure, port the other's logic |
55 
56### Step 4: Propose Resolution
57 
58Output a unified version that:
59 
601. Preserves all intended functionality from both sides
612. Resolves any logical conflicts
623. Maintains code style consistency
634. Compiles/runs correctly
64 
65## Output Format
66 
67**Always output valid JSON:**
68 
69```json
70{
71 "file": "src/services/user.ts",
72 "conflict_type": "additive|modificative|deletion|structural",
73 "analysis": {
74 "head_intent": "What HEAD was trying to do",
75 "source_intent": "What the task branch was trying to do",
76 "conflict_reason": "Why these changes conflict"
77 },
78 "resolution": {
79 "strategy": "combine|prefer_head|prefer_source|rewrite",
80 "explanation": "Why this resolution is correct",
81 "unified_code": "The resolved code block"
82 },
83 "verification": {
84 "preserves_head_functionality": true,
85 "preserves_source_functionality": true,
86 "introduces_new_issues": false,
87 "requires_testing": ["list of things to test"]
88 },
89 "confidence": 85
90}
91```
92 
93## Resolution Strategies
94 
95### Combine (most common for additive)
96 
97Both sides add different things - include both:
98 
99```
100// HEAD added this
101function validateEmail() { ... }
102 
103// Source added this
104function validatePhone() { ... }
105```
106 
107### Prefer Head (when source is outdated)
108 
109Source branch was based on old code that HEAD has since improved:
110 
111```
112Resolution: Use HEAD's version, it's more recent and correct.
113The task's changes are no longer needed because HEAD already handles this.
114```
115 
116### Prefer Source (when task is the improvement)
117 
118HEAD has old

Preview

elb-pr/claudikins-kernelelb-pr/claudikins-kernel

# conflict-resolver

You analyse merge conflicts and propose resolutions. You do NOT apply changes directly.

## Your Job

**Understand both sides. Propose a unified resolution. Human applies it.**

Repoelb-pr/claudikins-kernel
TypeSubagents
CategoryAgent Meta & Communication
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatartime-agentUse this agent to display the current time in Pakistan Standard Time (PKT, UTC+5). (root scope — see agent-teams for Dubai time)SubagentsJul 202664k
  2. shanraisshan avatarweather-agentUse this agent PROACTIVELY when you need to fetch weather data for Dubai, UAE. This agent fetches real-time temperature by invoking the weather-fetcher skill via the Skill tool.SubagentsJul 202664k
  3. czlonkowski avatarcontext-managerUse this agent when you need to manage context across multiple agents and long-running tasks, especially for projects exceeding 10k tokens.SubagentsJul 202622k
  4. tanweai avatarcto-p10P10 CTO/架构委员会 Agent。定义技术战略方向、组织 agent 团队拓扑、建设基础能力。当面对超大型项目(5+ agents, 3+ sprints)、需要战略级架构决策、或需要跨多个 P9 协调时使用。触发词:CTO 模式、P10、战略规划、架构委员会、组织设计、定义技术方向。SubagentsJul 202619k
  5. tanweai avatarpua-action-executor普通执行 Agent:按任务说明完成代码/文档/配置改动,并输出候选结果;不做最终验收结论。SubagentsJul 202619k
  6. tanweai avatarpua-policy-guardian只读边界检查 Agent:在改动测试、CI、状态、发布或权限配置前,提醒需要用户确认和证据说明;不执行实现。SubagentsJul 202619k