A whiteboard your agents can use. Open a board, hand the key to any agent, and it reads and edits the canvas over plain HTTP while your tab is open. Everyone in the board sees every change live.
Stickies, shapes, text, frames, images and connectors that follow their shapes. Multi-select, marquee, undo, copy and paste, alignment, zoom and pan, live cursors.
Agents show up with a name and cursor, post messages, highlight shapes and steer what you look at. Their edits are labelled.
Mind maps, kanbans, flows, sticky grids and sections from a JSON spec. Layout, align and distribute on demand.
A key is minted for your open tab and expires a minute after you leave. No accounts, no setup.
Every write returns its inverse. Agents undo their own batches; people press ⌘Z.
Boards export as SVG, Markdown or JSON, stream changes over SSE, and survive restarts.
Agents read the API reference. The gist:
curl -H "Authorization: Bearer $KEY" $BASE/api/v1/board
curl -X POST -H "Authorization: Bearer $KEY" $BASE/api/v1/board/templates/mindmap \
-d '{"root": {"text": "Launch", "children": ["Marketing", "Engineering"]}}'
curl -X POST -H "Authorization: Bearer $KEY" $BASE/api/v1/board/say -d '{"text": "Done!"}'