Skills · Coding

Finishing A Development Branch

Unverified30/40

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work

Originally by obra · MIT

Claude CodePartialHas SKILL.md but declares no allowed-tools — Claude Code will ask for permission each time
Cursor·UnknownWe have not crawled the repo tree, so we will not guess
Codex·UnknownWe have not crawled the repo tree, so we will not guess
Gemini CLI·UnknownThe spec defines no detection rule for Gemini
Copilot·UnknownWe have not crawled the repo tree, so we will not guess
npx agentalley add finishing-a-development-branch

This command does not work yet — the CLI is still being built. Until then, use Raw in the reader below to take the file.

Who is stuck, and on what

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work

The whole source

No sign-in, no blur, nothing truncated
finishing-a-development-branch/SKILL.md226 lines7.6 KBRawView on GitHub
Frontmatter — 2 properties
namefinishing-a-development-branch
descriptionUse when implementation is complete, all tests pass, and you need to decide how to integrate the work
1---
2name: finishing-a-development-branch
3description: Use when implementation is complete, all tests pass, and you need to decide how to integrate the work
4---A5No allowed-tools declared — no way to tell what this skill may touch
5 
6# Finishing a Development Branch
7 
8## Overview
9 
10**Core principle:** Verify tests → Detect environment → Present options → Execute choice → Clean up.
11 
12**Announce at start:** "I'm using the finishing-a-development-branch skill to complete this work."
13 
14## Step 1: Verify Tests
15 
16Run the project's full test suite (`npm test` / `cargo test` / `pytest` / `go test ./...`).
17 
18**If tests fail**, report the failures and stop — the menu comes after a green suite:
19 
20```
21Tests failing (<N> failures). Must fix before completing:
22 
23[Show failures]
24```
25 
26**If tests pass:** continue to Step 2.
27 
28## Step 2: Detect Environment
29 
30```bash
31GIT_DIR=$(cd "$(git rev-parse --git-dir)" 2>/dev/null && pwd -P)
32GIT_COMMON=$(cd "$(git rev-parse --git-common-dir)" 2>/dev/null && pwd -P)
33# Capture now, while still inside the workspace — Step 5 changes directory
34# before cleanup (Step 6) needs this value
35WORKTREE_PATH=$(git rev-parse --show-toplevel)
36```
37 
38This determines which menu to show and how cleanup works:
39 
40| State | Menu | Cleanup |
41|-------|------|---------|
42| `GIT_DIR == GIT_COMMON` (normal repo) | Standard 3 options | No worktree to clean up |
43| `GIT_DIR != GIT_COMMON`, named branch | Standard 3 options | Provenance-based (see Step 6) |
44| `GIT_DIR != GIT_COMMON`, detached HEAD | Reduced 2 options (no merge) | Externally managed — leave in place |
45 
46## Step 3: Determine Base Branch
47 
48The base branch is whatever this work forked from — usually named in the
49plan, the conversation, or the branch's upstream. If it is not already
50known, ask: "This branch split from <your best guess> - is that correct?"
51Confirm before merging: merging into the wrong base is expensive to undo.
52 
53## Step 4: Present Options
54 
55**Normal repo and named-branch worktree — present exactly these 3 options:**
56 
57```
58Implementation complete. What would you like to do?
59 
601. Merge back to <base-branch> locally
612. Push and create a Pull Request
623. Keep the branch as-is (I'll handle it later)
63 
64Which option?
65```
66 
67**Detached HEAD — present exactly these 2 options:**
68 
69```
70Implementation complete. You're on a detached HEAD (externally managed workspace).
71 
721. Push as new branch and create a Pull Request
732. Keep as-is (I'll handle it later)
74 
75Which option?
76```
77 
78Present the menu exactly as written — concise, with every option coming
79from the list above. Discarding the work happens only in response to your
80human partner explicitly asking for it (see "If your human partner asks to
81discard the work" below). Wait for their answer; the integration decision
82is theirs.
83 
84## Step 5: Execute Choice
85 
86### Option 1: Merge Locally
87 
88```bash
89# Get main repo root for CWD safety
90MAIN_ROOT=$(git -C "$(git rev-parse --git-common-dir)/.." rev-parse --show-toplevel)
91cd "$MAIN_ROOT"
92 
93# Merge first — verify success before removing anything
94git checkout <base-branch>
95git pull
96git merge <feature-branch>
97 
98# Verify tests on merged result
99<test command>
100```
101 
102If tests fail on the merged result: stop, leave the worktree and branch in
103place, and investigate — nothing has been pushed, so the merge is local
104and recoverable.
105 
106Once the merged result is green: clean up the worktree (Step 6), then
107delete the branch:
108 
109```bash
110git branch -d <feature-branch>
111```
112 
113### Option 2: Push and Create PR
114 
115```bash
116git push -u origin <feature-branch>
117# From a detached HEAD, name the new branch on the remote:
118# git push origin HEAD:refs/heads/<new-branch>
119```
120 
121Then create the pull/merge request against <base-branch> with the forge's
122tooling — its CLI if one is available, or the creation URL most forges
123print when you push — following the repo's PR template and conventions if
124present, and report the URL to your human partner.
125 
126Keep the worktree — your human partner iterates on PR feedback there.
127 
128### Option 3: Keep As-Is
129 
130Report: "Keeping branch <name>. Worktree preserved at <path>."
131 
132### If your human partner asks to discard the work
133 
134This path exists only as a response to an explicit request to throw the
135work away. Confirm first:
136 
137```
138This will permanently delete:
139- Branch <name>
140- All commits: <commit-list>
141- Worktree at <path>
142 
143Type 'discard' to confirm.
144```
145 
146Wait for that exact confirmation. When it arrives:
147 
148```bash
149MAIN_ROOT=$(git -C "$(git rev-parse --git-common-dir)/.." rev-parse --show-toplevel)
150cd "$MAIN_ROOT"
151```
152 
153Then clean up the worktree (Step 6) and force-delete the branch:
154 
155```bash
156git branch -D <feature-branch>
157```
158 
159## Step 6: Cleanup Workspace
160 
161**Runs for Option 1 and confirmed discards.** Options 2 and 3 always
162preserve the worktree. Both callers have already changed directory to the
163main repo root — worktree removal must run from outside the worktree —
164and use the `GIT_DIR`/`GIT_COMMON`/`WORKTREE_PATH` values captured in
165Step 2, from before that directory change.
166 
167**If `GIT_DIR == GIT_COMMON`:** Normal repo, no worktree to clean up. Done.
168 
169**If `WORKTREE_PATH` is under `.worktrees/` or `worktrees/`:** Superpowers
170created this worktree — we own cleanup:
171 
172```bash
173git worktree remove "$WORKTREE_PATH"
174git worktree prune # Self-healing: clean up any stale registrations
175```
176 
177**If removal is refused** (`contains modified or untracked files`): the
178worktree holds files that exist nowhere else — uncommitted plans, notes,
179or scratch work. Never `--force` on your own initiative. Show your human
180partner what is at stake and ask:
181 
182```bash
183git -C "$WORKTREE_PATH" status --porcelain -uall
184```
185 
186```
187Worktree removal refused — these files were never committed:
188 
189<file list>
190 
1911. Commit them to <branch> before cleanup
1922. Move them into <main repo root>
1933. Delete them (unrecoverable)
194 
195Which?
196```
197 
198Carry out the choice, then remove the worktree.
199 
200**Otherwise:** The host environment owns this workspace — leave it in
201place. If your platform provides a workspace-exit tool, use it.
202 
203## Quick Reference
204 
205| Option | Merge | Push | Keep Worktree | Cleanup Branch |
206|--------|-------|------|---------------|----------------|
207| 1. Merge locally | yes | - | - | yes |
208| 2. Create PR | - | yes | yes | - |
209| 3. Keep as-is | - | - | yes | - |
210| Discard (explicit request only) | - | - | - | yes (force) |
211 
212## Common Rationalizations
213 
214| Excuse | Reality |
215|--------|---------|
216| "Tests passed earlier this session" | Run the suite on the tree you are about to integrate. A green run only proves the tree it ran on. |
217| "They obviously want it merged" | Integration is your human partner's decision. Present the menu and wait. |
218| "They seem done with this feature — I'll offer to discard it" | The menu is complete as written. Discard happens only when your human partner asks for it in so many words. |
219| "'Yeah, get rid of it' counts as confirmation" | Only the typed word `discard` authorizes deletion. |
220| "The PR is up, so the worktree is clutter now" | PR feedback gets fixed in that worktree. It stays until the work lands. |
221| "This other worktree looks stale — I'll clean it too" | Clean up only worktrees under `.worktrees/` or `worktrees/`. Everything else belongs to the host. |
222| "Removal refused — `--force` is just finishing the cleanup" | The refusal means files exist only in that worktree. `--force` destroys them permanently. Show your human partner and ask. |
223| "The merged-result failure is probably flaky" | A failing merged result stops everything. Branch and worktree stay put while you investigate. |
224| "The base branch is obviously main" | Confirm the fork point or ask. Merging into the wrong base is expensive to undo. |
225| "The push was rejected — force-push will fix it" | A rejected push means the remote moved. Investigate; force-push only on your human partner's explicit request. |
226 

Reviews

Installed this one?Write the first review and take the Trailblazer badge.

Reviews only open after a real install, so this is empty — and we leave it empty rather than invent one.

Alternatives

Also in Coding