Resolve all merge conflicts on the current branch non-interactively, validate the build, and commit. Use when the user says "fix merge conflicts", "resolve conflicts", or when git status shows conflicting files.
التثبيت
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Resolve all merge conflicts on the current branch non-interactively, validate the build, and commit. Use when the user says "fix merge conflicts", "resolve conflicts", or when git status shows conflicting files.
disable-model-invocation
true
Fix Merge Conflicts
Resolve all merge conflicts on the current branch non-interactively and leave the repo buildable.
Constraints
Do not ask the user for input. Make best-effort decisions and explain them in a summary.
Prefer minimal changes that preserve both sides' intent.
Do not push or tag — only commit locally.
Workflow
1. Detect conflicts
git status --porcelain
Collect files with U statuses or containing <<<<<<< / ======= / >>>>>>> markers.
2. Resolve conflicts per file
Open each conflicting file and remove conflict markers. Merge both sides logically when feasible.
When sides are mutually exclusive, pick the variant that:
Compiles and passes type checks
Preserves existing public APIs and behavior
File-type strategies:
File type
Strategy
package.json
Merge keys conservatively, then yarn install to regenerate yarn.lock
yarn.lock
Never manually edit — regenerate with yarn install
Config files (.json, .yaml)
Preserve union of safe settings; don't delete required fields
Markdown / text
Include both unique sections, deduplicate headings
Binary files
Prefer current branch (ours)
Generated / build artifacts
Prefer current branch (ours), or regenerate
3. Validate
Run all three checks. Fix any failures before proceeding.
yarn build:verify && yarn lint && yarn typecheck
If package.json was modified, run yarn install first.