From gitflow
Starts a new git-flow feature branch named feature/<feature-name> after verifying clean working tree, then pushes it to origin.
How this command is triggered — by the user, by Claude, or both
Slash command
/gitflow:SKILL <feature-name>haikustart-feature/This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
## Workflow Execution **Launch a general-purpose agent** that executes all phases in a single task. **Prompt template**: **Execute**: Launch a general-purpose agent using the prompt template above
Launch a general-purpose agent that executes all phases in a single task.
Prompt template:
Execute the start-feature workflow.
## Pre-operation Checks
Verify working tree is clean per `${CLAUDE_PLUGIN_ROOT}/references/invariants.md`.
## Phase 1: Start Feature
**Goal**: Create feature branch using git-flow-next CLI.
1. Run `git flow feature start $ARGUMENTS`
2. Push the branch to origin: `git push -u origin feature/$ARGUMENTS`
Execute: Launch a general-purpose agent using the prompt template above
npx claudepluginhub fradser/dotclaude --plugin gitflow/featureCreates Git Flow feature branch feature/<feature-name> from develop: validates repo and name, handles uncommitted changes, pulls latest develop, sets remote tracking, pushes to origin.
/flow-startStarts a new feature, bugfix, or hotfix git-flow branch from clean up-to-date base, pushes with tracking, links GitHub issues if referenced, and shows branch info plus next steps.
/git-checkoutCreates and checks out a new feature branch 'feat/[issue-key]' from the default branch after pulling latest changes, and updates the working branch in the state management file.
/worktree-startCreates Git worktree for parallel development from branch or new one, auto-prefixes by type (feature/fix/refactor), detects project domain (Next.js/Nuxt/Vite/Python/Go/Rust), adds Claude Code .gitignore safeguards.
/new-workspaceCreates a new git branch with a workspace folder and CLAUDE.md file, branching from main or command based on the branch purpose argument.
/feature-flowOrchestrates complete git workflow: analyzes staged changes or issue number, creates branches/issues/commits, runs lints/tests, creates merge requests.