Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

roo-conflict-resolution原产地冲突解决

Agent Skill

roo-conflict-resolution 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

964

周安装

41

GitHub Stars

23,037

下载量

338
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:roo-conflict-resolution(原产地冲突解决)
来源仓库:https://github.com/roocodeinc/roo-code
仓库路径:skills/roo-conflict-resolution
安装命令:
npx skills add https://github.com/roocodeinc/roo-code --skill roo-conflict-resolution
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/roocodeinc/roo-code --skill roo-conflict-resolution

简介

roo-conflict-resolution 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Roo Code Conflict Resolution Skill

When to Use This Skill

Use this skill when the task involves:

  • Resolving merge conflicts for a specific pull request
  • Rebasing a branch that has conflicts with the target branch
  • Understanding and analyzing conflicting code changes
  • Making intelligent decisions about which changes to keep, merge, or discard
  • Using git history to inform conflict resolution decisions

When NOT to Use This Skill

Do NOT use this skill when:

  • There are no merge conflicts to resolve
  • The task is about general code review without conflicts
  • You're working on fresh code without any merge scenarios

Workflow Overview

This skill resolves merge conflicts by analyzing git history, commit messages, and code changes to make intelligent resolution decisions. Given a PR number (e.g., "#123"), it handles the entire conflict resolution process.

Initialization Steps

Step 1: Parse PR Number

Extract the PR number from input like "#123" or "PR #123". Validate that a PR number was provided.

Step 2: Fetch PR Information

gh pr view [PR_NUMBER] --json title,body,headRefName,baseRefName

Get PR title and description to understand the intent and identify the source and target branches.

Step 3: Checkout PR Branch and Prepare for Rebase

gh pr checkout [PR_NUMBER] --force
git fetch origin main
GIT_EDITOR=true git rebase origin/main
  • Force checkout the PR branch to ensure clean state
  • Fetch the latest main branch
  • Attempt to rebase onto main to reveal conflicts
  • Use GIT_EDITOR=true to ensure non-interactive rebase

Step 4: Check for Merge Conflicts

git status --porcelain
git diff --name-only --diff-filter=U

Identify files with merge conflicts (marked with 'UU') and create a list of files that need resolution.

Main Workflow Phases

Phase 1: Conflict Analysis

Analyze each conflicted file to understand the changes:

  1. Read the conflicted file to identify conflict markers
  2. Extract the conflicting sections between <<<<<<< and >>>>>>>
  3. Run git blame on both sides of the conflict
  4. Fetch commit messages and diffs for relevant commits
  5. Analyze the intent behind each change

Phase 2: Resolution Strategy

Determine the best resolution strategy for each conflict:

  1. Categorize changes by intent (bugfix, feature, refactor, etc.)
  2. Evaluate recency and relevance of changes
  3. Check for structural overlap vs formatting differences
  4. Identify if changes can be combined or if one should override
  5. Consider test updates and related changes

Phase 3: Conflict Resolution

Apply the resolution strategy to resolve conflicts:

  1. For each conflict, apply the chosen resolution
  2. Ensure proper escaping of conflict markers in diffs
  3. Validate that resolved code is syntactically correct
  4. Stage resolved files with git add

Phase 4: Validation

Verify the resolution and prepare for commit:

  1. Run git status to confirm all conflicts are resolved
  2. Check for any compilation or syntax errors
  3. Review the final diff to ensure sensible resolutions
  4. Prepare a summary of resolution decisions

Git Commands Reference

CommandPurpose
gh pr checkout [PR_NUMBER] --forceForce checkout the PR branch
git fetch origin mainGet the latest main branch
GIT_EDITOR=true git rebase origin/mainRebase current branch onto main (non-interactive)
git blame -L [start],[end] [commit] -- [file]Get commit information for specific lines
git show --format="%H%n%an%n%ae%n%ad%n%s%n%b" --no-patch [sha]Get commit metadata
git show [sha] -- [file]Get the actual changes made in a commit
git ls-files -uList unmerged files with stage information
GIT_EDITOR=true git rebase --continueContinue rebase after resolving conflicts

Best Practices

Intent-Based Resolution (High Priority)

Always prioritize understanding the intent behind changes rather than just looking at the code differences. Commit messages, PR descriptions, and issue references provide crucial context.

Example: When there's a conflict between a bugfix and a refactor, apply the bugfix logic within the refactored structure rather than simply choosing one side.

Preserve All Valuable Changes (High Priority)

When possible, combine non-conflicting changes from both sides rather than discarding one side entirely. Both sides of a conflict often contain valuable changes that can coexist if properly integrated.

Escape Conflict Markers (High Priority)

When using apply_diff, always escape merge conflict markers with backslashes to prevent parsing errors:

  • Correct: \<<<<<<< HEAD
  • Wrong: <<<<<<< HEAD

Consider Related Changes (Medium Priority)

Look beyond the immediate conflict to understand related changes in tests, documentation, or dependent code. A change might seem isolated but could be part of a larger feature or fix.

Resolution Heuristics

CategoryRuleException
Bugfix vs FeatureBugfixes generally take precedenceWhen features include the fix
Recent vs OldMore recent changes are often more relevantWhen older changes are security patches
Test UpdatesChanges with test updates are likely more complete-
Formatting vs LogicLogic changes take precedence over formatting-

Common Pitfalls

Blindly Choosing One Side

Problem: You might lose important changes or introduce regressions. Solution: Always analyze both sides using git blame and commit history.

Ignoring PR Context

Problem: The PR description often explains the why behind changes. Solution: Always fetch and read the PR information before resolving.

Not Validating Resolved Code

Problem: Merged code might be syntactically incorrect or introduce logical errors. Solution: Always check for syntax errors and review the final diff.

Unescaped Conflict Markers in Diffs

Problem: Unescaped conflict markers (<<<<<<, =======, >>>>>>) will be interpreted as diff syntax. Solution: Always escape with backslash (\) when they appear in content.

Apply Diff Example

When resolving conflicts with apply_diff, use this pattern:

<<<<<<< SEARCH
:start_line:45
-------
\<<<<<<< HEAD
function oldImplementation() {
  return "old";
}
\=======
function newImplementation() {
  return "new";
}
\>>>>>>> feature-branch
=======
function mergedImplementation() {
  // Combining both approaches
  return "merged";
}
>>>>>>> REPLACE

Quality Checklist

Before Resolution

  • Fetch PR title and description for context
  • Identify all files with conflicts
  • Understand the overall change being merged

During Resolution

  • Run git blame on conflicting sections
  • Read commit messages for intent
  • Consider if changes can be combined
  • Escape conflict markers in diffs

After Resolution

  • Verify no conflict markers remain
  • Check for syntax/compilation errors
  • Review the complete diff
  • Document resolution decisions

Completion Criteria

  • All merge conflicts have been resolved
  • Resolved files have been staged
  • No syntax errors in resolved code
  • Resolution decisions are documented

Communication Guidelines

When reporting resolution progress:

  • Be direct and technical when explaining resolution decisions
  • Focus on the rationale behind each conflict resolution
  • Provide clear summaries of what was merged and why

Progress Update Format

Conflict in [file]:
- HEAD: [brief description of changes]
- Incoming: [brief description of changes]
- Resolution: [what was decided and why]

Completion Message Format

Successfully resolved merge conflicts for PR #[number] "[title]".

Resolution Summary:
- [file1]: [brief description of resolution]
- [file2]: [brief description of resolution]

[Key decision explanation if applicable]

All conflicts have been resolved and files have been staged for commit.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.28%
按下载量换算112

Claude

32.69%
按下载量换算110

Cursor

21.49%
按下载量换算73

Gemini CLI

8.73%
按下载量换算30

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills