gossipcat 0.4.1 → 0.4.3

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 CHANGED
@@ -12,6 +12,7 @@
12
12
  <a href="https://github.com/gossipcat-ai/gossipcat-ai/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" alt="MIT License" /></a>
13
13
  <a href="#quickstart"><img src="https://img.shields.io/badge/node-22%2B-green" alt="Node 22+" /></a>
14
14
  <a href="https://github.com/gossipcat-ai/gossipcat-ai/stargazers"><img src="https://img.shields.io/github/stars/gossipcat-ai/gossipcat-ai?style=social" alt="GitHub stars" /></a>
15
+ <a href="https://socket.dev/npm/package/gossipcat"><img src="https://badge.socket.dev/npm/package/gossipcat/0.4.2" alt="Socket Score" /></a>
15
16
  </p>
16
17
 
17
18
  <p align="center">
@@ -168,8 +169,7 @@ Both types participate equally in consensus, cross-review, and skill development
168
169
  ### One-liner
169
170
 
170
171
  ```bash
171
- npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/latest/download/gossipcat.tgz && \
172
- claude mcp add gossipcat -s user -- gossipcat
172
+ npm install -g gossipcat && claude mcp add gossipcat -s user -- gossipcat
173
173
  ```
174
174
 
175
175
  Restart Claude Code. Then in any project, ask:
@@ -185,8 +185,7 @@ Add to `~/.claude/mcp_settings.json`:
185
185
  {
186
186
  "mcpServers": {
187
187
  "gossipcat": {
188
- "command": "gossipcat",
189
- "args": ["mcp"]
188
+ "command": "gossipcat"
190
189
  }
191
190
  }
192
191
  }
@@ -199,7 +198,7 @@ Or project-local in `.mcp.json`:
199
198
  "mcpServers": {
200
199
  "gossipcat": {
201
200
  "command": "npx",
202
- "args": ["gossipcat", "mcp"]
201
+ "args": ["gossipcat"]
203
202
  }
204
203
  }
205
204
  }
@@ -209,7 +208,7 @@ Or project-local in `.mcp.json`:
209
208
 
210
209
  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
210
 
212
- Gossipcat ships from **[GitHub Releases](https://github.com/gossipcat-ai/gossipcat-ai/releases)**, not the npm registry. The install URL above always points at the latest release. `npm` downloads the tarball directly, installs it globally, and drops a `gossipcat` binary on your `PATH` — no `npm publish` involved.
211
+ 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
212
 
214
213
  ### What the install ships
215
214
 
@@ -222,15 +221,20 @@ Gossipcat ships from **[GitHub Releases](https://github.com/gossipcat-ai/gossipc
222
221
 
223
222
  ### Alternative install paths
224
223
 
225
- **Pin to a specific version:**
224
+ **Pin to a specific npm version:**
225
+ ```bash
226
+ npm install -g gossipcat@0.4.1
227
+ ```
228
+
229
+ **Pin to a specific GitHub release tarball** (version-locked, bypasses npm registry):
226
230
  ```bash
227
- npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.1.1/gossipcat-0.1.1.tgz
231
+ npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.4.1/gossipcat-0.4.1.tgz
228
232
  ```
229
233
 
230
234
  **Project-local install** (each project gets its own gossipcat):
231
235
  ```bash
232
236
  cd your-project
233
- npm install --save-dev https://github.com/gossipcat-ai/gossipcat-ai/releases/latest/download/gossipcat.tgz
237
+ npm install --save-dev gossipcat
234
238
  ```
235
239
  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
240
 
@@ -245,9 +249,9 @@ claude mcp add gossipcat -s user -- node "$PWD/dist-mcp/mcp-server.js"
245
249
 
246
250
  ### Upgrading
247
251
 
248
- Re-run the one-liner — npm will fetch the latest release tarball and replace the installed version:
252
+ Re-run the install — npm will fetch the latest version and replace the installed binary:
249
253
  ```bash
250
- npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/latest/download/gossipcat.tgz
254
+ npm install -g gossipcat@latest
251
255
  ```
252
256
  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
257
 
@@ -569,7 +573,7 @@ Check `~/.gossip/mcp.log` (or `<your-project>/.gossip/mcp.log`) for the boot log
569
573
  - **Conflicting `.gossip/relay.pid`** from a crashed previous boot — delete it and restart Claude Code
570
574
  - **`GOSSIPCAT_PORT` set to a port already in use** — unset the env var or pick a free port
571
575
 
572
- ### "Boot says 'No gossip.agents.json found' and nothing happens"
576
+ ### "Boot says 'No .gossip/config.json found' and nothing happens"
573
577
  This was a critical bug in v0.1.0 — fixed in v0.1.1. Upgrade with the install one-liner above. v0.1.1+ boots in degraded mode (dashboard + relay only) so you can run `gossip_setup` from inside Claude Code.
574
578
 
575
579
  ### "Agents keep returning empty findings"