feat: anthropic-style mesh + invite redesign (wave 1 checkpoint)

Ships the user-visible friction fixes and the foundation for the v2
invite protocol. API wiring + CLI client + email UI ship in wave 2.

Meshes — shipped
- Drop global UNIQUE on mesh.slug; mesh.id is canonical everywhere
- Server derives slug from name; create form has no slug field
- Two users can freely name their mesh "platform"; no collision errors
- Migration 0017

Invites v1 — shipped (URL shortener, backward compatible)
- New invite.code column (base62, 8 chars, nullable unique index)
- createMyInvite mints both token + short code; returns shortUrl
- GET /api/public/invite-code/:code resolves short code to token
- New route /i/[code] server-redirects to /join/[token]
- Invite generator UI shows short URL; QR encodes short URL
- Advanced fields (role/maxUses/expiresInDays) collapsed under disclosure
- Migration 0018

Invites v2 — foundation (broker + DB only; API+CLI+Web wiring in wave 2)
- Broker: canonicalInviteV2, verifyInviteV2, sealRootKeyToRecipient
- Broker: POST /invites/:code/claim endpoint (atomic single-use accounting)
- Broker tests: invite-v2.test.ts (signature, expiry, revocation, exhaustion)
- DB: mesh.invite gains version/capabilityV2/claimedByPubkey columns
- DB: new mesh.pending_invite table for email invites
- Migration 0019
- Contract locked in docs/protocol.md §v2 + SPEC.md §14b

Consent landing — shipped
- /join/[token] redesigned: explicit role, inviter, mesh stats, consent
- New server components: invite-card, role-badge, inviter-line, consent-summary
- "Join [mesh] as [Role]" primary action (not just "Join")

Error surfacing — shipped
- handle() now parses {error} responses from hono route catch blocks
- onError fallback includes timestamp so handle() can match apiErrorSchema
- Real error messages reach the UI instead of "Something went wrong"

Docs
- SPEC.md §14b: v2 invite protocol
- docs/protocol.md: v2 claim wire format
- docs/roadmap.md: status
- .artifacts/specs/2026-04-10-anthropic-vision-meshes-invites.md

Deferred to wave 2/3
- API claim route wiring (packages/api)
- createMyInvite v2 capability generation
- Email invite mutation + Postmark delivery
- CLI v2 join flow (x25519 keypair + unseal)
- Web invite-generator email field + v2 display

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-04-10 13:41:11 +01:00
parent dbea96960f
commit c1fa3bcb5c
24 changed files with 1932 additions and 196 deletions

View File

@@ -366,6 +366,74 @@ the new peer and rebroadcasts presence.
Invite-link issuance: [`apps/cli/src/invite/`](../apps/cli/src/invite/).
### v2 invites (in progress)
v1 embeds the mesh root key inside the URL. v2 removes it: the URL is a
short opaque code, and the root key is sealed to a recipient-controlled
x25519 public key on claim. Both formats are accepted through v0.1.x;
v1 is removed at v0.2.0.
Canonical bytes signed by the mesh owner ed25519 secret:
```
v=2|mesh_id|invite_id|expires_at_unix|role|owner_pubkey_hex
```
User-visible URL: `https://claudemesh.com/i/{code}` (base62, 8 chars).
#### Claim endpoint
```
POST /api/public/invites/:code/claim
Content-Type: application/json
{
"recipient_x25519_pubkey": "<base64url>"
}
```
The recipient generates a fresh x25519 keypair (distinct from its
ed25519 identity) and sends the public half. The server never sees the
secret.
Success response:
```jsonc
{
"sealed_root_key": "<base64url>", // crypto_box_seal(root_key, recipient_pubkey)
"mesh_id": "<text>",
"member_id": "<text>",
"owner_pubkey": "<hex>", // mesh owner ed25519 pubkey
"canonical_v2": "v=2|..." // the signed bytes, for local verification
}
```
The recipient unseals with `crypto_box_seal_open` using its x25519
secret key, then verifies `canonical_v2` against `owner_pubkey`.
#### Error codes
| Status | Body `code` | Meaning |
|--------|-------------|---------|
| 400 | `malformed` | Body missing or `recipient_x25519_pubkey` not a valid 32-byte key |
| 400 | `bad_signature` | Stored `capability_v2` fails ed25519 verification against the mesh owner pubkey |
| 404 | `not_found` | No invite row matches `code` |
| 410 | `expired` | `expires_at` is in the past |
| 410 | `revoked` | `revoked_at` is set |
| 410 | `exhausted` | `used_count >= max_uses` |
The broker increments `used_count` and stores
`claimed_by_pubkey = recipient_x25519_pubkey` atomically with the
member row insert. A second claim against a single-use invite fails
with `410 exhausted`.
#### Email invites
A `pending_invite` row is created when an admin invites by email. The
email contains `https://claudemesh.com/i/{code}` — the same short URL
surface as link invites. On successful claim the broker sets
`pending_invite.accepted_at`.
---
## Self-hosting