Back to list
axiomantic

finishing-a-development-branch

by axiomantic

Multi-platform AI assistant skills and workflows. Serious engineering. Also fun.

2🍴 0📅 Jan 24, 2026

SKILL.md


name: finishing-a-development-branch description: "Use when implementation is complete, all tests pass, and you need to decide how to integrate the work"

Finishing a Development Branch

Announce: "Using finishing-a-development-branch skill to complete this work."

Invariant Principles

  1. Tests Gate Everything - Never present options until tests pass. Never merge without verifying tests on merged result.
  2. Structured Choice Over Open Questions - Present exactly 4 options, never "what should I do?"
  3. Destruction Requires Proof - Option 4 (Discard) demands typed "discard" confirmation. No shortcuts. No excuses.
  4. Worktree Lifecycle Matches Work State - Cleanup only for Options 1 (merged) and 4 (discarded). Keep for Options 2 (PR pending) and 3 (user will handle).

Inputs

InputRequiredDescription
Passing test suiteYesTests must pass before this skill can proceed
Feature branchYesCurrent branch with completed implementation
Base branchNoBranch to merge into (auto-detected if unset)
post_impl settingNoAutonomous mode directive (auto_pr, offer_options, stop)

Outputs

OutputTypeDescription
Integration resultActionMerge, PR, preserved branch, or discarded branch
PR URLInlineGitHub PR URL (Option 2 only)
Worktree stateStateRemoved (Options 1,4) or preserved (Options 2,3)

Autonomous Mode

Check your context for autonomous mode indicators:

  • "Mode: AUTONOMOUS" or "autonomous mode"
  • post_impl preference specified (e.g., "auto_pr", "offer_options", "stop")
post_impl valueBehavior
auto_prSkip Step 3 (present options), go directly to Option 2 (Push and Create PR)
offer_optionsPresent options normally (this is the interactive fallback)
stopSkip Step 3, just report completion without action
(unset in autonomous)Default to Option 2 - safest autonomous choice. Document: "Autonomous mode: defaulting to PR creation"

The Process

Step 1: Verify Tests

# Run project's test suite
npm test / cargo test / pytest / go test ./...

If tests fail:

Tests failing (<N> failures). Must fix before completing:

[Show failures]

Cannot proceed with merge/PR until tests pass.

STOP. Do not proceed to Step 2.

If tests pass: Continue to Step 2.

Step 2: Determine Base Branch

# Try common base branches
git merge-base HEAD main 2>/dev/null || git merge-base HEAD master 2>/dev/null

Or ask: "This branch split from main - is that correct?"

Step 3: Present Options

Present exactly these 4 options:

Implementation complete. What would you like to do?

1. Merge back to <base-branch> locally
2. Push and create a Pull Request
3. Keep the branch as-is (I'll handle it later)
4. Discard this work

Which option?

Don't add explanation - keep options concise.

Step 4: Execute Choice

Option 1: Merge Locally

# Switch to base branch
git checkout <base-branch>

# Pull latest
git pull

# Merge feature branch
git merge <feature-branch>

# Verify tests on merged result
<test command>

# If tests pass
git branch -d <feature-branch>

Then: Cleanup worktree (Step 5)

Option 2: Push and Create PR

# Push branch
git push -u origin <feature-branch>

# Create PR
gh pr create --title "<title>" --body "$(cat <<'EOF'
## Summary
<2-3 bullets of what changed>

## Test Plan
- [ ] <verification steps>
EOF
)"

Then: Cleanup worktree (Step 5)

Option 3: Keep As-Is

Report: "Keeping branch . Worktree preserved at ."

Don't cleanup worktree.

Option 4: Discard

Type 'discard' to confirm.


Wait for exact confirmation. Do NOT proceed on partial match.
</CRITICAL>

If confirmed:
```bash
git checkout <base-branch>
git branch -D <feature-branch>

Then: Cleanup worktree (Step 5)

Step 5: Cleanup Worktree

For Options 1, 2, 4:

Check if in worktree:

git worktree list | grep $(git branch --show-current)

If yes:

git worktree remove <worktree-path>

For Option 3: Keep worktree intact.


Quick Reference

OptionMergePushKeep WorktreeCleanup Branch
1. Merge locallyYes--Yes
2. Create PR-YesYes-
3. Keep as-is--Yes-
4. Discard---Yes (force)

Anti-Patterns


Self-Check

IF ANY unchecked: STOP and fix.


Integration

Called by:

  • executing-plans (Step 5) - After all batches complete
  • executing-plans --mode subagent (Step 7) - After all tasks complete in subagent mode

Pairs with:

  • using-git-worktrees - Cleans up worktree created by that skill

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon