gossipcat 0.4.1 → 0.4.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 +14 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -168,8 +168,7 @@ Both types participate equally in consensus, cross-review, and skill development
|
|
|
168
168
|
### One-liner
|
|
169
169
|
|
|
170
170
|
```bash
|
|
171
|
-
npm install -g
|
|
172
|
-
claude mcp add gossipcat -s user -- gossipcat
|
|
171
|
+
npm install -g gossipcat && claude mcp add gossipcat -s user -- gossipcat
|
|
173
172
|
```
|
|
174
173
|
|
|
175
174
|
Restart Claude Code. Then in any project, ask:
|
|
@@ -185,8 +184,7 @@ Add to `~/.claude/mcp_settings.json`:
|
|
|
185
184
|
{
|
|
186
185
|
"mcpServers": {
|
|
187
186
|
"gossipcat": {
|
|
188
|
-
"command": "gossipcat"
|
|
189
|
-
"args": ["mcp"]
|
|
187
|
+
"command": "gossipcat"
|
|
190
188
|
}
|
|
191
189
|
}
|
|
192
190
|
}
|
|
@@ -199,7 +197,7 @@ Or project-local in `.mcp.json`:
|
|
|
199
197
|
"mcpServers": {
|
|
200
198
|
"gossipcat": {
|
|
201
199
|
"command": "npx",
|
|
202
|
-
"args": ["gossipcat"
|
|
200
|
+
"args": ["gossipcat"]
|
|
203
201
|
}
|
|
204
202
|
}
|
|
205
203
|
}
|
|
@@ -209,7 +207,7 @@ Or project-local in `.mcp.json`:
|
|
|
209
207
|
|
|
210
208
|
Claude Code will call `gossip_setup()` to scaffold `.gossip/config.json` and your agent team. First-run bootstrap also writes the dispatch rules and tool catalog so Claude Code knows how to use gossipcat — no manual config needed.
|
|
211
209
|
|
|
212
|
-
Gossipcat
|
|
210
|
+
Gossipcat is on **[npm](https://www.npmjs.com/package/gossipcat)** and **[GitHub Releases](https://github.com/gossipcat-ai/gossipcat-ai/releases)** — both carry the same bundle. `npm install -g gossipcat` pulls from the registry and is the shortest path; the GitHub release URL is useful when you want to pin to a specific tarball (see [Alternative install paths](#alternative-install-paths) below). Either way, npm drops a `gossipcat` binary on your `PATH`.
|
|
213
211
|
|
|
214
212
|
### What the install ships
|
|
215
213
|
|
|
@@ -222,15 +220,20 @@ Gossipcat ships from **[GitHub Releases](https://github.com/gossipcat-ai/gossipc
|
|
|
222
220
|
|
|
223
221
|
### Alternative install paths
|
|
224
222
|
|
|
225
|
-
**Pin to a specific version:**
|
|
223
|
+
**Pin to a specific npm version:**
|
|
224
|
+
```bash
|
|
225
|
+
npm install -g gossipcat@0.4.1
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
**Pin to a specific GitHub release tarball** (version-locked, bypasses npm registry):
|
|
226
229
|
```bash
|
|
227
|
-
npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.
|
|
230
|
+
npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.4.1/gossipcat-0.4.1.tgz
|
|
228
231
|
```
|
|
229
232
|
|
|
230
233
|
**Project-local install** (each project gets its own gossipcat):
|
|
231
234
|
```bash
|
|
232
235
|
cd your-project
|
|
233
|
-
npm install --save-dev
|
|
236
|
+
npm install --save-dev gossipcat
|
|
234
237
|
```
|
|
235
238
|
The postinstall writes `.mcp.json` to your project root. Open Claude Code in that directory and gossipcat connects automatically — no `claude mcp add` needed.
|
|
236
239
|
|
|
@@ -245,9 +248,9 @@ claude mcp add gossipcat -s user -- node "$PWD/dist-mcp/mcp-server.js"
|
|
|
245
248
|
|
|
246
249
|
### Upgrading
|
|
247
250
|
|
|
248
|
-
Re-run the
|
|
251
|
+
Re-run the install — npm will fetch the latest version and replace the installed binary:
|
|
249
252
|
```bash
|
|
250
|
-
npm install -g
|
|
253
|
+
npm install -g gossipcat@latest
|
|
251
254
|
```
|
|
252
255
|
Or in-session, ask Claude Code: *"Check for gossipcat updates"* — the `gossip_update` tool fetches the latest release notes and applies the upgrade with your confirmation.
|
|
253
256
|
|
package/package.json
CHANGED