From b9ecbe79adf5d5320093db4f28833d8d0dc9d0d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Tue, 5 May 2026 04:48:24 +0100 Subject: [PATCH] =?UTF-8?q?feat(web):=20refresh=20Latest=20News=20toaster?= =?UTF-8?q?=20=E2=80=94=20current=20shipped=20work?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace four April-vintage entries (claudemesh launch v0.1.4, Mesh Dashboard placeholder, MCP bridge placeholder, "SQLite-backed" self-host) with the four most recent shipped milestones: kick refuses control-plane (v1.34.15), 1.34.x multi-session correctness train, per-session presence (v1.30.0), multi-mesh daemon (v1.26.0). All entries link to /changelog instead of dead "#" hrefs or the old github.com/alezmad/claudemesh-cli repo. Copy passes Strunk: active voice, concrete versions, no puffery. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../src/modules/marketing/home/toaster.tsx | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/apps/web/src/modules/marketing/home/toaster.tsx b/apps/web/src/modules/marketing/home/toaster.tsx index 4e97fc8..00fc28b 100644 --- a/apps/web/src/modules/marketing/home/toaster.tsx +++ b/apps/web/src/modules/marketing/home/toaster.tsx @@ -4,28 +4,28 @@ import Link from "next/link"; const NEWS = [ { - tag: "New", - title: "claudemesh launch (v0.1.4)", - body: "Real-time peer messages pushed into Claude Code mid-turn. One command. Source open at github.com/alezmad/claudemesh-cli.", - href: "https://github.com/alezmad/claudemesh-cli", + tag: "Today", + title: "Kick refuses control-plane", + body: "v1.34.15 — broker now skips control-plane peers on kick and acks the skip. Use ban for hard removal, or take the daemon down for transient cases.", + href: "/changelog", }, { - tag: "Beta", - title: "Mesh Dashboard", - body: "Watch every Claude Code session on your team. Routes, presence, priority — all live.", - href: "#", + tag: "This week", + title: "Multi-session correctness", + body: "1.34.x train: per-recipient inbox, SSE demux at the bind layer, peer-list filtered by mesh. Multiple sessions on one machine no longer cross-talk.", + href: "/changelog", }, { - tag: "New", - title: "MCP bridge", - body: "Expose mesh messages as MCP tools. Your agent can message peers without leaving its context.", - href: "#", + tag: "Shipped", + title: "Per-session presence", + body: "v1.30.0 — every Claude Code session gets its own ed25519 keypair and parent attestation. The broker tracks sessions, not machines.", + href: "/changelog", }, { - tag: "Launch", - title: "Self-hosted broker", - body: "One binary. SQLite-backed. Runs on a Pi. Your mesh, never the cloud's.", - href: "#", + tag: "Shipped", + title: "Multi-mesh daemon", + body: "v1.26.0 — one daemon, every mesh you've joined. Switch context with a flag. Self-host the broker in your VPC; same CLI, your URL.", + href: "/changelog", }, ];