Create a feature branch from dev
Creates a feature branch from dev with proper naming conventions and safety checks.
/plugin marketplace add horuz-ai/claude-plugins/plugin install core@horuz[task description]git/All feature branches MUST be created from dev. Never branch from staging or main.
git branch --show-currentgit status --shortIf there are uncommitted changes: Stop and tell the user to stash or commit first.
Otherwise, execute:
git checkout dev
git pull origin dev
git checkout -b {branch-name}
Branch naming rules:
$ARGUMENTS or ask the user what they're working onfeature/, bugfix/, hotfix/, or chore/feature/user-auth, bugfix/login-error, chore/update-depsAfter creating, confirm the branch name and remind to use /commit when ready.