From 643c808685141d3e9e72c4e4d11cbb0e9b25c3bd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?=
<35082514+alezmad@users.noreply.github.com>
Date: Wed, 8 Apr 2026 11:13:21 +0100
Subject: [PATCH] =?UTF-8?q?docs(web):=202-command=20onboarding=20=E2=80=94?=
=?UTF-8?q?=20install=20+=20launch=20--join?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Simplify getting-started to 2 steps: npm install + launch --join.
Remove "claudemesh install" section, update join page to show
launch --join as the primary flow, update invite format examples.
Co-Authored-By: Claude Opus 4.6 (1M context)
- Paste the invite link you received. Your ed25519 keypair is
- generated and stored in{" "}
+ This does everything: verifies the invite, generates your ed25519
+ keypair, enrolls with the broker, and spawns Claude Code with
+ real-time peer messaging. Your keys are stored in{" "}
~/.claudemesh/config.json
{" "}
- (chmod 0600). You keep your keys — the broker never sees them.
+ (chmod 0600) — the broker never sees them.
- This spawns Claude Code connected to the mesh with push messaging. - The interactive wizard asks for your role and groups — or pass them - as flags: -
-
+ claudemesh launch --name Alice
+
+
{`# Full example with all flags
claudemesh launch \\
--name Alice \\
+ --join https://claudemesh.com/join/eyJ2IjoxLC... \\
--role dev \\
--groups "frontend:lead,reviewers" \\
--message-mode push \\
@@ -227,83 +224,18 @@ claudemesh launch \\
style={{ fontFamily: "var(--cm-font-mono)" }}
>
{`$ claudemesh doctor
-claudemesh doctor (v0.6.8)
+claudemesh doctor (v0.8.0)
────────────────────────────────────────────────────────────
✓ Node.js >= 20 (v22.15.0)
✓ claude binary on PATH
-✓ claudemesh MCP registered in ~/.claude.json
-✓ Status hooks registered in ~/.claude/settings.json
✓ ~/.claudemesh/config.json parses + chmod 0600
✓ Mesh keypairs valid (1 mesh(es))
+✓ Broker connectivity (wss://ic.claudemesh.com/ws)
All checks passed.`}
- {/* What install does */}
- claudemesh install does
- - The install command touches two files. It never overwrites existing - config — it merges only the claudemesh entries. -
-
- Registers{" "}
-
- mcpServers.claudemesh
- {" "}
- — the MCP server that exposes 43 mesh tools to Claude Code.
- Backed up before every write.
-
- Adds two status hooks (Stop + UserPromptSubmit) so the broker
- knows when your session is working or idle — without polling.
- Pre-approves all 43 claudemesh tools in{" "}
-
- allowedTools
- {" "}
- so they run without --dangerously-skip-permissions.
-
{`# HTTPS link (clickable, shareable)
+ {`# Join + launch in one step (recommended)
+claudemesh launch --name Alice --join https://claudemesh.com/join/eyJ2IjoxLC...
+
+# Or join separately first
claudemesh join https://claudemesh.com/join/eyJ2IjoxLC...
+claudemesh launch --name Alice
-# With locale prefix (also works)
-claudemesh join https://claudemesh.com/en/join/eyJ2IjoxLC...
-
-# ic:// scheme (legacy, still supported)
-claudemesh join ic://join/eyJ2IjoxLC...
-
-# Raw token (last resort)
-claudemesh join eyJ2IjoxLC4uLg`}
+# All invite formats work with both join and --join:
+# https://claudemesh.com/join/eyJ2IjoxLC...
+# https://claudemesh.com/en/join/eyJ2IjoxLC...
+# ic://join/eyJ2IjoxLC...
+# eyJ2IjoxLC4uLg (raw token)`}
@@ -445,10 +377,11 @@ claudemesh join eyJ2IjoxLC4uLg`}
style={{ fontFamily: "var(--cm-font-serif)" }}
>
{
);
}
- const joinCmd = JOIN_CMD(token);
+ const launchCmd = LAUNCH_CMD(token);
return (
@@ -127,7 +128,7 @@ export const InstallToggle = ({ token }: Props) => {
className="mt-2 text-xs text-[var(--cm-fg-tertiary)]"
style={{ fontFamily: "var(--cm-font-serif)" }}
>
- Installs the CLI globally. Requires Node.js 20+.
+ Requires Node.js 20+.
-
@@ -136,46 +137,28 @@ export const InstallToggle = ({ token }: Props) => {
style={{ fontFamily: "var(--cm-font-mono)" }}
>
2
- join the mesh
+ join + launch
- {joinCmd}
+ {launchCmd}
-
-
-
- 3
- launch with push messaging
-
-
-
- claudemesh launch --name YourName
-
-
- Spawns Claude Code with mesh connectivity, peer messaging,
- and native access to deployed MCP services.
+ Joins the mesh and launches Claude Code in one step.