aicommits 3.0.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -123,11 +123,12 @@ aicommits --generate <i> # or -g <i>
123
123
 
124
124
  #### Commit Message Formats
125
125
 
126
- You can choose from three different commit message formats:
126
+ You can choose from four different commit message formats:
127
127
 
128
128
  - **plain** (default): Simple, unstructured commit messages
129
129
  - **conventional**: [Conventional Commits](https://conventionalcommits.org/) format with type and scope
130
130
  - **gitmoji**: Emoji-based commit messages
131
+ - **subject+body**: Git-style subject line plus a body (description) generated from the diff
131
132
 
132
133
  Use the `--type` flag to specify the format:
133
134
 
@@ -135,6 +136,7 @@ Use the `--type` flag to specify the format:
135
136
  aicommits --type conventional # or -t conventional
136
137
  aicommits --type gitmoji # or -t gitmoji
137
138
  aicommits --type plain # or -t plain (default)
139
+ aicommits --type subject+body # or -t subject+body (subject + body)
138
140
  ```
139
141
 
140
142
  This feature is useful if your project follows a specific commit message standard or if you're using tools that rely on these commit formats.