ce-clean-gone-branches
everyinc/compound-engineering-plugin
Delete local branches whose remote tracking branch is gone, including associated worktrees.
What is ce-clean-gone-branches?
Cleans up stale local Git branches that no longer exist on the remote after their tracking branch has been deleted. Use this when you want to remove branches that are no longer needed and keep your local repository tidy.
- Fetches latest remote state and identifies local branches marked as gone
- Displays list of stale branches for confirmation before deletion
- Removes associated worktrees for branches that have them
- Deletes confirmed branches using git branch -D
- Reports results of cleanup operation
How to install ce-clean-gone-branches
npx skills add https://github.com/everyinc/compound-engineering-plugin --skill ce-clean-gone-branchesHow to use ce-clean-gone-branches
- 1.Run the discovery script: bash scripts/clean-gone
- 2.Review the list of branches marked as gone
- 3.Confirm deletion when prompted (yes/no)
- 4.Script removes any associated worktrees first, then deletes each branch
- 5.Review the cleanup report showing deleted branches and worktrees
Use cases
- Remove local branches after their remote counterparts have been deleted during code review cleanup
- Prune stale feature branches after they've been merged and deleted on the remote
- Clean up abandoned experiment branches that no longer exist upstream
- Maintain a lean local branch list by removing branches orphaned by remote deletions
- Git users managing multiple branches
- Development teams with frequent branch deletions
- Developers using git worktrees for parallel work
ce-clean-gone-branches FAQ
The script stops without deleting anything. Your branches remain unchanged.
No. The script only targets branches whose remote tracking branch is gone. Main branches typically still exist on the remote.
The script automatically removes the worktree first (with --force if needed), then deletes the branch.
It runs git fetch --prune to sync remote state, then parses git branch -vv output for branches marked with ': gone]'.
Full instructions (SKILL.md)
Source of truth, from everyinc/compound-engineering-plugin.
name: ce-clean-gone-branches description: Clean up local branches whose remote tracking branch is gone. Use when the user says "clean up branches", "delete gone branches", "prune local branches", "clean gone", or wants to remove stale local branches that no longer exist on the remote. Also handles removing associated worktrees for branches that have them.
Clean Gone Branches
Delete local branches whose remote tracking branch has been deleted, including any associated worktrees.
Workflow
Step 1: Discover gone branches
Run the discovery script to fetch the latest remote state and identify gone branches:
bash scripts/clean-gone
The script runs git fetch --prune first, then parses git branch -vv for branches marked : gone].
If the script outputs __NONE__, report that no stale branches were found and stop.
Step 2: Present branches and ask for confirmation
Show the user the list of branches that will be deleted. Format as a simple list:
These local branches have been deleted from the remote:
- feature/old-thing
- bugfix/resolved-issue
- experiment/abandoned
Delete all of them? (y/n)
Wait for the user's answer using the platform's blocking question tool: AskUserQuestion in Claude Code (call ToolSearch with select:AskUserQuestion first if its schema isn't loaded), request_user_input in Codex, ask_user in Gemini, ask_user in Pi (requires the pi-ask-user extension). Fall back to presenting the list in chat only when no blocking tool exists in the harness or the call errors (e.g., Codex edit modes) — not because a schema load is required. Never silently skip the question.
This is a yes-or-no decision on the entire list -- do not offer multi-selection or per-branch choices.
Step 3: Delete confirmed branches
If the user confirms, delete each branch. For each branch:
- Check if it has an associated worktree (
git worktree list | grep "\\[$branch\\]") - If a worktree exists and is not the main repo root, remove it first:
git worktree remove --force "$worktree_path" - Delete the branch:
git branch -D "$branch"
Report results as you go:
Removed worktree: .worktrees/feature/old-thing
Deleted branch: feature/old-thing
Deleted branch: bugfix/resolved-issue
Deleted branch: experiment/abandoned
Cleaned up 3 branches.
If the user declines, acknowledge and stop without deleting anything.
Related skills
More from everyinc/compound-engineering-plugin and the wider catalog.

ce-code-review
Structured code review across bugs, regressions, tests, and standards—runs before PRs or on demand.

ce-commit
Create well-crafted git commits with clear, value-communicating messages following repo conventions.

ce-commit-push-pr
Commit, push, and open a PR with intelligent branch handling and description composition.

ce-compound
Document solved problems and project vocabulary in parallel to compound team knowledge.

ce-compound-refresh
Audit and refresh docs/solutions learnings against current codebase to eliminate stale, overlapping, or drifted documentation.

ce-debug
Systematic diagnosis and fix for bugs, errors, and failing tests with causal-chain verification.