From git-flow
Starts a new feature, bugfix, or hotfix branch following git-flow conventions. Creates the branch from the appropriate base, sets up remote tracking, and optionally links a GitHub issue.
How this command is triggered — by the user, by Claude, or both
Slash command
/git-flow:flow-startThe summary Claude sees in its command listing — used to decide when to auto-load this command
Start a new feature, bugfix, or hotfix branch following git-flow conventions. ## Steps 1. Determine the flow type from the argument: - `feature/<name>` for new features (branches from `develop` or `main`). - `bugfix/<name>` for non-critical fixes (branches from `develop`). - `hotfix/<name>` for critical production fixes (branches from `main`). 2. Verify the working tree is clean: `git status --porcelain`. 3. Fetch latest from remote: `git fetch origin`. 4. Create the branch from the appropriate base: - `git checkout -b <type>/<name> origin/<base>`. 5. Set up branch tracking: `...
Start a new feature, bugfix, or hotfix branch following git-flow conventions.
feature/<name> for new features (branches from develop or main).bugfix/<name> for non-critical fixes (branches from develop).hotfix/<name> for critical production fixes (branches from main).git status --porcelain.git fetch origin.git checkout -b <type>/<name> origin/<base>.git push -u origin <type>/<name>.<type>/<issue-number>-<description>.Flow started:
Type: <feature|bugfix|hotfix>
Branch: <branch-name>
Base: <base-branch>
Tracking: origin/<branch-name>
Next steps:
1. Make your changes
2. Commit with conventional messages
3. Run: /git-flow:flow-release to merge
npx claudepluginhub twzrd-sol/awesome-claude-code-toolkit --plugin git-flow/flow-startStarts a new feature, bugfix, or hotfix branch following git-flow conventions. Creates the branch from the appropriate base, sets up remote tracking, and optionally links a GitHub issue.
/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.
/SKILLCreates a new feature branch using git-flow and pushes it to the remote repository. Requires a clean working tree before branching.
/feature-flowOrchestrates complete git workflow: analyzes staged changes or issue number, creates branches/issues/commits, runs lints/tests, creates merge requests.
/branchExecutes git branch operations including create from issue ID, merge with validation, delete, switch, and status, enforcing rules from project git-workflow.md.