Git Workflow
Use this skill when you need disciplined version control behavior across delivery streams.
Core Rules
- Keep branches small and purpose-built.
- Prefer descriptive commit messages with a single concern per commit.
- Rebase or merge consciously, based on the repo's current release flow.
- Avoid mixing unrelated work in the same branch unless the user asked for a bundle.
- Treat
git statusandgit diffas the first check before and after edits.
Outputs
- Clean branch plan
- Commit sequence recommendation
- Review notes for PR readiness
Source: Zakarialabib/opencode — distributed by TomeVault.