بنقرة واحدة
git-merge
Intelligently merge branches with context-aware conflict resolution
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Intelligently merge branches with context-aware conflict resolution
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Code review & explainer master.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
Quick commit and push with minimal, clean messages
Create and push PR with auto-generated title and description
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
| name | git-merge |
| description | Intelligently merge branches with context-aware conflict resolution |
| argument-hint | <branch-name> |
| user-invokable | true |
Merge branches intelligently by understanding feature context and resolving conflicts efficiently.
git branch --show-currentgit status --shortgit log --oneline -5CONTEXT GATHERING:
git branch --show-current to identify current branchgit status to ensure clean working treeFEATURE ANALYSIS:
gh pr list --head <branch-name>gh pr view <number> --json title,body,filesMERGE ATTEMPT:
git fetch origin <branch-name>git merge origin/<branch-name> --no-commitgit status --porcelainCONFLICT DETECTION:
git commit with descriptive messagegit diff --name-only --diff-filter=USMART RESOLUTION: For each conflicted file:
VERIFICATION:
git diff --cached to review changesgrep -r "<<<<<<< HEAD"git add -A and commitgit merge --abort and report blockers