709 B
709 B
name: git-checkout
description: Create feature branch for implementation
argument-hint: [issue-key] [state-management-file-path]
model: claude-haiku-4-5
Git Checkout Command
Purpose
Check out a new git branch to be ready for implementation start. These instructions are read and followed as part of a larger workflow. You MUST follow all workflow steps below, not skipping any step and doing all steps in order.
Workflow Steps
-
Read the Settings section in the state management file ($2) to get the default branch name
-
Run
git checkout [default branch name] -
Ensure that you have the latest changes, using
git pull -
Check out a new branch, using
git checkout -b feat/$1