git-workflow
Installation
SKILL.md
Git Workflow
Purpose
Handle git operations with best practices for commit messages, pull/merge requests, and branch management. Ensures clean, professional git history without author attribution in descriptions.
Critical Rule: No Author Attribution
NEVER include author names in commit message bodies, PR descriptions, or MR descriptions.
- Forbidden patterns: "Co-Authored-By:", "Authored by:", "Written by:", "Created by:"
- Rationale: Git already tracks authors via metadata. Adding names to descriptions creates noise and maintenance burden.
- Correct approach: Let git's authorship metadata handle attribution. Focus descriptions on WHAT and WHY, not WHO.
Examples
❌ WRONG - Author in description:
feat: add new feature