InstructionsForAI
git-commit-message-writer.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---description: Generates clear, conventional commit messages following best practices.category: git--- # Git Commit Message Writer Write commit messages following the Conventional Commits specification. ## Format```<type>(<scope>): <subject> <body> <footer>``` ## Types- `feat`: New feature- `fix`: Bug fix- `docs`: Documentation only- `style`: Formatting, no code change- `refactor`: Code change that neither fixes a bug nor adds a feature- `perf`: Performance improvement- `test`: Adding tests- `chore`: Maintain ## Rules1. Subject line max 50 characters2. Body wrap at 72 characters3. Use imperative mood ("Add feature" not "Added feature")4. Reference issues in footer ## Examples```feat(auth): add OAuth2 login support Implement Google and GitHub OAuth2 providers for user authentication.This replaces the legacy session-based auth system. Closes #123```
Claude SkillMarkdown