Agent skill
git-hex-conflict-resolution
This skill should be used when the user is stuck in a git-hex-driven rebase, merge, or cherry-pick due to conflicts and wants the agent to inspect, resolve, and then continue or abort safely. Trigger phrases include: "resolve conflicts", "rebase is stuck", "conflict markers", "continue the rebase", "abort the rebase".
Install this agent skill to your Project
npx add-skill https://github.com/yaniv-golan/git-hex/tree/main/skills/git-hex-conflict-resolution
SKILL.md
Git-hex Conflict Resolution
When to use this Skill
This skill should be used when:
- A git-hex tool reports that an operation is paused because of conflicts.
- The user says a rebase or cherry-pick is "stuck", "paused", or "in conflict".
- You need to see which files conflict and decide whether to continue or abort.
Trigger phrases include: "rebase conflict", "cherry-pick conflict", "merge conflict", "stuck on conflicts", "continue the rebase", "abort the cherry-pick".
Workflow
-
Inspect conflict state
- Call
git-hex-getConflictStatusto determine:- Whether a rebase/merge/cherry-pick/revert is in progress.
- Which files are conflicting and the overall operation type (
rebase,merge,cherry-pick, orrevert).
- Use
includeContent: trueonly when necessary to inspect base/ours/theirs content for specific text files.
- Call
-
Resolve conflicts per file
- For text files:
- Propose or apply edits based on
base,ours, andtheirs. - Ensure conflict markers are removed before resolving.
- Call
git-hex-resolveConflictwith the file path (andresolution: "delete"for delete conflicts when appropriate).
- Propose or apply edits based on
- For text files:
- For delete conflicts, use the
resolutionparameter to choose whether to keep or remove the file.
-
Continue or abort the operation
- When all conflicts are resolved (or
getConflictStatusshows no remaining conflicting files but the operation is still paused), callgit-hex-continueOperation. - If the user decides to give up on the rebase or cherry-pick, call
git-hex-abortOperationto restore the pre-operation state.
- When all conflicts are resolved (or
-
Escalate if needed
- If the final result after continuing is not what the user wanted, suggest
using
git-hex-undoLastfrom the branch cleanup Skill to revert.
- If the final result after continuing is not what the user wanted, suggest
using
Tools to prefer
- Inspection:
git-hex-getConflictStatus - Resolution:
git-hex-resolveConflict - Control:
git-hex-continueOperation,git-hex-abortOperation - Recovery:
git-hex-undoLast(via the branch cleanup Skill)
Conflict types
Operation-level
"rebase"- Interactive rebase paused"merge"- Merge in progress"cherry-pick"- Cherry-pick paused"revert"- Revert paused (detected butcontinueOperation/abortOperationare not supported; usegit revert --continueor--abortdirectly)
File-level
"both_modified"- Both sides modified the file"deleted_by_us"- We deleted, they modified"deleted_by_them"- We modified, they deleted"added_by_both"- Both sides added different versions
Delete conflict handling
// To keep the file (must exist on disk):
{ "file": "path/to/file", "resolution": "keep" }
// To accept deletion:
{ "file": "path/to/file", "resolution": "delete" }
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
git-hex-branch-cleanup
This skill should be used when the user wants to clean up a feature branch's history using git-hex (squash/fixup commits, reorder/drop/split commits, or rebase a branch onto main) without using an interactive terminal. Trigger phrases include: "clean up my branch", "polish history", "squash these commits", "fixup commits", "rebase onto main", "rewrite commits".
git-hex-pr-workflow
Complete pull request workflow combining git-hex (local craft) with remote collaboration (GitHub plugin or CLI). This skill should be used when the user wants to prepare, submit, and iterate on a PR with clean commit history. Trigger phrases include: "prepare a PR", "open a pull request", "address review feedback", "update my PR", "clean up commits for PR".
familiar-help
Use familiar companion tools for creative buddy/companion interactions. Handles fortunes, code roasts, haiku, stats, mood, lore, focus timers, and personality changes. Triggers when user addresses their companion by any name — "buddy" (Anthropic's UI label), "familiar", "companion", or whatever name the user uses for their companion — or by companion-specific intent: "tell me a fortune", "roast my code", "write a haiku", "show stats", "start a focus timer", "pomodoro", "be like Marvin", "change personality", "who are you", "what can you do". Do NOT use for normal code review, debugging, general coding help, or questions directed at Claude itself rather than the companion.
obsidian-vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
handoff
Compact the current conversation into a handoff document for another agent to pick up.
edit-article
Edit and improve articles by restructuring sections, improving clarity, and tightening prose. Use when user wants to edit, revise, or improve an article draft.
Didn't find tool you were looking for?