AI SummaryEstablishes standardized Git workflow patterns including conventional commit formatting, rebase strategies, and pre-commit hooks to maintain clean repository history and improve team collaboration.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "git-workflow" skill in my project. Please run this command in my terminal: # Install skill into the correct directory mkdir -p .claude/skills/git-workflow && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/git-workflow/SKILL.md "https://raw.githubusercontent.com/cooldaemon/dotfiles/master/.claude/skills/git-workflow/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Git workflow patterns including commit messages, rebase strategy, and pre-commit hooks. Use when committing, creating PRs, or managing git history.
Examples
` feat(auth): add OAuth2 integration with Google Implemented Google OAuth2 authentication flow to allow users to sign in with their Google accounts. This includes: • OAuth2 configuration and middleware setup • User profile synchronization • Session management with JWT tokens Closes #123 ` ` fix(api): resolve race condition in payment processing The payment webhook handler was not properly locking the transaction record, causing duplicate charges when webhooks arrived simultaneously. Added database-level locking to ensure atomic transaction updates. `
Commit Message Format
` <type>(<scope>): <subject> <body> <footer> `
Types
| Type | Description | |------|-------------| | feat | New feature implementation | | fix | Bug fixes | | docs | Documentation changes only | | style | Code formatting, missing semicolons, etc. | | refactor | Code restructuring without behavior changes | | perf | Performance improvements | | test | Test additions or corrections | | chore | Build process, auxiliary tools, dependencies |
Rules
• Subject line: Max 50 characters, imperative mood, no period • Body: Wrap at 72 characters, explain WHY not WHAT • Write in English • Be specific and descriptive
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster