ワンクリックで
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 職業分類に基づく
Create Claude-style local HTML artifacts under global ~/.agents/artifacts. Use for artifact requests, variations/options croquis, feature plans, thinking docs, prototypes, visualizations, dashboards, diagrams, or substantial reusable content. Pair with use-style.
Apply named visual style guides to landing pages, app shells, and UI. Use for $use-style, /useskill, list styles, or styles like ios-app, grid, vercel, black-grid, stripe, linear, raycast, gumroad, dusk, or luma.
Expert guidance for creating, building, and using Claude Code agents and the Task tool. Use when working with agents, setting up agent configurations, understanding how agents work, or using the Task tool to launch specialized agents.
Systematic implementation using APEX methodology (Analyze-Plan-Execute-eXamine) with parallel agents, self-validation, and optional adversarial review. Use when implementing features, fixing bugs, or making code changes that benefit from structured workflow.
Interact with App Store Connect via the asc CLI - apps, builds, TestFlight, beta testers, reviews, sales/analytics, metadata, IAP, signing, submissions. Use for "check my app", "App Store Connect", "TestFlight status", "app review", "my app sales", or "asc".
Set up per-worktree environments for Claude Code, Cursor, or Codex. Use for worktree-ready repos, IDE environment config, worktree-up/down scripts, or dev.sh wiring.
| name | merge |
| description | Intelligently merge branches with context-aware conflict resolution |
| allowed-tools | Bash(git :*), Bash(gh :*), Read, Edit, MultiEdit, Task |
| argument-hint | <branch-name> |
| disable-model-invocation | true |
| allow_implicit_invocation | false |
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