@sugarmo/aicommits 1.17.0 → 1.18.0
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 +10 -0
- package/dist/cli.mjs +111 -110
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,6 +80,16 @@ If your environment does not provide an interactive TTY, skip prompts explicitly
|
|
|
80
80
|
aicommits --confirm # or -y / --yes
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
+
#### Print without committing
|
|
84
|
+
|
|
85
|
+
To generate a commit message and print it without creating a Git commit:
|
|
86
|
+
|
|
87
|
+
```sh
|
|
88
|
+
aicommits --print # or --no-commit
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
This uses the first generated message and exits before running `git commit`.
|
|
92
|
+
|
|
83
93
|
#### Guide output with Markdown
|
|
84
94
|
|
|
85
95
|
Commit message style is now controlled by a Markdown file instead of individual formatting flags.
|