contribute-now 0.6.2-dev.38e14f5 → 0.6.2-dev.967437a
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 +8 -3
- package/dist/index.js +737 -615
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,9 +92,12 @@ 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.
|
|
98
101
|
|
|
99
102
|
---
|
|
100
103
|
|
|
@@ -146,6 +149,8 @@ After the AI generates a message, you can **accept**, **edit**, **regenerate**,
|
|
|
146
149
|
|
|
147
150
|
**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
151
|
|
|
152
|
+
If `aiEnabled` is set to `false` in `.contributerc.json`, `contrib commit` stays manual and `--group` is unavailable.
|
|
153
|
+
|
|
149
154
|
---
|
|
150
155
|
|
|
151
156
|
### `contrib update`
|