moai-ref-git-workflow
SolidGit 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 5 stars
4 forks Updated 2 weeks ago Apache-2.0
Install
Quality Score: 83/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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-cowork
- Created
- 2 months ago
- Last Updated
- 2 weeks ago
- Language
- HTML
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
git-workflow
Git workflow patterns including branching strategies, commit conventions, merge vs rebase, conflict resolution, and collaborative development best practices for teams of all sizes.
0 Updated 1 weeks ago
bertbertov AI & Automation Listed
git-workflow
Git workflow patterns including branching strategies, commit conventions, merge vs rebase, conflict resolution, and collaborative development best practices for teams of all sizes.
0 Updated 2 days ago
lhbsaa