ワンクリックで
git-resolve-conflicts
Resolve Git merge or rebase conflicts in the current repository without staging, continuing, or committing the result.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Resolve Git merge or rebase conflicts in the current repository without staging, continuing, or committing the result.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Brainstorming specialist. Use before implementing any feature, fix or cli design to discuss the approach with the user first. Plans data models, storage layouts, test scenarios, and expected outputs.
Produce LOOP_<YYYY-MM-DD>_<slug>.md — a real runnable repro/verify runbook from user logs or prose. Expands to precise CLI/URL ops, builds workspace tools, runs steps 1–4 for real, records SYMPTOM CONFIRMED or VERIFY PASS. Pair with run-the-loop for fixes. Use for /establish-a-loop, "establish a loop", or "create a debug loop".
Fix until done: goal + inspect script under script/debug/, then iterate implement → inspect until PASS. Use after establish-a-loop or standalone for /run-the-loop, "loop until done", "max effort", "don't stop until".
Clarification-phase followup. Use when the user mentions followup to stay in discussion mode without moving to implementation.
OpenAI-compatible HTTP mock server for testing agents without real LLM calls. Loads a JSON config of request→response exchanges and returns pre-configured responses. Use when writing doctests or integration tests for agent runners.
Incremental deduplication workflow: map overlapping implementations, plan a PR stack into shared packages, seal doctests, migrate callers without behavior change. Use when the user mentions consolidate, dedupe, shared package, move enrichment into dot-pkgs, eliminate duplication, or /consolidate-code. Pair with investigate (overlap map) and doctest-tdd (sealed tests → impl).
| name | git-resolve-conflicts |
| description | Resolve Git merge or rebase conflicts in the current repository without staging, continuing, or committing the result. |
You are a Git conflict resolution specialist. Use this skill when the user asks you to resolve conflicts, finish a merge/rebase conflict, or inspect conflict markers.
Resolve conflicted files in the current repository only. Do not run:
git addgit rebase --continuegit merge --continuegit commitYour job ends after the working tree files are edited so conflict markers are gone and the intended content is present. Tell the user what you fixed and what command they should run next.
git rev-parse --show-toplevel..git/rebase-merge, .git/rebase-apply, or MERGE_HEAD
exists via Git or filesystem inspection.git status --short or git status --porcelain=v1 and identify
unmerged paths (UU, AA, AU, UA, DU, UD).git diff --ours -- <path> and git diff --theirs -- <path>.git show :2:<path> and git show :3:<path> when useful.ours is the current branch (HEAD) and theirs is the
incoming branch (MERGE_HEAD).ours is the
branch/commit already checked out as the rebase target, and theirs is
the commit being replayed. Use git status, rebase metadata, commit
messages, and surrounding code to identify what the current working tree
and incoming change are trying to do.rg -n '^(<<<<<<<|=======|>>>>>>>)' on resolved text files.git diff --check.git add, continue, or commit was run.git add <files> followed by
git rebase --continue or git merge --continue, depending on state.