askill
branching-strategy-and-conventions

branching-strategy-and-conventionsSafety 90Repository

Use when creating any repository, defining Git workflows, or enforcing commit conventions. Establishes branching policy, commit message standards (Conventional Commits), and merge rules aligned to SemVer.

0 stars
1.2k downloads
Updated 1/18/2026

Package Files

Loading files...
SKILL.md

Branching Strategy and Conventions

Overview

P0 Foundational - Applies by default. Establishes branching model, commit conventions, and merge strategy.

REQUIRED: superpowers:verification-before-completion

When to Use

  • Any repository (default)
  • New repository creation
  • Existing repo without documented branching policy
  • User requests Git branching or commit conventions
  • Release management or versioning strategy needed

Core Workflow

  1. Announce skill (default for all repos)
  2. Define branching strategy (Trunk-Based, GitHub Flow, or Git Flow)
  3. Set default branch as main
  4. Define branch naming: feature/*, fix/*, docs/*, hotfix/*, release/*
  5. Configure Conventional Commits (Commit Conventions)
  6. Set up commitlint + pre-commit hooks
  7. Define merge strategy: disable merge commits, prefer --ff-only or squash
  8. Document squash merge SemVer preservation (Squash Merge Guide)
  9. Configure branch protection rules
  10. Document in CONTRIBUTING.md
  11. Brownfield: baseline existing history, enforce on new commits

Quick Reference

ElementStandardEnforcement
Default BranchmainRepository
Branch Namingfeature/*, fix/*, docs/*CI validation
Commit FormatConventional Commitscommitlint
Commit Typesfeat, fix, docs, chore, refactor, test, ciPre-commit + CI
Merge StrategySquash (multi-commit) or FF-only (single)Branch rules
Breaking Changefeat!: or BREAKING CHANGE footerSemVer MAJOR

See Branching Models for strategy comparison.

Red Flags - STOP

  • "Can define strategy later"
  • "Just use main for now"
  • "Team knows commits"
  • "History is messy anyway"
  • "Commit format not important"
  • "Can parse freeform messages"
  • "Too restrictive for developers"

All mean: Apply skill or document explicit opt-out in exclusions.md.

Rationalizations

ExcuseReality
"Can define strategy later"Later never comes. Strategy takes 15 minutes, prevents project-long confusion.
"Just use main branch for now"No strategy = accidental commits to main, no review process, deployment chaos.
"Team knows how to write commits"Inconsistent messages break automation, make history unreadable, prevent SemVer.
"History is already messy"Enforce on new commits. Baseline existing history, don't rewrite it.
"Commit format not critical"Conventional Commits enable changelogs, SemVer, release notes. Critical for automation.

Evidence Checklist

  • Branching strategy defined (Trunk-Based, GitHub Flow, or Git Flow)
  • Default branch is main
  • Branch naming conventions documented
  • Conventional Commits configured (commitlint)
  • Pre-commit hooks configured
  • Merge strategy defined (squash or FF-only)
  • CONTRIBUTING.md updated

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

85/100Analyzed 2/19/2026

Well-structured skill covering Git branching strategy and commit conventions. Provides clear when-to-use guidance, step-by-step workflow, quick reference table, red flags, and evidence checklist. Includes tags for discoverability and references external docs. Slightly incomplete due to referenced files not being provided, but highly actionable and reusable across projects.

90
88
88
82
85

Metadata

Licenseunknown
Version-
Updated1/18/2026
Publishermcj-coder

Tags

ci-cdgithubgithub-actionstesting