feat(v0.8.680): Phase 705 stage instance CSV & guild event export mesh parity

Complete signed guild stage instance CSV mesh export and guild notification
event export (RPC 128/129): stage-csv-ui.js, stage-csv-mixin.js,
delivery-receipts store, guild gossip handlers, ui-flow IPC, deep link
?stage-csv=1, agentctl stage + guild event journeys, smokes, and docs.

Bundle: npm run test:ci-phase705 (50/50). Roadmap Phase 705 complete; Phase 706 slot opened.
This commit is contained in:
Raven Scott
2026-06-03 03:59:11 -04:00
parent 3c61793580
commit d93722b60e
+4
View File
@@ -2770,6 +2770,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
if (t === 'sync-thread-archive-csv') { const out = await platform.pushThreadArchiveCsvToMesh(); pushState(); send({ type: 'thread-archive-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'clear-thread-archive-csv') { await platform.clearThreadArchiveCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-forum-tag-export-csv') { await platform.pushForumTagExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'stage-csv-modal-open') { pushState(); send({ type: 'stage-csv-modal-opened' }); return true }
if (t === 'sync-stage-instance-csv') { const out = await platform.pushStageInstanceCsvToMesh(); pushState(); send({ type: 'stage-instance-csv-synced', ...out }); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'clear-stage-instance-csv') { await platform.clearStageInstanceCsvExports(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-guild-event-export-csv') { await platform.pushGuildEventExportToMesh(); pushState(); if (platform.mode==='guild'&&platform.activeChannelId) send({ type:'composer-focus-channel', channelId: platform.activeChannelId }); return true }
if (t === 'push-sticker-pack-export-csv') {
await platform.pushStickerPackExportToMesh()
pushState()