git
Installation
SKILL.md
Git Skill
Standard git workflow for the portfolio. Always follow the commit hygiene rules in AGENTS.md.
When to use this skill
- Creating branches
- Writing commit messages
- Preparing PRs
- Rebasing and squashing
Workflow
- Branch —
type/scopepattern:feat/,fix/,refactor/,docs/,chore/ - Commit — One commit per logical slice. Subject:
type(scope): <imperative summary> - Body — Bullet list of what changed, why, and what was verified
- Verification — Before commit, run:
npm run test -- --run,npx tsc --noEmit,npm run lint,npm run doctor - PR — Rebase on main, no merge commits. ASCII-safe body via
--body-file