moai-ref-git-workflow

Featured

Git workflow patterns, branch strategies, conventional commits, and PR templates reference for git operations. Agent-extending skill that amplifies manager-git expertise with production-grade git workflow patterns. NOT for: code implementation, testing, architecture design, documentation content.

AI & Automation 1,120 stars 207 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Git Workflow Reference ## Target Agent `manager-git` - Applies these patterns directly to git operations, branch management, and PR creation. ## Branch Strategy Patterns ### GitHub Flow (Default for Most Projects) ``` main ───────────────────────────────────────── └── feat/SPEC-XXX-description ──── PR ──→ merge ``` Rules: - `main` is always deployable - Feature branches from `main` - PR required for all merges - Delete branch after merge ### GitFlow (Complex Release Cycles) ``` main ────────────────────────────────────────── └── develop ───────────────────────────────── ├── feature/SPEC-XXX ──── PR ──→ develop └── release/v1.2.0 ────── PR ──→ main + develop ``` ### Trunk-Based (CI/CD Heavy) ``` main ────────────────────────────────────────── └── short-lived branch (< 1 day) ──→ merge ``` ## Branch Naming Convention | Pattern | Example | Use Case | |---------|---------|----------| | `feat/SPEC-{ID}-{slug}` | `feat/SPEC-AUTH-001-jwt-auth` | New feature | | `fix/SPEC-{ID}-{slug}` | `fix/SPEC-BUG-042-null-check` | Bug fix | | `refactor/{slug}` | `refactor/extract-auth-middleware` | Refactoring | | `docs/{slug}` | `docs/api-reference-update` | Documentation | | `chore/{slug}` | `chore/upgrade-dependencies` | Maintenance | ## Conventional Commits Reference | Type | When | Example | |------|------|---------| | `feat` | New feature | `feat(auth): add JWT refresh token flow` | | `fix` | Bug fix | `fix(api): handle null user in profile endpoint` | ...

Details

Author
modu-ai
Repository
modu-ai/moai-adk
Created
9 months ago
Last Updated
today
Language
Go
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category