contribute-now 0.6.2-dev.967437a → 0.6.2-dev.9785651
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 +3 -8
- package/dist/index.js +579 -547
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,12 +92,9 @@ 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.
|
|
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.
|
|
95
|
+
3. Detect remotes and auto-detect your **role** (maintainer or contributor)
|
|
96
|
+
4. Confirm branch and remote names
|
|
97
|
+
5. Write `.contributerc.json`
|
|
101
98
|
|
|
102
99
|
---
|
|
103
100
|
|
|
@@ -149,8 +146,6 @@ After the AI generates a message, you can **accept**, **edit**, **regenerate**,
|
|
|
149
146
|
|
|
150
147
|
**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.
|
|
151
148
|
|
|
152
|
-
If `aiEnabled` is set to `false` in `.contributerc.json`, `contrib commit` stays manual and `--group` is unavailable.
|
|
153
|
-
|
|
154
149
|
---
|
|
155
150
|
|
|
156
151
|
### `contrib update`
|