gossipcat 0.4.21 → 0.4.23
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 +34 -2
- package/dist-dashboard/assets/index-C5O8BHjE.js +71 -0
- package/dist-dashboard/assets/index-DHrxKCIK.css +1 -0
- package/dist-dashboard/index.html +2 -2
- package/dist-mcp/default-skills/emit-structured-claims.md +5 -3
- package/dist-mcp/mcp-server.js +43634 -39157
- package/package.json +1 -1
- package/dist-dashboard/assets/index-Ci46EANB.css +0 -1
- package/dist-dashboard/assets/index-aXAMEMbl.js +0 -70
package/README.md
CHANGED
|
@@ -12,9 +12,9 @@
|
|
|
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://bundlephobia.com/package/gossipcat"><img src="https://img.shields.io/bundlephobia/min/gossipcat?color=0ea5e9" alt="minified bundle size" /></a>
|
|
16
15
|
<a href="https://github.com/gossipcat-ai/gossipcat-ai/commits/master"><img src="https://img.shields.io/github/last-commit/gossipcat-ai/gossipcat-ai?color=0ea5e9" alt="last commit" /></a>
|
|
17
16
|
<a href="https://github.com/gossipcat-ai/gossipcat-ai/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/gossipcat-ai/gossipcat-ai/ci.yml?branch=master&label=tests" alt="tests" /></a>
|
|
17
|
+
<a href="https://deepwiki.com/gossipcat-ai/gossipcat-ai"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki" /></a>
|
|
18
18
|
</p>
|
|
19
19
|
|
|
20
20
|
<p align="center">
|
|
@@ -29,6 +29,15 @@
|
|
|
29
29
|
|
|
30
30
|
<br/>
|
|
31
31
|
|
|
32
|
+
> **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
|
+
<!-- TODO: link public benchmark -->
|
|
34
|
+
|
|
35
|
+
<br/>
|
|
36
|
+
|
|
37
|
+
Multi-agent consensus code review that catches hallucinations before you act on them — and gets smarter every session.
|
|
38
|
+
|
|
39
|
+
> Gossipcat is an MCP server for Claude Code that runs 3+ AI agents in parallel to review your code. They independently find bugs, then cross-review each other's findings. Confirmed = real. Caught = hallucination, penalized. Over time, agents accumulate accuracy profiles and the system routes tasks to whoever is most reliable for that category. No weights updated — the "policy" is a markdown skill file.
|
|
40
|
+
|
|
32
41
|
## What is Gossipcat?
|
|
33
42
|
|
|
34
43
|
Gossipcat is an MCP server that orchestrates multiple AI agents to review your code in parallel. Agents independently review, then cross-review each other's findings. Agreements are confirmed. Hallucinations are caught and penalized. Over time, each agent builds an accuracy profile — the system learns who to trust for what.
|
|
@@ -61,7 +70,30 @@ The "policy update" is a markdown file under `.gossip/agents/<id>/skills/`. No f
|
|
|
61
70
|
|
|
62
71
|
<br/>
|
|
63
72
|
|
|
64
|
-
|
|
73
|
+
## How Gossipcat compares
|
|
74
|
+
|
|
75
|
+
| | What you get | Hallucination filtering | Agents improve over time |
|
|
76
|
+
|---|---|---|---|
|
|
77
|
+
| **Gossipcat** | 3+ agents cross-review each other's findings; confirmed bugs only | Yes — peers catch and penalize hallucinations mechanically | Yes — accuracy signals steer dispatch; skill files fix repeat failures |
|
|
78
|
+
| **Single-agent review** (Claude Code built-in, Cursor review) | One model reviews your diff | No — hallucinations ship as findings | No — no feedback loop |
|
|
79
|
+
| **LLM-as-judge cross-review** (most multi-agent frameworks) | One model grades another model's output | Partial — judge can hallucinate too; no ground truth | No — judge scores aren't wired to dispatch |
|
|
80
|
+
| **Traditional review tools** (CodeRabbit, PR-Agent) | Pattern-match + one LLM pass | No | No |
|
|
81
|
+
|
|
82
|
+
The core difference: gossipcat verifies findings against actual `file:line` citations in your codebase. That ground truth is what makes the reward signal trustworthy enough to automate.
|
|
83
|
+
|
|
84
|
+
<br/>
|
|
85
|
+
|
|
86
|
+
## Real-world session
|
|
87
|
+
|
|
88
|
+
What a typical gossipcat session looks like in practice (2026-04-29):
|
|
89
|
+
|
|
90
|
+
- **2 PRs shipped** — #317 (env-scrub fix, e180d41) and #318 (test hardening, cac57db), both through full consensus before merge
|
|
91
|
+
- **1 consensus round** on PR #317 — round `591af14b-3f674c9c`, 9 confirmed / 0 disputed findings
|
|
92
|
+
- **1 stale backlog item correctly identified** — write-time insight filter was already shipped in a prior session; the `verify-the-premise` skill caught it before sonnet-implementer started redundant implementation work
|
|
93
|
+
- **1 spec correctly deferred** — age-based archive pruning: full scan found 0 candidates meeting the threshold; design locked in docs, not built (right call)
|
|
94
|
+
- **1 hallucination caught** on haiku-researcher — extrapolated from a 50-row sample when the full dataset was needed; `hallucination_caught` signal recorded, accuracy score updated, no fix shipped on bad data
|
|
95
|
+
|
|
96
|
+
The signal pipeline ran the whole session. Nothing landed without cross-review. One agent's score dropped for the sample-extrapolation error.
|
|
65
97
|
|
|
66
98
|
<br/>
|
|
67
99
|
|