git-workflow

Installation
SKILL.md

Git Workflow Patterns

Overview

Ensures consistent Git practices across all agent workflows, favoring isolated work environments (worktrees) and clean lifecycle closure.

Branch Setup

Option A: Standard Branching

Use for quick, single-task fixes where isolated environments are not required.

git checkout main && git pull origin main
git checkout -b feature/{feature-name}
Installs
2
GitHub Stars
43
First Seen
Feb 12, 2026
git-workflow — salavender/antigravity-compound-engineering-plugin