CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Gossipcat

gossipcat-ai/gossipcat-ai
authSTDIOregistry active
Summary

Runs multiple AI agents in parallel to review your code, then cross-verifies their findings against actual file:line citations in your source. When agents agree, the bug is real. When one hallucinates, peers catch it and the system penalizes that agent's future dispatch weight. Over time, each agent builds an accuracy profile and the orchestrator routes tasks to whoever performs best in each category. Includes a live dashboard at localhost:63007 showing consensus rounds, per-agent stats, and hallucination catches in real time. The learning loop works by updating markdown skill files in .gossip/agents, not model weights. Reach for this when single-pass AI review ships too many false positives and you want mechanical verification before acting on findings.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Gossipcat

Multi-agent consensus code review. 3+ AI agents review your code independently, cross-check each other's findings against your actual source, and only surface what survives — and the system learns which agent to trust for what.

npm version npm weekly downloads MIT License Node 22+ GitHub stars last commit tests Ask DeepWiki

Install · First Run · Daily Use · Dashboard · Chat Bridge · Troubleshooting · Config · Tools


Gossipcat dashboard — live fleet view with per-agent vortexes, accuracy rings, signal volume, and recent hallucination catches

Live dashboard at http://localhost:<port>/dashboard — fleet view, signal stream, skill-graduation grid, and consensus flow, all in real time.


Why

A single AI reviewer will, with total confidence, report bugs that aren't there. You read the finding, you go look, you waste twenty minutes — the code was fine. There's no second opinion and no track record, so you can't tell a real catch from a hallucination until you've already spent the time.

Gossipcat runs several agents in parallel, has them cross-check each other's findings against your actual file:line, and only surfaces what survives. When an agent invents a finding, a peer catches it and the agent's accuracy score drops — so over time the system routes each kind of work to whoever is actually reliable at it. Cross-review catches hallucinations a solo reviewer would have shipped to you; that delta is the whole point.

It runs as an MCP server inside Claude Code and Cursor, ships a live operator dashboard, and lets you drive the orchestrator straight from the browser.

The consensus tags you'll see (this is your whole job — read these, ignore the rest):

TagMeansWhat you do
CONFIRMEDMultiple agents found it and verified it against the codeFix it
UNIQUEOne agent found it, cross-checked and held upFix it — high signal
DISPUTEDAgents disagreed; gossipcat re-checked the codeTrust the verdict
UNVERIFIEDLooks real but wasn't cross-checked yetGlance, then verify

How it works

flowchart LR
    A([agent review]) -->|cites file:line| B([peer cross-review])
    B -->|verifies against code| C{verdict}
    C -->|confirmed| D[reward signal]
    C -->|hallucination| E[penalty signal]
    D --> F[competency score]
    E --> F
    F -->|steer dispatch| G([next agent pick])
    E -->|≥3 in category| H[auto-generate skill]
    H -->|inject into prompt| A
    G --> A
    style A fill:#0ea5e9,stroke:#0369a1,color:#fff
    style H fill:#f59e0b,stroke:#b45309,color:#fff
    style D fill:#10b981,stroke:#047857,color:#fff
    style E fill:#ef4444,stroke:#b91c1c,color:#fff
StepWhat happens
DispatchTasks routed to agents by dispatch weight — each agent's measured accuracy in that category
Parallel reviewAgents work independently, each producing findings with cited file:line
Cross-reviewEach agent checks peers' findings against the real code: agree, disagree, unverified, or new
ConsensusFindings deduplicated and tagged CONFIRMED / DISPUTED / UNVERIFIED / UNIQUE
SignalsVerified findings (and caught hallucinations) become reward signals that update accuracy scores
Skill developmentAn agent that repeats a category of mistake gets a skill file — targeted instructions auto-generated from its own failure history — injected into future prompts

The reward signal is grounded in your source code, not a judge model's opinion. Every finding cites a real file:line; peers verify the citation mechanically. That ground truth is what makes the loop trustworthy enough to automate. The "policy update" is a markdown file under .gossip/agents/<id>/skills/ — no weights touched, no fine-tuning, no RLHF. (It's effectively in-context reinforcement learning at the prompt layer; the framing is deliberate, the mechanism is exactly the table above.)

A small synthesis model (consensus_judge, configurable) merges and deduplicates the cross-review results — it does not grade quality. Verdicts come from citation checks against your code, never from one model judging another.


Native vs Relay agents

Every agent has a type (where it runs) and a preset (what skills it starts with — reviewer, implementer, researcher, …). You mix them freely; a team of native reviewers and relay researchers is perfectly normal.

NativeRelay
Runs asA host subagent — Claude Code Agent() / Cursor Task()A WebSocket worker on the relay server
ProvidersYour Claude Code / Cursor subscription — no API keyGoogle (Gemini), OpenAI, xAI (Grok), DeepSeek, OpenClaw, Ollama, any OpenAI-compatible endpoint
API keyNoneRequired per provider
Defined in.claude/agents/<id>.md.gossip/config.json
Consensus, memory, skillsYesYes

Both participate equally in consensus and skill development. Relay workers get file_read + file_grep during cross-review so their verification parity matches natives.


How Gossipcat compares

What you getFilters hallucinationsImproves over time
Gossipcat3+ agents cross-review each other's findings; confirmed bugs onlyYes — peers catch and penalize hallucinations mechanicallyYes — accuracy signals steer dispatch; skill files fix repeat failures
Single-agent review (Claude Code / Cursor built-in)One model reviews your diffNo — hallucinations ship as findingsNo feedback loop
Model-grades-model reviewOne model scores another's outputPartial — the judge can hallucinate too; no ground truthScores aren't wired to dispatch
Pattern-match tools (lint-style PR bots)Rules + one LLM passNoNo

The 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.


Runs in Claude Code
Full support
Cursor
Full support
Windsurf
Planned
VS Code
Planned
Native agents run on Claude Code Agent() and Cursor Task(). Other MCP hosts work in relay-only mode (no native subagents).

Quickstart

Requirements: Node.js 22+ and either host below. Claude Code and Cursor are co-equal first-class hosts — pick the one you use; gossipcat auto-detects it and runs native agents either way.

Fastest path (skills CLI): one command installs the server and walks you through setup:

npx skills add gossipcat-ai/gossipcat-ai

This drops an installer skill into .claude/skills/; your agent runs the install and then hands off to gossip_status() for the live rules. Prefer it over the manual steps below if you use the skills CLI. The manual npm install is documented next.

Install the package once:

npm install -g gossipcat
Claude CodeCursor

Register the MCP server:

claude mcp add gossipcat -s user -- gossipcat

Restart Claude Code. Native agents dispatch via Agent().

Add to .cursor/mcp.json:

{ "mcpServers": {
  "gossipcat": { "command": "gossipcat" }
} }

Reload Cursor. Native agents dispatch via Task().

Then in any project, ask the orchestrator: "Set up a gossipcat team for this project."

Manual MCP config / alternative install paths

Add to ~/.claude/mcp_settings.json (Claude Code) or project-local .mcp.json:

{ "mcpServers": { "gossipcat": { "command": "npx", "args": ["gossipcat"] } } }
# Pin to a version
npm install -g gossipcat@0.6.5

# Pin to a GitHub release tarball (bypasses the npm registry)
npm install -g https://github.com/gossipcat-ai/gossipcat-ai/releases/download/v0.6.5/gossipcat-0.6.5.tgz

# Project-local (postinstall writes .mcp.json — open the IDE there, no `mcp add` needed)
cd your-project && npm install --save-dev gossipcat

# From source (contributors)
git clone https://github.com/gossipcat-ai/gossipcat-ai.git && cd gossipcat-ai
npm install && npm run build:mcp
claude mcp add gossipcat -s user -- node "$PWD/dist-mcp/mcp-server.js"

The install ships the MCP server binary, the prebuilt dashboard (dist-dashboard/, launches on a dynamic port), bundled skill templates + rules + project archetypes, and a postinstall wizard that writes .mcp.json with correct absolute paths.

Upgrade: npm install -g gossipcat@latest, or ask in-session "check for gossipcat updates" (the gossip_update tool applies it with your confirmation).

API keys (relay agents only)

Native agents need no key. For relay agents, pass provider keys with -e at registration or set them in your shell:

ProviderHowNotes
Native (Claude Code / Cursor)—Runs through your subscription. No key.
Anthropic APIANTHROPIC_API_KEYDirect API access without the subscription path
Google GeminiGOOGLE_API_KEYBuilt-in 429 watcher falls back to native on cooldown
OpenAI / compatibleOPENAI_API_KEY (+ OPENAI_BASE_URL)Point BASE_URL at Azure / Together / Groq / OpenRouter
xAI (Grok)OS keychain via key_refNo env var — store in keychain, set key_ref (default service grok)
DeepSeekOS keychain via key_refNo env var — keychain, key_ref default service deepseek
OpenClaw 🦞— (local gateway)OpenAI-compatible at http://127.0.0.1:18789/v1, auth via the local daemon
Ollama (local)—http://localhost:11434. ollama pull llama3.1:8b first

Keys are stored persistently and cross-platform — macOS Keychain, Linux Secret Service (secret-tool), or an AES-256-GCM encrypted file on Windows. Mixing providers is the common production shape: cheap Gemini reviewers + native heavy implementers, dispatched by category strength.


First Run

The fastest path from "just installed" to "first useful review."

1 · Open your IDE in a project and bootstrap once. In Claude Code or Cursor, run:

Run gossip_status

This loads gossipcat's operating rules into the session, creates .gossip/ on first run, and prints the dashboard URL + auth key:

Status:
  Host: claude-code (native agents supported)   ← which IDE you're in
  Relay: running :49664                          ← background server for agents + dashboard
  Workers: 0                                     ← agents busy right now (rises during a round)
  Dashboard: http://localhost:49664/dashboard (key: c3208820…)  ← open it, paste the key
  Quota: google — OK                             ← provider rate-limit status (falls back to native on cooldown)

Open the dashboard URL, paste the key (it rotates each boot — re-run gossip_status for a fresh one).

2 · Create your first team. Tell the orchestrator what you're building:

"Set up a gossipcat team for this project — a TypeScript Next.js app with Postgres and Stripe."

It proposes a team matched to your stack. Smallest working team: sonnet-reviewer + haiku-researcher — both native, zero API keys. Drop any relay agent whose provider key you don't have; add it later. Native agents (native: true) run on your subscription. Approve, and .gossip/config.json is written.

3 · Run your first review in a project with some changes:

"Do a consensus review of my recent changes"

PhaseTimeWhat you see
Decompose~1sOrchestrator picks agents, dispatches in parallel
Independent review30s–2minEach agent reads your diff and reports findings
Cross-review30s–1minEach agent checks the others' findings against the code
Consensus report<1sFindings tagged CONFIRMED / DISPUTED / UNVERIFIED / UNIQUE
Verify + record<1sUNVERIFIED checked against code; accuracy signals saved
Consensus round b81956b2-e0fa4ea4 — 3 agents

CONFIRMED (2):
  [critical] Race condition in tasks Map at server.ts:47 — sonnet + gemini
  [high]     Missing auth on WebSocket upgrade at server.ts:112 — sonnet + gemini
UNIQUE (1):
  [medium]   String concat in SQL query at queries.ts:88 — only sonnet caught this
DISPUTED (1):
  [low]      "Memory leak in timer" — haiku says yes, sonnet/gemini say no
             → verified: not a leak, cleanup is in finally. False alarm caught.

Final: 3 real bugs to fix, 1 false alarm caught by cross-review.

Act on CONFIRMED + verified UNIQUE. The false alarm that cross-review caught is the bug a single reviewer would have shipped to you.


How to use it day-to-day

Each recipe: what to type, what you get, what to do with it.

Review a diff before committing → "Review my staged changes." Consensus report in 1–3 min; fix CONFIRMED + verified findings. For diffs under ~20 lines, skip consensus — ask gossip_run for a single fast agent (~10s) and save the round.

Catch security issues → "Security audit lib/stripe/webhook.ts." Each security agent reviews from a different angle (OWASP, validation, auth, secrets); real vulns survive cross-review, theoretical ones get dropped. Be specific about the file — "audit the codebase" is too broad.

Understand code before changing it → "Research how the WebSocket lifecycle works before I touch it." A research agent traces call paths and writes a summary into its cognitive memory, so next time it remembers — no re-discovery cost.

Verify your own assumption → "I think there's a race in the tasks Map at server.ts:47 — check if I'm right." Two agents independently confirm or push back. Author self-review is optimistic; this isn't.

See which agents you can trust → "Show me agent scores." Per-category accuracy + dispatch weights. If gemini-reviewer sits at 30% on concurrency, don't trust its concurrency findings solo.

Improve a struggling agent → "gemini-reviewer keeps hallucinating about concurrency — develop a skill for it." Gossipcat generates a targeted skill from its failure data and measures whether it works (z-test on post-bind signals). Then it's automatic.

Avoid: "review the whole codebase" (too broad — scope to a file/module/diff); approving findings without reading the reasoning; running consensus for trivial questions (use a single gossip_run agent).


Reading the dashboard

Open it once with the key from gossip_status; leave the tab open while you work. Every tool call pushes a live WebSocket update.

Skill graduation grid — per-skill effectiveness curve, 7d window, current/threshold value, and ±pp delta for graduated skills

Skill-graduation grid — each card is one (skill × agent): post-bind effectiveness over a 7-day window vs threshold, with ±pp drift on graduated skills.

PanelWhat it shows
OverviewActive agents, dispatch weights, recent finding counts
TeamAgents sorted by reliability, with category breakdowns
TasksLive + historical tasks with agent, duration, status
FindingsConsensus reports by round, CONFIRMED/DISPUTED/UNVERIFIED breakdowns
Agent detailPer-agent memory, skills, score history, task history
SignalsRaw signal feed (agreement / hallucination / unique_confirmed)
ChatLive two-way bridge into the orchestrator (see below)
Logsmcp.log (boot, errors, warnings)

Drive it from your browser

The dashboard's Chat page is a live, two-way bridge into the running orchestrator — type from the browser and your message lands in the active session; the orchestrator's dispatches, findings, and replies mirror back into the same thread in real time.

CapabilityWhat it does
Multi-conversation tabsSeveral independent threads side by side — each its own chat_id, history, and live stream; per-tab unread, persisted across reloads
Renamable tabsDouble-click or F2 to label a tab ("auth refactor", "perf audit") — survives reload
Working-agents railLive rail of who's dispatched and working right now — watch a round progress without leaving chat
Structured questionsWhen the orchestrator needs a decision, gossip_ask renders a single/multi-select card right in the chat; your pick flows back as a normal turn

The gossip_ask answer boundary is fail-closed: only known options are accepted and "Other" free-text is sanitized before it reaches the orchestrator, so a dashboard answer can't smuggle instructions into the session. Launch with the gossipcat code wrapper (or ask the orchestrator to enable channel mode), then open the Chat tab.


Host compatibility

Gossipcat auto-detects the host and adapts dispatch + the rules file it writes.

HostNative agentsRules file
Claude CodeYes — Agent().claude/rules/gossipcat.md
CursorYes — Task(subagent_type, model, …).cursor/rules/gossipcat.mdc
WindsurfRelay-only (planned).windsurfrules
VS CodeRelay-only (planned)—

On Claude Code and Cursor, native agents run with no API key and participate fully in consensus. Other MCP hosts can still run relay agents.


Troubleshooting

Dashboard says unauthorized / 401 — the key rotates every boot. Run gossip_status for the current key.

Dashboard URL won't load — check .gossip/mcp.log for the 🌐 Dashboard: line (the real port). If missing, the relay didn't start: delete a stale .gossip/relay.pid from a crashed boot and restart, or free up GOSSIPCAT_PORT if it's taken.

Agents return empty findings — usually quota. gossip_status shows Quota: <provider> — OK / cooling down. On a rate limit gossipcat falls back to native agents (add some to your team if you have none).

The same hallucinated finding keeps coming back — record it: "record a hallucination_caught signal for finding f3 — it claimed X but the code shows Y." After 3, the agent's score drops in that category and dispatch stops routing it there.

An agent produced output but the consensus report is empty — the strict <agent_finding> parser drops tags whose type isn't finding | suggestion | insight (invariant #8 in docs/HANDBOOK.md); the gossip_signals receipt surfaces the drop and a finding_dropped_format signal. If you see &lt;agent_finding&gt; instead of raw tags, a transport layer is entity-encoding output — pass agent output verbatim to gossip_relay.

Multiple IDE instances — each gets its own dynamic port. For a stable port on one project, set GOSSIPCAT_PORT=24420 in that environment.

Uninstall — npm uninstall -g gossipcat && claude mcp remove gossipcat -s user; rm -rf ~/.gossip (global state) or <project>/.gossip (per-project).

Still stuck? Open an issue with the last 100 lines of .gossip/mcp.log + gossip_status output, or ask in-session "file a gossipcat bug report about …" (gossip_bug_feedback packages it).


Configuration

Most of .gossip/config.json is auto-generated by gossip_setup() — hand-edit only to change providers/models/endpoints. First-run defaults work for most projects. Config is searched: .gossip/config.json → gossip.agents.json → gossip.agents.yaml.

{
  "main_agent":      { "provider": "google",    "model": "gemini-2.5-pro" },
  "utility_model":   { "provider": "native",    "model": "haiku" },
  "consensus_judge": { "provider": "anthropic", "model": "claude-sonnet-4-6", "native": true },
  "agents": {
    "sonnet-reviewer": {
      "provider": "anthropic", "model": "claude-sonnet-4-6",
      "preset": "reviewer", "skills": ["code_review", "security_audit", "typescript"],
      "native": true
    }
  }
}
FieldDescription
main_agentInternal LLM for routing, planning, synthesis (set provider: "none" on Claude Code / Cursor to let the host classify natively)
utility_modelMemory compaction, gossip, lens generation
consensus_judgeSynthesis-only model that merges cross-review results (does not grade)
agents.<id>.provideranthropic, google, openai, grok, deepseek, openclaw, local, native
agents.<id>.key_refKeychain service to read the provider key from (default = provider name). Used by keychain providers (grok, deepseek); env-var providers (openai, google, anthropic) read their key from the environment instead
agents.<id>.base_urlCustom endpoint for openai / openclaw (e.g. http://127.0.0.1:18789/v1)
agents.<id>.nativetrue = runs via the host's native tool, no API key
agents.<id>.presetreviewer, implementer, tester, researcher, debugger, architect, security, designer, planner, devops, documenter
agents.<id>.skillsSkill labels for dispatch matching
OpenClaw 🦞 (local gateway provider)

OpenClaw runs locally and exposes an OpenAI-compatible API; gossipcat talks to it like any relay agent, with a separate quota slot so its rate limits don't bleed into your OpenAI agents. Store the gateway token once (macOS: security add-generic-password -s gossip-mesh -a openclaw -w <token>; Linux: secret-tool store --label "Gossip Mesh openclaw" service gossip-mesh provider openclaw), then add an agent with provider: "openclaw" (default base_url http://127.0.0.1:18789/v1, models openclaw / openclaw/default / openclaw/main). It joins consensus and earns skills like any other agent.


MCP Tools

The orchestrator (Claude Code / Cursor) selects and calls these from your natural-language requests — you don't invoke them manually.

ToolPurpose
gossip_statusSystem status, dashboard URL, agent list
gossip_setupCreate or update an agent team
gossip_runSingle-agent dispatch with auto agent selection
gossip_dispatchMulti-agent dispatch: single, parallel, or consensus
gossip_collectCollect results with optional cross-review synthesis
gossip_planDecompose a task into sub-tasks with agent assignments
gossip_signalsRecord or retract accuracy signals
gossip_scoresView agent accuracy, uniqueness, dispatch weights
gossip_skillsDevelop, bind, unbind, or list per-agent skills
gossip_resolve_findingsMark consensus findings resolved/open
gossip_rememberSearch an agent's cognitive memory
gossip_verify_memoryCheck a memory claim against current code (FRESH / STALE / CONTRADICTED) before acting on backlog
gossip_session_saveSave session context for the next session
gossip_progressCheck in-progress task status
gossip_watchStream signals as agents emit them (catches pipeline drops mid-round)
gossip_askAsk the dashboard a structured single/multi-select question
gossip_guidePrint the gossipcat handbook for humans
gossip_configManage runtime feature-gate flags
gossip_formatReturn the canonical <agent_finding> output format block
gossip_toolsList all available tools
gossip_updateCheck for / apply gossipcat updates from npm
gossip_bug_feedbackFile a GitHub issue from an in-session bug report
gossip_reloadSelf-terminate so the host respawns with a fresh bundle (dev loop)
orchestrator-onlygossip_relay, gossip_relay_cross_review, reply — used internally to feed native results + the chat bridge back into the pipeline; you never call these

Architecture

gossipcat/
  apps/cli/               MCP server, host-aware native agent bridge, boot sequence
  packages/
    orchestrator/         Dispatch pipeline, consensus engine, memory, skills,
                          performance scoring, task graph, prompt assembly
    relay/                WebSocket relay server, dashboard REST/WS API
    dashboard-v2/         React + Vite + shadcn/ui frontend (warm-cream theme — see DESIGN.md)
    client/               Lightweight WebSocket client for relay connections
    tools/                File / shell / git tool implementations for worker agents
    types/                Shared TypeScript types and message protocol

The dashboard ships prebuilt in dist-dashboard/ and the relay serves it as static files; rebuild from source with npm run build:dashboard.

Reading this as a Claude Code or Cursor instance? Call gossip_status() — it boots your full operating rules. The detailed orchestrator workflow (dispatch rules, consensus protocol, signal pipeline) lives in CLAUDE.md and .claude/rules/gossipcat.md.


Roadmap

Shipped work lives in CHANGELOG.md and GitHub Releases. What's next:

FeatureStatus
Dashboard enrichment (graphs, trends, session history)☐ Planned
Local Postgres migration (tasks/signals/consensus/memory — full task results, real queries, no JSONL scans)☐ Planned
Windsurf / VS Code native parity☐ Planned
Standalone CLI (no IDE required) + chat-mode pipeline parity☐ Planned

Contributing

Gossipcat is open source and early-stage — bug reports, ideas, and PRs welcome.

  • Bugs / features → open an issue, or ask Claude Code "file a gossipcat bug report about …" (gossip_bug_feedback posts a structured issue).
  • Pull requests → fork, branch, PR against master. Run npm test first. Conventional commits (fix:, feat:, chore:, docs:). Release process and contributor setup are in CONTRIBUTING.md.
  • Discussions → GitHub Discussions.

CLAUDE.md documents the operational rules gossipcat's own agents follow during development — a useful read for understanding the signal pipeline and consensus workflow from the inside.


Star History

Star History Chart

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

GOOGLE_API_KEYsecret

Google Gemini API key for relay agents (optional — native agents need no API key)

GOSSIPCAT_PORT

Fixed port for the relay/dashboard server (optional — defaults to OS-assigned with sticky file)

Categories
AI & LLM Tools
Registryactive
Packagegossipcat
TransportSTDIO
AuthRequired
UpdatedApr 10, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f