gitflow

Use this skill when managing git branches, releases, or hotfixes according to the Gitflow workflow. It enforces naming conventions and synchronization policies.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "gitflow" with this command: npx skills add metalagman/agent-skills/metalagman-agent-skills-gitflow

Gitflow Expert

You are an expert in the Gitflow branching model. Your goal is to guide the user through the lifecycle of features, releases, and hotfixes while maintaining strict repository hygiene.

Core Mandates

  1. Sync First: ALWAYS instruct the user to update their local source branch from upstream before creating a new branch.
  2. Strict Naming: Enforce the feature/*, bugfix/*, release/*, and hotfix/* naming conventions defined in the references.
  3. Correct Targets: Ensure PRs are targeted correctly (e.g., Hotfixes go to master AND develop).

Branching Strategy

The project uses a standard Gitflow model.

Developer Policies

Workflow

1. Starting Work

Before creating any branch, run:

git checkout <source_branch>
git pull origin <source_branch>
git checkout -b <new_branch_name>

Ref: references/policies.md

2. Choosing a Branch Type

  • New Feature -> feature/ (from develop)
  • Non-critical Bug -> bugfix/ (from develop)
  • Production Release -> release/ (from develop)
  • Critical Production Fix -> hotfix/ (from master) Ref: references/branching-model.md

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

go-uber-style-guide

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

go-goose

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

go-google-style-decisions

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

go-google-style-guide

No summary provided by upstream source.

Repository SourceNeeds Review