start-feature

Automate feature branch creation and push using the git-flow-next CLI.

577|48|Updated Aug 4, 2025
One-click install
npx skills add https://github.com/FradSer/dotclaude --skill start-feature-fradser
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: start-feature
Source: https://github.com/FradSer/dotclaude/tree/main/gitflow/skills/start-feature
Command: npx skills add https://github.com/FradSer/dotclaude --skill start-feature-fradser

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Starting feature branches manually with git-flow-next adds cognitive load and slows development. This Skill automates the creation and initial push of a feature branch, ensuring consistency with the git-flow pattern.

Core Features & Use Cases

  • Automatic feature branch creation: Starts a new feature using the git-flow-next CLI.
  • Origin synchronization: Pushes the newly created branch to the remote repository for collaboration.
  • GitFlow consistency: Adheres to feature naming conventions and workflow standards.

Quick Start

Run the feature-start flow: git flow feature start <feature-name> followed by git push -u origin feature/<feature-name>.

Frequently Asked Questions about start-feature

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate feature branch creation with git-flow-next?

To automate feature branch creation with git-flow-next, this Skill executes the 'feature start' command and automatically pushes the new branch to origin. This ensures consistent GitFlow naming conventions and reduces manual setup overhead.

Can I automatically push a new git-flow feature branch to origin?

Yes, you can automatically push a new git-flow feature branch to origin. The Skill handles local branch creation via the git-flow-next CLI and executes the push command to establish remote tracking for team collaboration.

What is the best way to maintain GitFlow consistency when starting features?

The best way to maintain GitFlow consistency when starting features is to automate the workflow using the git-flow-next CLI. This enforces standard feature branch naming conventions and lifecycle management without relying on manual git commands.

Do I need the git-flow-next CLI installed to automate feature branching?

Yes, you need the git-flow-next CLI and Git installed in your environment to automate feature branching. The Skill requires these dependencies to execute the underlying 'feature start' commands and push branches to the remote repository.

Does automated feature branching work with CI pipelines?

Automated feature branching works with CI pipelines by standardizing the branch creation process. Software projects using GitFlow-style feature lifecycles can rely on consistent branch naming and automatic origin synchronization to properly trigger downstream CI builds.