| name | git-workflows |
| description | Safe day-to-day git workflows for branching, sync, and cleanup. |
Git Workflows
Purpose
Standardize safe local git workflows for branch creation, synchronization, and cleanup.
Inputs
- branch intent (feature/fix/chore)
- base branch (usually
main)
Process
- Snapshot state with
git-status skill.
- Create or switch branch with clear naming.
- Rebase or merge from base branch intentionally.
- Commit in small units with meaningful messages.
- Push with upstream tracking.
Output Format
- actions taken
- resulting branch state
- next safe git step
Quality Checks