Start a new feature branch from updated default branch
Creates and switches to a new feature branch after syncing with the default branch.
/plugin marketplace add poindexter12/claude-flow/plugin install claude-flow@claude-flowCreate and switch to a new feature branch after syncing with the default branch.
Determine the branch name:
branch-naming skill to generate a name, then confirm with the userGet the default branch name:
git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'
Checkout the default branch, pull latest, then create the new feature branch:
git checkout <DEFAULT_BRANCH> && git pull --rebase --prune && git checkout -b <BRANCH_NAME>
Report the result to the user.
/startInitiates the task orchestration workflow using the three-agent system (task-orchestrator, task-decomposer, and dependency-analyzer) to create a comprehensive execution plan.