Babysitter finishing-a-development-branch
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work.
install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/methodologies/superpowers/skills/finishing-a-development-branch" ~/.claude/skills/a5c-ai-babysitter-finishing-a-development-branch && rm -rf "$T"
manifest:
library/methodologies/superpowers/skills/finishing-a-development-branch/SKILL.mdsource content
Finishing a Development Branch
Overview
Verify tests, present structured options, execute chosen workflow, clean up.
Core principle: Verify tests -> Present options -> Execute choice -> Clean up.
Options
- Merge back to base branch locally
- Push and create a Pull Request
- Keep the branch as-is
- Discard this work (requires typed confirmation)
Process
- Verify all tests pass (STOP if they fail)
- Determine base branch
- Present exactly 4 options
- Execute chosen option
- Clean up worktree (Options 1 and 4 only)
Agents Used
- Process agents referenced in workflow processes
Tool Use
Referenced by
executing-plans and subagent-driven-development processes.