contribute-now 0.6.2-dev.12fb962 → 0.6.2-dev.1320af4
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 -3
- package/dist/index.js +1764 -914
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,9 +92,14 @@ contrib setup
|
|
|
92
92
|
Steps:
|
|
93
93
|
1. Choose **workflow mode** — Clean Flow, GitHub Flow, or Git Flow
|
|
94
94
|
2. Choose **commit convention** — Clean Commit, Conventional Commits, or None
|
|
95
|
-
3.
|
|
96
|
-
4.
|
|
97
|
-
5.
|
|
95
|
+
3. Choose whether **AI features** should be enabled for this repo
|
|
96
|
+
4. Detect remotes and auto-detect your **role** (maintainer or contributor)
|
|
97
|
+
5. Confirm branch and remote names
|
|
98
|
+
6. Write `.contributerc.json`
|
|
99
|
+
|
|
100
|
+
If you want to disable AI completely for a repo, run `contrib setup` and turn AI off, or set `"aiEnabled": false` in `.contributerc.json`. Per-command `--no-ai` flags still work as one-off overrides when AI is enabled globally.
|
|
101
|
+
|
|
102
|
+
If you want a cleaner output once you're familiar with the CLI, set `"showTips": false` in `.contributerc.json` to hide the beginner quick guides and loading tips.
|
|
98
103
|
|
|
99
104
|
---
|
|
100
105
|
|
|
@@ -146,6 +151,8 @@ After the AI generates a message, you can **accept**, **edit**, **regenerate**,
|
|
|
146
151
|
|
|
147
152
|
**Group commit mode** (`--group`): AI analyzes all staged and unstaged changes, groups related files into logical atomic commits, and generates a commit message for each group. Great for splitting a large set of changes into clean, reviewable commits.
|
|
148
153
|
|
|
154
|
+
If `aiEnabled` is set to `false` in `.contributerc.json`, `contrib commit` stays manual and `--group` is unavailable.
|
|
155
|
+
|
|
149
156
|
---
|
|
150
157
|
|
|
151
158
|
### `contrib update`
|