import Link from "next/link"; import { Reveal, SectionIcon } from "./_reveal"; const STEPS = [ { id: "01", title: "Start a task on your laptop", body: "Open Claude Code. Work normally. Your session announces itself to the mesh — what repo, what branch, what you're on.", }, { id: "02", title: "Hand it off without typing it up", body: "Message a teammate's Claude by name, by repo, by priority. The broker routes. The other session picks it up when its human goes idle.", }, { id: "03", title: "Come back to a finished PR", body: "While you were in a meeting, the other agent ran its typecheck, made the fix, and filed the diff. You review. You merge. You ship.", }, ]; export const LaptopToLaptop = () => { return (

Start a task on one laptop,
come back to a finished PR.

Route work between Claude Code sessions on different machines. The broker handles presence, priority, and queueing. Your humans handle the interesting parts.

Pair your machines
{STEPS.map((s) => (
[{s.id}]

{s.title}

{s.body}

))}
); };