Finishing a Development Branch Skill logo

Finishing a Development Branch Skill

Visit

Guide completion of development work with structured options for merge, PR, or cleanup after tests pass.

Share:

Finishing a Development Branch

Guide completion of development work by presenting clear options and handling chosen workflow.

Core Principle

Verify tests → Present options → Execute choice → Clean up.

The Process

Step 1: Verify Tests

Before presenting options, verify tests pass:

npm test / cargo test / pytest / go test ./...

Step 2: Present Options

Once tests pass, present structured options:

  • Merge to main - Direct merge for simple changes
  • Create PR - Pull request for team review
  • Keep branch - Continue work later
  • Clean up - Remove branch and worktree

Step 3: Execute Choice

Handle the selected workflow systematically, ensuring all necessary steps are completed.

Use when implementation is complete and all tests pass.

Comments

No comments yet. Be the first to comment!