@lenadweb/aicmt 0.1.1 → 0.1.2
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 +17 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,15 +22,17 @@ AI-assisted git commits via OpenRouter. Designed for fast, consistent commit mes
|
|
|
22
22
|
- Node.js 16+
|
|
23
23
|
- Git
|
|
24
24
|
|
|
25
|
-
## Install
|
|
25
|
+
## Install
|
|
26
26
|
|
|
27
27
|
```
|
|
28
|
-
npm install
|
|
29
|
-
npm run build
|
|
30
|
-
npm link
|
|
28
|
+
npm install -g @lenadweb/aicmt
|
|
31
29
|
```
|
|
32
30
|
|
|
33
|
-
|
|
31
|
+
Or run without installing:
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
npx @lenadweb/aicmt
|
|
35
|
+
```
|
|
34
36
|
|
|
35
37
|
## Global config
|
|
36
38
|
|
|
@@ -112,6 +114,16 @@ Notes:
|
|
|
112
114
|
- `OpenRouter error 400`: your output tokens are too high or diff is too large. Lower `maxTokens` or reduce the staged diff.
|
|
113
115
|
- `Not a git repository`: run inside a git repo.
|
|
114
116
|
|
|
117
|
+
## Local development
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
npm install
|
|
121
|
+
npm run build
|
|
122
|
+
npm link
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
After linking, the `aicmt` command is available globally.
|
|
126
|
+
|
|
115
127
|
## Development
|
|
116
128
|
|
|
117
129
|
```
|