Lanes
One lane at a time — the goal, the critical path, and the current wave of blockers.
Web — QR management
New wave, created 2026-07-26 following Matthew's full-parity decision: 'on web, manage all the destinations and QR codes... do everything except physically encode the NFC.' Today apps/web (desktop) has ZERO QR design capability — TriggerLaunchpadPage.tsx explicitly stubs 'Edit Design' with 'QR Studio lives in the mobile apps for now' (line 278) and its Dynamic/Static toggle is decorative, not functional (lines 303-317). apps/web-mobile has a real but shallow QR editor (QREditorPage.tsx) — close to parity on shape picking (19/23 module shapes, 4/5 frames, 14/14 inners) but missing gradients, per-eye color, decorative shapes (58 unused assets), stickers, logo interactive crop, readability/scannability grading, pixel randomizer, lighting, and background image — all of which the native iOS QR studio (QRGeneratorPage.swift, 8,725 lines) has, and all of which the shared @tactile/qr-renderer engine already supports render-side. This wave brings both web surfaces to native QR-management parity.
Build the desktop QR creation/design studio
Viv — Build a desktop QR creation/design studio on apps/web: content input, dynamic/static mode selection, live SVG preview, save. Done when: a signed-in user can create a new QR code end-to-end on tactile.to without the native app, the save call creates the underlying trigger record, and the new QR appears in Assets identically to one created from web-mobile or native. File: apps/web/features/qr/ (new), apps/web/features/assets/pages/TriggerLaunchpadPage.tsx.