Agent skill
merge
ブランチをメインにマージしてお掃除する
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/merge-k9i-0-ccpocket
SKILL.md
ブランチマージ & クリーンアップ
作業ブランチを main にマージし、不要になったブランチと worktree を削除する。
前提条件
- 作業ブランチで全ての変更がコミット済みであること
- 現在のブランチが main でないこと
手順
1. 事前確認
git branch --show-current
- 現在のブランチ名を記録する(=
<branch>とする) mainの場合はマージ対象がないため中断する
git status --short
- 未コミットの変更がある場合は中断し、先にコミットするよう促す
2. main に切り替え
git checkout main
3. マージ (--no-ff)
git merge --no-ff <branch>
- マージコンフリクトが発生した場合は中断してユーザーに報告する
4. 作業ブランチの削除
git branch -d <branch>
5. worktree のクリーンアップ
git worktree list
<branch>に紐づく worktree がある場合のみ以下を実行:
git worktree remove <worktree-path>
- worktree ディレクトリが残っている場合は手動削除が必要な旨を通知する
6. 完了報告
最終状態を表示する:
git log --oneline -5
git branch
git worktree list
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?