gopeak 2.3.4 → 2.3.5
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 -1
- package/build/index.js +6 -2457
- package/build/server-types.js +1 -0
- package/build/server-version.js +12 -0
- package/build/tool-definitions.js +2264 -0
- package/build/tool-groups.js +174 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -39,6 +39,14 @@ npm install -g gopeak
|
|
|
39
39
|
gopeak
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
Optional shell hooks for update notifications are now **opt-in**:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
gopeak setup
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
> `gopeak setup` only modifies supported bash/zsh rc files when you run it explicitly. `npm install` no longer installs shell hooks automatically.
|
|
49
|
+
|
|
42
50
|
### 2) Add MCP client config
|
|
43
51
|
|
|
44
52
|
```json
|
|
@@ -168,6 +176,12 @@ npm install -g gopeak
|
|
|
168
176
|
gopeak
|
|
169
177
|
```
|
|
170
178
|
|
|
179
|
+
Optional shell hooks for update notifications remain available via:
|
|
180
|
+
|
|
181
|
+
```bash
|
|
182
|
+
gopeak setup
|
|
183
|
+
```
|
|
184
|
+
|
|
171
185
|
### C) From source
|
|
172
186
|
|
|
173
187
|
```bash
|
|
@@ -201,10 +215,12 @@ GitHub Actions runs on push/PR and executes:
|
|
|
201
215
|
2. `npx tsc --noEmit`
|
|
202
216
|
3. `npm run smoke`
|
|
203
217
|
|
|
204
|
-
Run the same checks locally:
|
|
218
|
+
Run the same checks locally before opening a PR:
|
|
205
219
|
|
|
206
220
|
```bash
|
|
207
221
|
npm run ci
|
|
222
|
+
npm run test:dynamic-groups
|
|
223
|
+
npm run test:integration
|
|
208
224
|
```
|
|
209
225
|
|
|
210
226
|
---
|