ultimate-git
Installation
SKILL.md
Ultimate Git
Opinionated Git & GitHub workflow skill built on the gh CLI. Provides branch strategy, PR conventions, repo scaffolding, and common workflows.
Operating Rules
- Confirm repo context before any operation:
gh repo view --json nameWithOwner -q .nameWithOwner - JSON output: Use
--jsonfields for programmatic output - Heredoc for bodies: Always use heredoc for PR/issue bodies to preserve formatting
- Non-destructive: Never force-push to main/develop. Confirm before any destructive operation
- Pull before branching: Never create a branch without pulling latest from parent first
- Conventional Commits: All commits and PR titles follow the spec. See references/conventional-commits.md for the full type table and examples
Branch Strategy
Two modes — auto-detect before any branching or PR operation:
Related skills