gossipcat 0.4.31 → 0.5.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 +30 -2
- package/dist-dashboard/assets/Geist-Variable-jflMhO5d.woff2 +0 -0
- package/dist-dashboard/assets/dashboard-overview.png +0 -0
- package/dist-dashboard/assets/dashboard-skills.png +0 -0
- package/dist-dashboard/assets/dashboard-team.png +0 -0
- package/dist-dashboard/assets/index-BSpZTn_T.js +78 -0
- package/dist-dashboard/assets/index-D622Bi2n.css +1 -0
- package/dist-dashboard/index.html +16 -8
- package/dist-mcp/mcp-server.js +3282 -1844
- package/docs/HANDBOOK.md +13 -0
- package/package.json +3 -2
- package/dist-dashboard/assets/index-CC9eddQj.css +0 -1
- package/dist-dashboard/assets/index-CLlV_738.js +0 -71
package/README.md
CHANGED
|
@@ -29,6 +29,26 @@
|
|
|
29
29
|
|
|
30
30
|
<br/>
|
|
31
31
|
|
|
32
|
+
<p align="center">
|
|
33
|
+
<a href="#reading-the-dashboard">
|
|
34
|
+
<img src="https://raw.githubusercontent.com/gossipcat-ai/gossipcat-ai/master/packages/dashboard-v2/public/assets/dashboard-overview.png" alt="Gossipcat dashboard — live fleet view with per-agent vortexes, accuracy rings, signal volume, and recent hallucination catches" width="900" />
|
|
35
|
+
</p>
|
|
36
|
+
<p align="center">
|
|
37
|
+
<em>Live dashboard at <code>http://localhost:63007/dashboard</code> — fleet vortex, signal stream, skill graduation grid, and consensus flow, all in real time.</em>
|
|
38
|
+
</p>
|
|
39
|
+
</p>
|
|
40
|
+
|
|
41
|
+
<p align="center">
|
|
42
|
+
<a href="#reading-the-dashboard">
|
|
43
|
+
<img src="https://raw.githubusercontent.com/gossipcat-ai/gossipcat-ai/master/packages/dashboard-v2/public/assets/dashboard-team.png" alt="Gossipcat Team page — per-agent accuracy, weight, signals, hallucinations, and last task" width="900" />
|
|
44
|
+
</p>
|
|
45
|
+
<p align="center">
|
|
46
|
+
<em>Per-agent leaderboard — accuracy, uniqueness, impact, hallucinations caught, and dispatch weight. Updated after every consensus round.</em>
|
|
47
|
+
</p>
|
|
48
|
+
</p>
|
|
49
|
+
|
|
50
|
+
<br/>
|
|
51
|
+
|
|
32
52
|
> **The single-reviewer failure mode:** a solo AI reviewer ships hallucinated bugs as critical findings **5–10% of the time** in our internal usage. Gossipcat's cross-review drops that to **under 1%**. That delta is what the whole system exists to produce.
|
|
33
53
|
<!-- TODO: link public benchmark -->
|
|
34
54
|
|
|
@@ -282,12 +302,12 @@ Gossipcat is on **[npm](https://www.npmjs.com/package/gossipcat)** and **[GitHub
|
|
|
282
302
|
|
|
283
303
|
**Pin to a specific npm version:**
|
|
284
304
|
```bash
|
|
285
|
-
npm install -g gossipcat@0.
|
|
305
|
+
npm install -g gossipcat@0.5.2
|
|
286
306
|
```
|
|
287
307
|
|
|
288
308
|
**Pin to a specific GitHub release tarball** (version-locked, bypasses npm registry):
|
|
289
309
|
```bash
|
|
290
|
-
npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.
|
|
310
|
+
npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.5.2/gossipcat-0.5.2.tgz
|
|
291
311
|
```
|
|
292
312
|
|
|
293
313
|
**Project-local install** (each project gets its own gossipcat):
|
|
@@ -608,6 +628,14 @@ Concrete recipes for the most common workflows. Each one shows what to type, wha
|
|
|
608
628
|
|
|
609
629
|
The dashboard at `http://localhost:<port>/dashboard` is the visual layer over everything gossipcat knows. Open it once with the auth key from `gossip_status`, leave the tab open while you work. Updates push live via WebSocket.
|
|
610
630
|
|
|
631
|
+
<p align="center">
|
|
632
|
+
<img src="https://raw.githubusercontent.com/gossipcat-ai/gossipcat-ai/master/packages/dashboard-v2/public/assets/dashboard-skills.png" alt="Skill graduation grid — per-skill effectiveness curve, 7d window, current/threshold value, and ±pp delta for graduated skills" width="900" />
|
|
633
|
+
</p>
|
|
634
|
+
<p align="center">
|
|
635
|
+
<em>Skill graduation grid — each card is one (skill × agent) pair: post-bind effectiveness curve over a 7-day window with current value vs threshold and ±pp drift on graduated skills.</em>
|
|
636
|
+
</p>
|
|
637
|
+
|
|
638
|
+
|
|
611
639
|
| Panel | What it shows | When to look at it |
|
|
612
640
|
|---|---|---|
|
|
613
641
|
| **Overview** | Active agents, dispatch weights, recent finding counts | First thing in the morning — quick sanity check |
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|