From 6caf916e6c9e3c58dbc043f14c6c9990ab35e68a Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Wed, 3 Jun 2026 09:06:19 -0400 Subject: [PATCH] feat(ui-flow): worker release and integration manifest JSON modal IPC (v0.8.700) Wire modal-open events and clear-integration-manifest-export-json for Phase 724 dedicated worker export mesh management. Co-authored-by: Cursor --- index.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/index.js b/index.js index 1bb8cb9..5366eb8 100644 --- a/index.js +++ b/index.js @@ -2521,6 +2521,16 @@ async function dispatchUiMessage (platform, msg, hooks = {}) { send({ type: 'worker-json-modal-opened' }) return true } + if (t === 'worker-release-json-modal-open') { + pushState() + send({ type: 'worker-release-json-modal-opened' }) + return true + } + if (t === 'integration-manifest-json-modal-open') { + pushState() + send({ type: 'integration-manifest-json-modal-opened' }) + return true + } if (t === 'sync-worker-release-json') { const out = await platform.pushWorkerReleaseJsonToMesh() pushState() @@ -2555,6 +2565,17 @@ async function dispatchUiMessage (platform, msg, hooks = {}) { } return true } + if (t === 'clear-integration-manifest-export-json') { + await platform.clearIntegrationManifestExportJsonExports() + pushState() + if (platform.mode === 'guild' && platform.activeChannelId) { + send({ + type: 'composer-focus-channel', + channelId: platform.activeChannelId + }) + } + return true + } if (t === 'bot-json-modal-open') { pushState() send({ type: 'bot-json-modal-opened' })