← ClaudeAtlas

git-feature-branchlisted

Use when starting a new unit of work that should not land on the default branch: create a focused feature branch off the default branch for each unit of work.
sarmakska/slipstream · ★ 1 · Code & Development · score 73
Install: claude install-skill sarmakska/slipstream
## Overview Create a focused feature branch off the default branch for each unit of work. ## Steps 1. Create the branch with `git switch -c {{branch}}`. 2. Keep the branch scoped to a single change so review is easy. 3. Rebase on the default branch before opening a pull request. ## Verify Confirm `git rev-parse --abbrev-ref HEAD` reports the feature branch name.