shadow-claw 1.27.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.well-known/ai-catalog.json +11 -0
- package/.well-known/mcp/index.html +19 -0
- package/.well-known/mcp/server-card.json +52 -0
- package/.well-known/mcp/servers.json +15 -0
- package/.well-known/mcp.json +52 -0
- package/.well-known/oauth-protected-resource +10 -0
- package/.well-known/oauth-protected-resource.json +10 -0
- package/bin/assert-version-bump.mjs +61 -3
- package/bin/assert-version-bump.test.mjs +77 -1
- package/bin/build/build.mjs +116 -49
- package/bin/build/build.test.mjs +103 -0
- package/bin/cli.mjs +299 -237
- package/bin/cli.test.mjs +27 -0
- package/bin/commands/mcp.mjs +132 -2
- package/bin/commands/mcp.test.mjs +166 -0
- package/bin/commands/skills-index.mjs +139 -20
- package/bin/commands/skills-index.test.mjs +82 -0
- package/bin/utils/control-client.mjs +17 -0
- package/bin/utils/control-client.test.mjs +46 -0
- package/bin/version.mjs +208 -0
- package/bin/version.test.mjs +138 -0
- package/dist/electron/main.cjs +195 -185
- package/dist/lib/components/index.js +21 -21
- package/dist/lib/components/settings/shadow-claw-channel-config.js +1 -1
- package/dist/lib/components/settings/shadow-claw-control-plane.js +1 -1
- package/dist/lib/components/settings/shadow-claw-git.js +1 -1
- package/dist/lib/components/settings/shadow-claw-llm.js +1 -1
- package/dist/lib/components/settings/shadow-claw-networking.js +1 -1
- package/dist/lib/components/settings/shadow-claw-notifications.js +1 -1
- package/dist/lib/components/settings/shadow-claw-peerjs.js +1 -1
- package/dist/lib/components/settings/shadow-claw-storage.js +1 -1
- package/dist/lib/components/settings/shadow-claw-task-server.js +1 -1
- package/dist/lib/components/settings/shadow-claw-webvm.js +1 -1
- package/dist/lib/components/shadow-claw/shadow-claw.d.ts +1 -0
- package/dist/lib/components/shadow-claw/utils/setupAppLifecycle.d.ts +23 -0
- package/dist/lib/components/shadow-claw-channel-config.js +1 -1
- package/dist/lib/components/shadow-claw-channels.js +1 -1
- package/dist/lib/components/shadow-claw-chat.js +1 -1
- package/dist/lib/components/shadow-claw-control-plane.js +1 -1
- package/dist/lib/components/shadow-claw-conversations.js +1 -1
- package/dist/lib/components/shadow-claw-file-viewer.js +1 -1
- package/dist/lib/components/shadow-claw-files.js +1 -1
- package/dist/lib/components/shadow-claw-git.js +1 -1
- package/dist/lib/components/shadow-claw-llm.js +1 -1
- package/dist/lib/components/shadow-claw-networking.js +1 -1
- package/dist/lib/components/shadow-claw-notifications.js +1 -1
- package/dist/lib/components/shadow-claw-pages.js +1 -1
- package/dist/lib/components/shadow-claw-peerjs.js +1 -1
- package/dist/lib/components/shadow-claw-settings.js +1 -1
- package/dist/lib/components/shadow-claw-storage.js +1 -1
- package/dist/lib/components/shadow-claw-task-server.js +1 -1
- package/dist/lib/components/shadow-claw-tasks.js +1 -1
- package/dist/lib/components/shadow-claw-terminal.js +1 -1
- package/dist/lib/components/shadow-claw-tools.js +1 -1
- package/dist/lib/components/shadow-claw-webvm.js +1 -1
- package/dist/lib/components/shadow-claw.js +1 -1
- package/dist/lib/{configurePeerJs-oODzltaC.js → configurePeerJs-D8Ph0-A9.js} +2 -2
- package/dist/lib/{configurePeerJs-oODzltaC.js.map → configurePeerJs-D8Ph0-A9.js.map} +1 -1
- package/dist/lib/core/control-plane-client.d.ts +2 -0
- package/dist/lib/core/orchestrator/orchestrator.d.ts +10 -0
- package/dist/lib/core/orchestrator/utils/operations/channel.d.ts +2 -2
- package/dist/lib/core/utils/initControlPlane.d.ts +6 -0
- package/dist/lib/index.js +21 -21
- package/dist/lib/{initControlPlane-C2zURVIS.js → initControlPlane-BIrWmpzc.js} +76 -9
- package/dist/lib/initControlPlane-BIrWmpzc.js.map +1 -0
- package/dist/lib/{markdown-C6EHl9zs.js → markdown-DEUoM1c6.js} +2 -2
- package/dist/lib/{markdown-C6EHl9zs.js.map → markdown-DEUoM1c6.js.map} +1 -1
- package/dist/lib/{orchestrator-KRjx0eba.js → orchestrator-BtVj9bBB.js} +11 -10
- package/dist/lib/{orchestrator-KRjx0eba.js.map → orchestrator-BtVj9bBB.js.map} +1 -1
- package/dist/lib/{orchestrator-CACLa_Ro.js → orchestrator-CFCW-l1O.js} +52 -4
- package/dist/lib/orchestrator-CFCW-l1O.js.map +1 -0
- package/dist/lib/{peerjs-DFWOBcXf.js → peerjs-BoBkx9DJ.js} +23 -3
- package/dist/lib/peerjs-BoBkx9DJ.js.map +1 -0
- package/dist/lib/{push-client-_tiWQsCT.js → push-client-D6hbzDNV.js} +10 -4
- package/dist/lib/push-client-D6hbzDNV.js.map +1 -0
- package/dist/lib/{shadow-claw-6UHdiy4a.js → shadow-claw-Cuf2O5bZ.js} +71 -4
- package/dist/lib/shadow-claw-Cuf2O5bZ.js.map +1 -0
- package/dist/lib/{shadow-claw-channel-config-DmfwJc6G.js → shadow-claw-channel-config-BDPKt6Bd.js} +3 -3
- package/dist/lib/{shadow-claw-channel-config-DmfwJc6G.js.map → shadow-claw-channel-config-BDPKt6Bd.js.map} +1 -1
- package/dist/lib/{shadow-claw-channels-1N6Jl-By.js → shadow-claw-channels-BsP5JABM.js} +2 -2
- package/dist/lib/{shadow-claw-channels-1N6Jl-By.js.map → shadow-claw-channels-BsP5JABM.js.map} +1 -1
- package/dist/lib/{shadow-claw-chat-BMoqQJRK.js → shadow-claw-chat-Cam2lX4k.js} +4 -4
- package/dist/lib/{shadow-claw-chat-BMoqQJRK.js.map → shadow-claw-chat-Cam2lX4k.js.map} +1 -1
- package/dist/lib/{shadow-claw-control-plane-UG0o7pCz.js → shadow-claw-control-plane-DB2qcCFs.js} +20 -10
- package/dist/lib/shadow-claw-control-plane-DB2qcCFs.js.map +1 -0
- package/dist/lib/{shadow-claw-conversations-BwXep3iu.js → shadow-claw-conversations-C9Vf4XGx.js} +2 -2
- package/dist/lib/{shadow-claw-conversations-BwXep3iu.js.map → shadow-claw-conversations-C9Vf4XGx.js.map} +1 -1
- package/dist/lib/{shadow-claw-file-viewer-DUxzVxDT.js → shadow-claw-file-viewer-B4HYiI0v.js} +3 -3
- package/dist/lib/{shadow-claw-file-viewer-DUxzVxDT.js.map → shadow-claw-file-viewer-B4HYiI0v.js.map} +1 -1
- package/dist/lib/{shadow-claw-files-DIREEnT2.js → shadow-claw-files-DVROUESO.js} +2 -2
- package/dist/lib/{shadow-claw-files-DIREEnT2.js.map → shadow-claw-files-DVROUESO.js.map} +1 -1
- package/dist/lib/{shadow-claw-git-Bg1SWgsF.js → shadow-claw-git-BqrO7cHJ.js} +3 -3
- package/dist/lib/{shadow-claw-git-Bg1SWgsF.js.map → shadow-claw-git-BqrO7cHJ.js.map} +1 -1
- package/dist/lib/{shadow-claw-llm-CazBrVpM.js → shadow-claw-llm-BexUQdYo.js} +2 -2
- package/dist/lib/{shadow-claw-llm-CazBrVpM.js.map → shadow-claw-llm-BexUQdYo.js.map} +1 -1
- package/dist/lib/{shadow-claw-networking-Df85tCbO.js → shadow-claw-networking-CfXRGpUD.js} +2 -2
- package/dist/lib/{shadow-claw-networking-Df85tCbO.js.map → shadow-claw-networking-CfXRGpUD.js.map} +1 -1
- package/dist/lib/{shadow-claw-notifications-v62FryTc.js → shadow-claw-notifications-C9KPMgx_.js} +2 -2
- package/dist/lib/{shadow-claw-notifications-v62FryTc.js.map → shadow-claw-notifications-C9KPMgx_.js.map} +1 -1
- package/dist/lib/{shadow-claw-pages-BgPyIEZO.js → shadow-claw-pages-CGzGXmrI.js} +3 -3
- package/dist/lib/{shadow-claw-pages-BgPyIEZO.js.map → shadow-claw-pages-CGzGXmrI.js.map} +1 -1
- package/dist/lib/{shadow-claw-peerjs-xkBXILed.js → shadow-claw-peerjs-B0ZB7yhB.js} +3 -3
- package/dist/lib/{shadow-claw-peerjs-xkBXILed.js.map → shadow-claw-peerjs-B0ZB7yhB.js.map} +1 -1
- package/dist/lib/{shadow-claw-settings-CN89xRVU.js → shadow-claw-settings-DBfMZdDS.js} +2 -2
- package/dist/lib/{shadow-claw-settings-CN89xRVU.js.map → shadow-claw-settings-DBfMZdDS.js.map} +1 -1
- package/dist/lib/{shadow-claw-storage-VnhcObCe.js → shadow-claw-storage-CM-w6mgG.js} +2 -2
- package/dist/lib/{shadow-claw-storage-VnhcObCe.js.map → shadow-claw-storage-CM-w6mgG.js.map} +1 -1
- package/dist/lib/{shadow-claw-task-server-jgEC2hHB.js → shadow-claw-task-server-DV4b1g2-.js} +4 -2
- package/dist/lib/{shadow-claw-task-server-jgEC2hHB.js.map → shadow-claw-task-server-DV4b1g2-.js.map} +1 -1
- package/dist/lib/{shadow-claw-tasks-i_evIufy.js → shadow-claw-tasks-K-foOHSE.js} +3 -3
- package/dist/lib/{shadow-claw-tasks-i_evIufy.js.map → shadow-claw-tasks-K-foOHSE.js.map} +1 -1
- package/dist/lib/{shadow-claw-terminal-CwScROlu.js → shadow-claw-terminal-CpAknKyA.js} +2 -2
- package/dist/lib/{shadow-claw-terminal-CwScROlu.js.map → shadow-claw-terminal-CpAknKyA.js.map} +1 -1
- package/dist/lib/{shadow-claw-tools-DD3fyXP4.js → shadow-claw-tools-D98XZ0Ep.js} +3 -3
- package/dist/lib/{shadow-claw-tools-DD3fyXP4.js.map → shadow-claw-tools-D98XZ0Ep.js.map} +1 -1
- package/dist/lib/{shadow-claw-webvm-DbJq4I3-.js → shadow-claw-webvm-DLOb8dMI.js} +2 -2
- package/dist/lib/{shadow-claw-webvm-DbJq4I3-.js.map → shadow-claw-webvm-DLOb8dMI.js.map} +1 -1
- package/dist/lib/subsystems/channels/imessage.d.ts +1 -0
- package/dist/lib/subsystems/channels/peerjs.d.ts +1 -0
- package/dist/lib/subsystems/channels/telegram.d.ts +1 -0
- package/dist/lib/subsystems/channels/types.d.ts +2 -0
- package/dist/lib/subsystems/notifications/push-client.d.ts +1 -1
- package/dist/lib/{syncWebMcpRegistration-DNLnQ-jz.js → syncWebMcpRegistration-NspKefOI.js} +2 -2
- package/dist/lib/{syncWebMcpRegistration-DNLnQ-jz.js.map → syncWebMcpRegistration-NspKefOI.js.map} +1 -1
- package/dist/public/.well-known/ai-catalog.json +11 -0
- package/dist/public/.well-known/mcp/index.html +19 -0
- package/dist/public/.well-known/mcp/server-card.json +52 -0
- package/dist/public/.well-known/mcp/servers.json +15 -0
- package/dist/public/.well-known/mcp.json +52 -0
- package/dist/public/.well-known/oauth-protected-resource +10 -0
- package/dist/public/.well-known/oauth-protected-resource.json +10 -0
- package/dist/public/404.html +28 -1
- package/dist/public/AGENTS.md +1 -1
- package/dist/public/agent.worker.js +1 -1
- package/dist/public/{configurePeerJs-BqgeBjP7.js → configurePeerJs-BhBokQlC.js} +1 -1
- package/dist/public/docs/example/article/index.html +3 -3
- package/dist/public/docs/publishing/index.html +3 -3
- package/dist/public/docs/skill-creator/index.html +3 -3
- package/dist/public/docs/subsystems/cli.md +11 -8
- package/dist/public/docs/subsystems/mcp-server.md +1 -0
- package/dist/public/docs/subsystems/notifications.md +10 -0
- package/dist/public/{e2e-bridge-Ceqr5kGc.js → e2e-bridge-DcBoeFvd.js} +1 -1
- package/dist/public/{file-viewer-C-6Jc_tb.js → file-viewer-CKtVC9Ix.js} +1 -1
- package/dist/public/index.css +1 -1
- package/dist/public/index.html +3 -3
- package/dist/public/index.js +1 -1
- package/dist/public/initControlPlane-Bi8ouFEb.js +1 -0
- package/dist/public/llms.txt +36 -1
- package/dist/public/main/index.html +3 -3
- package/dist/public/main/memory/index.html +3 -3
- package/dist/public/{markdown-C3M4OW_A.js → markdown-C-hCVJtc.js} +1 -1
- package/dist/public/orchestrator-8qNGfw8r.js +15 -0
- package/dist/public/{orchestrator-DHjdLtqa.js → orchestrator-BT3Ks5ip.js} +2 -2
- package/dist/public/peerjs-DfhwEiiq.js +1 -0
- package/dist/public/push-client-BVLrE9pK.js +1 -0
- package/dist/public/service-worker/fetch-proxy.js +1 -1
- package/dist/public/service-worker.js +1 -1
- package/dist/public/{shadow-claw-EAt2ml5Y.js → shadow-claw-DCjxNDCX.js} +3 -3
- package/dist/public/{shadow-claw-channels-XsfuWFF8.js → shadow-claw-channels-CITDrqMl.js} +1 -1
- package/dist/public/{shadow-claw-chat-CbSaOZ4q.js → shadow-claw-chat-BQrSgSKF.js} +1 -1
- package/dist/public/{shadow-claw-control-plane-DHvN3Ukg.js → shadow-claw-control-plane-Cp001OY0.js} +2 -2
- package/dist/public/{shadow-claw-conversations-BWs5VVfs.js → shadow-claw-conversations-EhX4RvIj.js} +1 -1
- package/dist/public/{shadow-claw-file-viewer-BWsoW5QS.js → shadow-claw-file-viewer-DiQXIjZD.js} +1 -1
- package/dist/public/{shadow-claw-files-CG7MqWiV.js → shadow-claw-files-lkTnSJsn.js} +1 -1
- package/dist/public/{shadow-claw-git-DBRPZNav.js → shadow-claw-git-BlcA_z8x.js} +2 -2
- package/dist/public/{shadow-claw-llm-DMvLgKXo.js → shadow-claw-llm-CW16X9Rg.js} +1 -1
- package/dist/public/{shadow-claw-networking-Dd8Rw31D.js → shadow-claw-networking-ySsMBY_i.js} +1 -1
- package/dist/public/{shadow-claw-notifications-Dbevj-lq.js → shadow-claw-notifications-CyV2zCQ8.js} +1 -1
- package/dist/public/{shadow-claw-pages-3_lQAv0t.js → shadow-claw-pages-Cx7cF9ah.js} +1 -1
- package/dist/public/{shadow-claw-settings-t8TIlgrM.js → shadow-claw-settings-zm4PHHGi.js} +2 -2
- package/dist/public/{shadow-claw-storage-CfEXoSIE.js → shadow-claw-storage-dy9JAEGd.js} +1 -1
- package/dist/public/{shadow-claw-task-server-DxQSsgRZ.js → shadow-claw-task-server-Bleww48s.js} +2 -2
- package/dist/public/{shadow-claw-tasks-DNpicQwz.js → shadow-claw-tasks-CTI5oaLN.js} +1 -1
- package/dist/public/{shadow-claw-terminal-DpY6zU_r.js → shadow-claw-terminal-mZ3i4HaQ.js} +1 -1
- package/dist/public/{shadow-claw-tools-WSwWohnk.js → shadow-claw-tools-B_nuk8Zl.js} +1 -1
- package/dist/public/{shadow-claw-webvm-CP6oFjg5.js → shadow-claw-webvm-Vl_jH5YL.js} +1 -1
- package/dist/public/{syncWebMcpRegistration-DOn9gLnD.js → syncWebMcpRegistration-n2vAMJ4w.js} +1 -1
- package/dist/server.js +197 -187
- package/package.json +2 -1
- package/src/components/settings/shadow-claw-control-plane/shadow-claw-control-plane.test.ts +6 -0
- package/src/components/settings/shadow-claw-control-plane/shadow-claw-control-plane.ts +19 -9
- package/src/components/settings/shadow-claw-task-server/shadow-claw-task-server.test.ts +14 -0
- package/src/components/settings/shadow-claw-task-server/shadow-claw-task-server.ts +12 -0
- package/src/components/shadow-claw/shadow-claw.ts +6 -0
- package/src/components/shadow-claw/utils/bindEventListeners.test.ts +57 -0
- package/src/components/shadow-claw/utils/bindEventListeners.ts +14 -0
- package/src/components/shadow-claw/utils/setupAppLifecycle.test.ts +201 -0
- package/src/components/shadow-claw/utils/setupAppLifecycle.ts +101 -0
- package/src/core/control-plane-client.test.ts +82 -1
- package/src/core/control-plane-client.ts +35 -1
- package/src/core/orchestrator/orchestrator.test.ts +49 -0
- package/src/core/orchestrator/orchestrator.ts +43 -0
- package/src/core/orchestrator/utils/operations/channel.test.ts +17 -0
- package/src/core/orchestrator/utils/operations/channel.ts +11 -5
- package/src/core/orchestrator/utils/operations/task.test.ts +26 -0
- package/src/core/orchestrator/utils/operations/task.ts +8 -1
- package/src/core/utils/initControlPlane.test.ts +138 -0
- package/src/core/utils/initControlPlane.ts +82 -0
- package/src/core/utils/initializeApp.test.ts +27 -1
- package/src/core/utils/initializeApp.ts +6 -13
- package/src/server/mcp/mcp-server.test.ts +6 -0
- package/src/server/mcp/mcp-server.ts +2 -1
- package/src/server/mcp/tools/built-in-tools.ts +88 -1
- package/src/server/mcp/tools/client-tool-relay.ts +6 -0
- package/src/server/mcp/tools/mcp-tools.test.ts +128 -0
- package/src/server/openapi/openapi-coverage.test.ts +2 -1
- package/src/server/openapi/openapi-spec.ts +2 -1
- package/src/server/openapi/paths/mcp.ts +104 -0
- package/src/server/openapi/paths/push.ts +3 -0
- package/src/server/routes/mcp.test.ts +92 -0
- package/src/server/routes/mcp.ts +138 -2
- package/src/server/utils/packageVersion.test.ts +10 -0
- package/src/server/utils/packageVersion.ts +32 -0
- package/src/service-worker/fetch-proxy-rules.test.ts +73 -0
- package/src/service-worker/fetch-proxy-rules.ts +44 -0
- package/src/service-worker/fetch-proxy.ts +1 -1
- package/src/subsystems/channels/imessage.test.ts +36 -0
- package/src/subsystems/channels/imessage.ts +11 -0
- package/src/subsystems/channels/peerjs.test.ts +56 -0
- package/src/subsystems/channels/peerjs.ts +29 -0
- package/src/subsystems/channels/telegram.test.ts +38 -0
- package/src/subsystems/channels/telegram.ts +13 -0
- package/src/subsystems/channels/types.ts +2 -0
- package/src/subsystems/notifications/push-client.test.ts +70 -0
- package/src/subsystems/notifications/push-client.ts +28 -3
- package/src/subsystems/notifications/push-routes.test.ts +82 -0
- package/src/subsystems/notifications/push-routes.ts +70 -16
- package/src/subsystems/notifications/push-store.test.ts +59 -0
- package/src/subsystems/notifications/push-store.ts +113 -19
- package/src/testing/jest-setup.ts +15 -0
- package/dist/lib/initControlPlane-C2zURVIS.js.map +0 -1
- package/dist/lib/orchestrator-CACLa_Ro.js.map +0 -1
- package/dist/lib/peerjs-DFWOBcXf.js.map +0 -1
- package/dist/lib/push-client-_tiWQsCT.js.map +0 -1
- package/dist/lib/shadow-claw-6UHdiy4a.js.map +0 -1
- package/dist/lib/shadow-claw-control-plane-UG0o7pCz.js.map +0 -1
- package/dist/public/initControlPlane-BN9cWyO0.js +0 -1
- package/dist/public/orchestrator-CMbCTjBf.js +0 -15
- package/dist/public/peerjs-DUCKH-m9.js +0 -1
- package/dist/public/push-client-D0lkwrK0.js +0 -1
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
import ShadowClawElement from "./shadow-claw-element.js";
|
|
2
2
|
import { a as showSuccess, i as showInfo, l as toastStore, o as showToast, r as showError, s as showWarning } from "../toast-DZ6r7_YI.js";
|
|
3
|
-
import { t as ShadowClaw } from "../shadow-claw-
|
|
4
|
-
import { t as ShadowClawChat } from "../shadow-claw-chat-
|
|
3
|
+
import { t as ShadowClaw } from "../shadow-claw-Cuf2O5bZ.js";
|
|
4
|
+
import { t as ShadowClawChat } from "../shadow-claw-chat-Cam2lX4k.js";
|
|
5
5
|
import { t as ShadowClawA2UI } from "../shadow-claw-a2ui-CpZUTzlh.js";
|
|
6
6
|
import { t as ShadowClawPageHeaderActionButton } from "../shadow-claw-page-header-action-button-BXXm5b5N.js";
|
|
7
7
|
import { ShadowClawA2UIInterceptor } from "./shadow-claw-a2ui-interceptor.js";
|
|
8
8
|
import { ShadowClawDialog } from "./shadow-claw-dialog.js";
|
|
9
9
|
import { t as ShadowClawPageHeader } from "../shadow-claw-page-header-Cti2fzf-.js";
|
|
10
|
-
import { t as ShadowClawFiles } from "../shadow-claw-files-
|
|
10
|
+
import { t as ShadowClawFiles } from "../shadow-claw-files-DVROUESO.js";
|
|
11
11
|
import { t as ShadowClawEmptyState } from "../shadow-claw-empty-state-DPfDqaMA.js";
|
|
12
|
-
import { t as ShadowClawFileViewer } from "../shadow-claw-file-viewer-
|
|
12
|
+
import { t as ShadowClawFileViewer } from "../shadow-claw-file-viewer-B4HYiI0v.js";
|
|
13
13
|
import { t as ShadowClawPdfViewer } from "../shadow-claw-pdf-viewer-D3leDhRq.js";
|
|
14
|
-
import { t as ShadowClawTasks } from "../shadow-claw-tasks-
|
|
15
|
-
import { n as ShadowClawTerminal } from "../shadow-claw-terminal-
|
|
16
|
-
import { t as ShadowClawPages } from "../shadow-claw-pages-
|
|
17
|
-
import { t as ShadowClawSettings } from "../shadow-claw-settings-
|
|
18
|
-
import { t as ShadowClawPeerJs } from "../shadow-claw-peerjs-
|
|
19
|
-
import { t as ShadowClawChannelConfig } from "../shadow-claw-channel-config-
|
|
20
|
-
import { t as ShadowClawChannels } from "../shadow-claw-channels-
|
|
14
|
+
import { t as ShadowClawTasks } from "../shadow-claw-tasks-K-foOHSE.js";
|
|
15
|
+
import { n as ShadowClawTerminal } from "../shadow-claw-terminal-CpAknKyA.js";
|
|
16
|
+
import { t as ShadowClawPages } from "../shadow-claw-pages-CGzGXmrI.js";
|
|
17
|
+
import { t as ShadowClawSettings } from "../shadow-claw-settings-DBfMZdDS.js";
|
|
18
|
+
import { t as ShadowClawPeerJs } from "../shadow-claw-peerjs-B0ZB7yhB.js";
|
|
19
|
+
import { t as ShadowClawChannelConfig } from "../shadow-claw-channel-config-BDPKt6Bd.js";
|
|
20
|
+
import { t as ShadowClawChannels } from "../shadow-claw-channels-BsP5JABM.js";
|
|
21
21
|
import { t as ShadowClawProviderModelPicker } from "../shadow-claw-provider-model-picker-CsA-507a.js";
|
|
22
22
|
import { t as ShadowClawProviderModuleSettings } from "../shadow-claw-provider-module-settings-3sCTnCSp.js";
|
|
23
|
-
import { t as ShadowClawConversations } from "../shadow-claw-conversations-
|
|
23
|
+
import { t as ShadowClawConversations } from "../shadow-claw-conversations-C9Vf4XGx.js";
|
|
24
24
|
import { t as ShadowClawToast } from "../shadow-claw-toast-C8oAkrMC.js";
|
|
25
|
-
import { t as ShadowClawTools } from "../shadow-claw-tools-
|
|
25
|
+
import { t as ShadowClawTools } from "../shadow-claw-tools-D98XZ0Ep.js";
|
|
26
26
|
import { t as ShadowClawActions } from "../shadow-claw-actions-G99P9oxr.js";
|
|
27
27
|
import { t as ShadowClawCard } from "../shadow-claw-card-D9azfSMu.js";
|
|
28
28
|
import { t as ShadowClawAccounts } from "../shadow-claw-accounts-03oJ__XC.js";
|
|
29
|
-
import { t as ShadowClawControlPlane } from "../shadow-claw-control-plane-
|
|
30
|
-
import { t as ShadowClawGit } from "../shadow-claw-git-
|
|
29
|
+
import { t as ShadowClawControlPlane } from "../shadow-claw-control-plane-DB2qcCFs.js";
|
|
30
|
+
import { t as ShadowClawGit } from "../shadow-claw-git-BqrO7cHJ.js";
|
|
31
31
|
import { t as ShadowClawIntegrations } from "../shadow-claw-integrations-Ds-CLPhj.js";
|
|
32
|
-
import { t as ShadowClawLlm } from "../shadow-claw-llm-
|
|
32
|
+
import { t as ShadowClawLlm } from "../shadow-claw-llm-BexUQdYo.js";
|
|
33
33
|
import { t as ShadowClawMcpRemote } from "../shadow-claw-mcp-remote-CT5Q-54E.js";
|
|
34
|
-
import { t as ShadowClawNetworking } from "../shadow-claw-networking-
|
|
35
|
-
import { t as ShadowClawNotifications } from "../shadow-claw-notifications-
|
|
36
|
-
import { t as ShadowClawStorage } from "../shadow-claw-storage-
|
|
37
|
-
import { t as ShadowClawTaskServer } from "../shadow-claw-task-server-
|
|
38
|
-
import { t as ShadowClawWebvm } from "../shadow-claw-webvm-
|
|
34
|
+
import { t as ShadowClawNetworking } from "../shadow-claw-networking-CfXRGpUD.js";
|
|
35
|
+
import { t as ShadowClawNotifications } from "../shadow-claw-notifications-C9KPMgx_.js";
|
|
36
|
+
import { t as ShadowClawStorage } from "../shadow-claw-storage-CM-w6mgG.js";
|
|
37
|
+
import { t as ShadowClawTaskServer } from "../shadow-claw-task-server-DV4b1g2-.js";
|
|
38
|
+
import { t as ShadowClawWebvm } from "../shadow-claw-webvm-DLOb8dMI.js";
|
|
39
39
|
|
|
40
40
|
export { ShadowClaw, ShadowClawA2UI, ShadowClawA2UIInterceptor, ShadowClawAccounts, ShadowClawActions, ShadowClawCard, ShadowClawChannelConfig, ShadowClawChannels, ShadowClawChat, ShadowClawControlPlane, ShadowClawConversations, ShadowClawDialog, ShadowClawElement, ShadowClawEmptyState, ShadowClawFileViewer, ShadowClawFiles, ShadowClawGit, ShadowClawIntegrations, ShadowClawLlm, ShadowClawMcpRemote, ShadowClawNetworking, ShadowClawNotifications, ShadowClawPageHeader, ShadowClawPageHeaderActionButton, ShadowClawPages, ShadowClawPdfViewer, ShadowClawPeerJs, ShadowClawProviderModelPicker, ShadowClawProviderModuleSettings, ShadowClawSettings, ShadowClawStorage, ShadowClawTaskServer, ShadowClawTasks, ShadowClawTerminal, ShadowClawToast, ShadowClawTools, ShadowClawWebvm, showError, showInfo, showSuccess, showToast, showWarning, toastStore };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { n as getControlPlaneTargetAddressSpace, t as ShadowClawControlPlane } from "../../shadow-claw-control-plane-
|
|
1
|
+
import { n as getControlPlaneTargetAddressSpace, t as ShadowClawControlPlane } from "../../shadow-claw-control-plane-DB2qcCFs.js";
|
|
2
2
|
|
|
3
3
|
export { ShadowClawControlPlane, getControlPlaneTargetAddressSpace };
|
|
@@ -28,6 +28,7 @@ export declare class ShadowClaw extends ShadowClawElement {
|
|
|
28
28
|
terminalVisible: boolean;
|
|
29
29
|
vmStatus: VMStatus;
|
|
30
30
|
vmStatusCleanup: (() => void) | null;
|
|
31
|
+
appLifecycleCleanup: (() => void) | null;
|
|
31
32
|
constructor();
|
|
32
33
|
connectedCallback(): Promise<void>;
|
|
33
34
|
disconnectedCallback(): void;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ShadowClaw — App Lifecycle & Connection Health Management
|
|
3
|
+
*
|
|
4
|
+
* Listens for mobile sleep / wake, tab switching, and network changes:
|
|
5
|
+
* - visibilitychange: detects when the app/tab is backgrounded or brought back to foreground.
|
|
6
|
+
* If the app was backgrounded for longer than minSleepDurationMs (default: 1000ms),
|
|
7
|
+
* it indicates the device went to sleep or user switched away, requiring forced reconnection.
|
|
8
|
+
* - pageshow: handles bfcache restoration and page reveal.
|
|
9
|
+
* - focus: handles window/tab focus.
|
|
10
|
+
* - online: handles network connectivity resumption.
|
|
11
|
+
*
|
|
12
|
+
* Coalesces rapid succession of resume events via a debounce window (default: 250ms).
|
|
13
|
+
*/
|
|
14
|
+
export interface AppLifecycleOptions {
|
|
15
|
+
debounceMs?: number;
|
|
16
|
+
minSleepDurationMs?: number;
|
|
17
|
+
}
|
|
18
|
+
export interface MinimalOrchestrator {
|
|
19
|
+
ensureAllConnections(options?: {
|
|
20
|
+
force?: boolean;
|
|
21
|
+
}): Promise<void>;
|
|
22
|
+
}
|
|
23
|
+
export declare function setupAppLifecycle(win: Window, doc: Document, orchestrator: MinimalOrchestrator, options?: AppLifecycleOptions): () => void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { n as getControlPlaneTargetAddressSpace, t as ShadowClawControlPlane } from "../shadow-claw-control-plane-
|
|
1
|
+
import { n as getControlPlaneTargetAddressSpace, t as ShadowClawControlPlane } from "../shadow-claw-control-plane-DB2qcCFs.js";
|
|
2
2
|
|
|
3
3
|
export { ShadowClawControlPlane, getControlPlaneTargetAddressSpace };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { n as ShadowClawTerminal, t as AUTO_SCROLL_BOTTOM_THRESHOLD_PX } from "../shadow-claw-terminal-
|
|
1
|
+
import { n as ShadowClawTerminal, t as AUTO_SCROLL_BOTTOM_THRESHOLD_PX } from "../shadow-claw-terminal-CpAknKyA.js";
|
|
2
2
|
|
|
3
3
|
export { AUTO_SCROLL_BOTTOM_THRESHOLD_PX, ShadowClawTerminal };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as ShadowClaw } from "../shadow-claw-
|
|
1
|
+
import { t as ShadowClaw } from "../shadow-claw-Cuf2O5bZ.js";
|
|
2
2
|
import { n as MAX_SIDEBAR_WIDTH_PX, r as MIN_SIDEBAR_WIDTH_PX, t as DEFAULT_SIDEBAR_WIDTH_PX } from "../constants-BxxDX8j_.js";
|
|
3
3
|
|
|
4
4
|
export { DEFAULT_SIDEBAR_WIDTH_PX, MAX_SIDEBAR_WIDTH_PX, MIN_SIDEBAR_WIDTH_PX, ShadowClaw };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as CONFIG_KEYS } from "./config--CFrw3J3.js";
|
|
2
|
-
import { dt as getChannelEnabled, yt as normalizeStringList } from "./orchestrator-
|
|
2
|
+
import { dt as getChannelEnabled, yt as normalizeStringList } from "./orchestrator-BtVj9bBB.js";
|
|
3
3
|
import { t as setConfig } from "./setConfig-BFED5CXn.js";
|
|
4
4
|
|
|
5
5
|
//#region src/core/orchestrator/utils/configurePeerJs.ts
|
|
@@ -35,4 +35,4 @@ async function configurePeerJs(orchestrator, db, myPeerId, trustedPeerIds, serve
|
|
|
35
35
|
|
|
36
36
|
//#endregion
|
|
37
37
|
export { configurePeerJs as t };
|
|
38
|
-
//# sourceMappingURL=configurePeerJs-
|
|
38
|
+
//# sourceMappingURL=configurePeerJs-D8Ph0-A9.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configurePeerJs-
|
|
1
|
+
{"version":3,"file":"configurePeerJs-D8Ph0-A9.js","names":[],"sources":["../../src/core/orchestrator/utils/configurePeerJs.ts"],"sourcesContent":["import { CONFIG_KEYS } from \"../../../config/config.js\";\nimport { setConfig } from \"../../../db/setConfig.js\";\nimport { normalizeStringList } from \"./normalizeStringList.js\";\nimport { getChannelEnabled } from \"./operations/channel.js\";\n\nimport type { ShadowClawDatabase } from \"../../../db/db.js\";\nimport type { Orchestrator } from \"../orchestrator.js\";\n\nexport async function configurePeerJs(\n orchestrator: Orchestrator,\n db: ShadowClawDatabase,\n myPeerId: string,\n trustedPeerIds: string[],\n serverHost = \"\",\n serverPort = 0,\n serverPath = \"\",\n serverSecure = true,\n): Promise<void> {\n const normalizedMyPeerId = myPeerId.trim();\n const normalizedTrustedPeerIds = normalizeStringList(trustedPeerIds);\n const normalizedServerHost = serverHost.trim();\n const normalizedServerPort = Number.isFinite(serverPort)\n ? Math.max(0, Math.floor(serverPort))\n : 0;\n\n const normalizedServerPath = serverPath.trim();\n const normalizedServerSecure = !!serverSecure;\n\n orchestrator.peerjsMyPeerId = normalizedMyPeerId;\n orchestrator.peerjsTrustedPeerIds = normalizedTrustedPeerIds;\n orchestrator.peerjsServerHost = normalizedServerHost;\n orchestrator.peerjsServerPort = normalizedServerPort;\n orchestrator.peerjsServerPath = normalizedServerPath;\n orchestrator.peerjsServerSecure = normalizedServerSecure;\n\n await setConfig(db, CONFIG_KEYS.PEERJS_MY_PEER_ID, normalizedMyPeerId);\n await setConfig(\n db,\n CONFIG_KEYS.PEERJS_TRUSTED_PEER_IDS,\n JSON.stringify(normalizedTrustedPeerIds),\n );\n\n await setConfig(db, CONFIG_KEYS.PEERJS_SERVER_HOST, normalizedServerHost);\n await setConfig(\n db,\n CONFIG_KEYS.PEERJS_SERVER_PORT,\n normalizedServerPort ? String(normalizedServerPort) : \"\",\n );\n\n await setConfig(db, CONFIG_KEYS.PEERJS_SERVER_PATH, normalizedServerPath);\n await setConfig(\n db,\n CONFIG_KEYS.PEERJS_SERVER_SECURE,\n normalizedServerSecure ? \"true\" : \"false\",\n );\n\n const serverConfig = normalizedServerHost\n ? {\n host: normalizedServerHost,\n path: normalizedServerPath || undefined,\n port: normalizedServerPort || undefined,\n secure: normalizedServerSecure,\n }\n : {};\n\n orchestrator.peerjs.stop();\n orchestrator.peerjs.configure(\n normalizedMyPeerId,\n normalizedTrustedPeerIds,\n serverConfig,\n );\n\n if (normalizedMyPeerId && getChannelEnabled(orchestrator, \"peerjs\")) {\n orchestrator.peerjs.start();\n }\n}\n"],"mappings":";;;;;AAQA,eAAsB,gBACpB,cACA,IACA,UACA,gBACA,aAAa,IACb,aAAa,GACb,aAAa,IACb,eAAe,MACA;CACf,MAAM,qBAAqB,SAAS,KAAK;CACzC,MAAM,2BAA2B,oBAAoB,cAAc;CACnE,MAAM,uBAAuB,WAAW,KAAK;CAC7C,MAAM,uBAAuB,OAAO,SAAS,UAAU,IACnD,KAAK,IAAI,GAAG,KAAK,MAAM,UAAU,CAAC,IAClC;CAEJ,MAAM,uBAAuB,WAAW,KAAK;CAC7C,MAAM,yBAAyB,CAAC,CAAC;CAEjC,aAAa,iBAAiB;CAC9B,aAAa,uBAAuB;CACpC,aAAa,mBAAmB;CAChC,aAAa,mBAAmB;CAChC,aAAa,mBAAmB;CAChC,aAAa,qBAAqB;CAElC,MAAM,UAAU,IAAI,YAAY,mBAAmB,kBAAkB;CACrE,MAAM,UACJ,IACA,YAAY,yBACZ,KAAK,UAAU,wBAAwB,CACzC;CAEA,MAAM,UAAU,IAAI,YAAY,oBAAoB,oBAAoB;CACxE,MAAM,UACJ,IACA,YAAY,oBACZ,uBAAuB,OAAO,oBAAoB,IAAI,EACxD;CAEA,MAAM,UAAU,IAAI,YAAY,oBAAoB,oBAAoB;CACxE,MAAM,UACJ,IACA,YAAY,sBACZ,yBAAyB,SAAS,OACpC;CAEA,MAAM,eAAe,uBACjB;EACE,MAAM;EACN,MAAM,wBAAwB;EAC9B,MAAM,wBAAwB;EAC9B,QAAQ;CACV,IACA,CAAC;CAEL,aAAa,OAAO,KAAK;CACzB,aAAa,OAAO,UAClB,oBACA,0BACA,YACF;CAEA,IAAI,sBAAsB,kBAAkB,cAAc,QAAQ,GAChE,aAAa,OAAO,MAAM;AAE9B"}
|
|
@@ -53,9 +53,11 @@ export declare class ControlPlaneClient {
|
|
|
53
53
|
private _state;
|
|
54
54
|
constructor(options: ControlPlaneClientOptions);
|
|
55
55
|
get transport(): ControlPlaneTransport;
|
|
56
|
+
get version(): string;
|
|
56
57
|
registerHandler(action: string, handler: CommandHandler): void;
|
|
57
58
|
unregisterHandler(action: string): void;
|
|
58
59
|
getState(): "disconnected" | "connecting" | "connected";
|
|
60
|
+
ensureConnected(force?: boolean): void;
|
|
59
61
|
connect(): void;
|
|
60
62
|
private _connectWebSocket;
|
|
61
63
|
private _connectSse;
|
|
@@ -11,6 +11,7 @@ import { TelegramChannel } from "../../subsystems/channels/telegram.js";
|
|
|
11
11
|
import { TaskScheduler } from "../../subsystems/tools/task-scheduler.js";
|
|
12
12
|
import { Router } from "../router.js";
|
|
13
13
|
import { EventBus } from "./utils/EventBus.js";
|
|
14
|
+
import { ensureControlPlaneConnected } from "../utils/initControlPlane.js";
|
|
14
15
|
import type { ShadowClawDatabase } from "../../db/db.js";
|
|
15
16
|
import type { A2UIAction } from "../../ui/a2ui/types.js";
|
|
16
17
|
import type { DirectToolCommandPolicy } from "./utils/types.js";
|
|
@@ -27,6 +28,7 @@ export declare class Orchestrator {
|
|
|
27
28
|
contextCompressionEnabled: boolean;
|
|
28
29
|
db: ShadowClawDatabase | null;
|
|
29
30
|
directToolCommandPolicy: DirectToolCommandPolicy;
|
|
31
|
+
ensureControlPlaneConnected: typeof ensureControlPlaneConnected;
|
|
30
32
|
events: EventBus;
|
|
31
33
|
gitProxyUrl: string;
|
|
32
34
|
imessage: IMessageChannel;
|
|
@@ -102,6 +104,14 @@ export declare class Orchestrator {
|
|
|
102
104
|
* Shut down everything
|
|
103
105
|
*/
|
|
104
106
|
shutdown(): void;
|
|
107
|
+
/**
|
|
108
|
+
* Ensure all enabled external connections (Control Plane, Channels, Task Server)
|
|
109
|
+
* are actively connected and healthy (e.g. on initial app load, wake-up from sleep,
|
|
110
|
+
* switching back from another app, or regaining network connectivity).
|
|
111
|
+
*/
|
|
112
|
+
ensureAllConnections(options?: {
|
|
113
|
+
force?: boolean;
|
|
114
|
+
}): Promise<void>;
|
|
105
115
|
stopCurrentRequest(groupId?: string): void;
|
|
106
116
|
getApiKey(): Promise<string | null>;
|
|
107
117
|
getApiKeyForSpecificProvider(db: ShadowClawDatabase, providerId: string): Promise<string>;
|
|
@@ -57,8 +57,8 @@ export declare function getIMessageConfig(state: {
|
|
|
57
57
|
};
|
|
58
58
|
export declare function getChannelEnabledConfigKey(channelType: ChannelType): string;
|
|
59
59
|
export declare function shouldRunChannel(state: Pick<OrchestratorState, "channelEnabledByType" | "telegramBotToken" | "imessageServerUrl" | "peerjsMyPeerId">, channelType: ChannelType): boolean;
|
|
60
|
-
export declare function applyChannelRunningState(state: Pick<OrchestratorState, "browserChat" | "telegram" | "imessage" | "peerjs" | "channelEnabledByType" | "telegramBotToken" | "imessageServerUrl" | "peerjsMyPeerId">, channelType: ChannelType): void;
|
|
61
|
-
export declare function applyAllChannelRunningStates(state: Pick<OrchestratorState, "browserChat" | "telegram" | "imessage" | "peerjs" | "channelEnabledByType" | "telegramBotToken" | "imessageServerUrl" | "peerjsMyPeerId"
|
|
60
|
+
export declare function applyChannelRunningState(state: Pick<OrchestratorState, "browserChat" | "telegram" | "imessage" | "peerjs" | "channelEnabledByType" | "telegramBotToken" | "imessageServerUrl" | "peerjsMyPeerId">, channelType: ChannelType, force?: boolean): void;
|
|
61
|
+
export declare function applyAllChannelRunningStates(state: Pick<OrchestratorState, "browserChat" | "telegram" | "imessage" | "peerjs" | "channelEnabledByType" | "telegramBotToken" | "imessageServerUrl" | "peerjsMyPeerId">, force?: boolean): void;
|
|
62
62
|
export declare function clearPeerJsTypingState(groupId: string): void;
|
|
63
63
|
export declare function loadChannelEnabled(channelType: ChannelType, db: ShadowClawDatabase, _getConfig?: GetConfigFn): Promise<boolean>;
|
|
64
64
|
export declare function setChannelEnabled(state: Pick<OrchestratorState, "channelEnabledByType" | "browserChat" | "telegram" | "imessage" | "peerjs" | "telegramBotToken" | "imessageServerUrl" | "peerjsMyPeerId">, db: ShadowClawDatabase, channelType: ChannelType, enabled: boolean, _setConfig?: SetConfigFn): Promise<void>;
|
|
@@ -20,13 +20,19 @@ export declare function getControlPlaneServerUrl(loc?: {
|
|
|
20
20
|
};
|
|
21
21
|
export declare function detectCapabilities(): string[];
|
|
22
22
|
export declare function detectDeviceLabel(): string;
|
|
23
|
+
export declare function detectClientVersion(): string;
|
|
23
24
|
export interface InitControlPlaneOptions {
|
|
24
25
|
orchestrator?: any;
|
|
25
26
|
clientId?: string;
|
|
26
27
|
transport?: ControlPlaneTransport;
|
|
27
28
|
autoConnect?: boolean;
|
|
29
|
+
version?: string;
|
|
28
30
|
}
|
|
29
31
|
export declare function executeClientControlCommand(action: string, args?: any, options?: InitControlPlaneOptions): Promise<any>;
|
|
30
32
|
export declare function createDefaultControlPlaneClient(options?: InitControlPlaneOptions): ControlPlaneClient;
|
|
31
33
|
export declare function getActiveControlPlaneClient(): ControlPlaneClient | null;
|
|
32
34
|
export declare function stopControlPlaneClient(): void;
|
|
35
|
+
export declare function ensureControlPlaneConnected(options?: InitControlPlaneOptions & {
|
|
36
|
+
db?: any;
|
|
37
|
+
force?: boolean;
|
|
38
|
+
}): Promise<ControlPlaneClient | null>;
|
package/dist/lib/index.js
CHANGED
|
@@ -4,42 +4,42 @@ import { c as escapeHtml, d as handleSpecialLinkNavigation, f as sanitizeHtml, l
|
|
|
4
4
|
import { a as showSuccess, i as showInfo, l as toastStore, o as showToast, r as showError, s as showWarning } from "./toast-DZ6r7_YI.js";
|
|
5
5
|
import { getNamespacedItem, getNamespacedStorageKey, removeNamespacedItem, setNamespacedItem } from "./utils/namespacedStorage.js";
|
|
6
6
|
import { applyJsonPatch } from "./utils/jsonPatch.js";
|
|
7
|
-
import { t as ShadowClaw } from "./shadow-claw-
|
|
8
|
-
import { t as ShadowClawChat } from "./shadow-claw-chat-
|
|
7
|
+
import { t as ShadowClaw } from "./shadow-claw-Cuf2O5bZ.js";
|
|
8
|
+
import { t as ShadowClawChat } from "./shadow-claw-chat-Cam2lX4k.js";
|
|
9
9
|
import { t as ShadowClawA2UI } from "./shadow-claw-a2ui-CpZUTzlh.js";
|
|
10
10
|
import { t as ShadowClawPageHeaderActionButton } from "./shadow-claw-page-header-action-button-BXXm5b5N.js";
|
|
11
11
|
import { ShadowClawA2UIInterceptor } from "./components/shadow-claw-a2ui-interceptor.js";
|
|
12
12
|
import { ShadowClawDialog } from "./components/shadow-claw-dialog.js";
|
|
13
13
|
import { t as ShadowClawPageHeader } from "./shadow-claw-page-header-Cti2fzf-.js";
|
|
14
|
-
import { t as ShadowClawFiles } from "./shadow-claw-files-
|
|
14
|
+
import { t as ShadowClawFiles } from "./shadow-claw-files-DVROUESO.js";
|
|
15
15
|
import { t as ShadowClawEmptyState } from "./shadow-claw-empty-state-DPfDqaMA.js";
|
|
16
|
-
import { t as ShadowClawFileViewer } from "./shadow-claw-file-viewer-
|
|
16
|
+
import { t as ShadowClawFileViewer } from "./shadow-claw-file-viewer-B4HYiI0v.js";
|
|
17
17
|
import { t as ShadowClawPdfViewer } from "./shadow-claw-pdf-viewer-D3leDhRq.js";
|
|
18
|
-
import { t as ShadowClawTasks } from "./shadow-claw-tasks-
|
|
19
|
-
import { n as ShadowClawTerminal } from "./shadow-claw-terminal-
|
|
20
|
-
import { t as ShadowClawPages } from "./shadow-claw-pages-
|
|
21
|
-
import { t as ShadowClawSettings } from "./shadow-claw-settings-
|
|
22
|
-
import { t as ShadowClawPeerJs } from "./shadow-claw-peerjs-
|
|
23
|
-
import { t as ShadowClawChannelConfig } from "./shadow-claw-channel-config-
|
|
24
|
-
import { t as ShadowClawChannels } from "./shadow-claw-channels-
|
|
18
|
+
import { t as ShadowClawTasks } from "./shadow-claw-tasks-K-foOHSE.js";
|
|
19
|
+
import { n as ShadowClawTerminal } from "./shadow-claw-terminal-CpAknKyA.js";
|
|
20
|
+
import { t as ShadowClawPages } from "./shadow-claw-pages-CGzGXmrI.js";
|
|
21
|
+
import { t as ShadowClawSettings } from "./shadow-claw-settings-DBfMZdDS.js";
|
|
22
|
+
import { t as ShadowClawPeerJs } from "./shadow-claw-peerjs-B0ZB7yhB.js";
|
|
23
|
+
import { t as ShadowClawChannelConfig } from "./shadow-claw-channel-config-BDPKt6Bd.js";
|
|
24
|
+
import { t as ShadowClawChannels } from "./shadow-claw-channels-BsP5JABM.js";
|
|
25
25
|
import { t as ShadowClawProviderModelPicker } from "./shadow-claw-provider-model-picker-CsA-507a.js";
|
|
26
26
|
import { t as ShadowClawProviderModuleSettings } from "./shadow-claw-provider-module-settings-3sCTnCSp.js";
|
|
27
|
-
import { t as ShadowClawConversations } from "./shadow-claw-conversations-
|
|
27
|
+
import { t as ShadowClawConversations } from "./shadow-claw-conversations-C9Vf4XGx.js";
|
|
28
28
|
import { t as ShadowClawToast } from "./shadow-claw-toast-C8oAkrMC.js";
|
|
29
|
-
import { t as ShadowClawTools } from "./shadow-claw-tools-
|
|
29
|
+
import { t as ShadowClawTools } from "./shadow-claw-tools-D98XZ0Ep.js";
|
|
30
30
|
import { t as ShadowClawActions } from "./shadow-claw-actions-G99P9oxr.js";
|
|
31
31
|
import { t as ShadowClawCard } from "./shadow-claw-card-D9azfSMu.js";
|
|
32
32
|
import { t as ShadowClawAccounts } from "./shadow-claw-accounts-03oJ__XC.js";
|
|
33
|
-
import { t as ShadowClawControlPlane } from "./shadow-claw-control-plane-
|
|
34
|
-
import { t as ShadowClawGit } from "./shadow-claw-git-
|
|
33
|
+
import { t as ShadowClawControlPlane } from "./shadow-claw-control-plane-DB2qcCFs.js";
|
|
34
|
+
import { t as ShadowClawGit } from "./shadow-claw-git-BqrO7cHJ.js";
|
|
35
35
|
import { t as ShadowClawIntegrations } from "./shadow-claw-integrations-Ds-CLPhj.js";
|
|
36
|
-
import { t as ShadowClawLlm } from "./shadow-claw-llm-
|
|
36
|
+
import { t as ShadowClawLlm } from "./shadow-claw-llm-BexUQdYo.js";
|
|
37
37
|
import { t as ShadowClawMcpRemote } from "./shadow-claw-mcp-remote-CT5Q-54E.js";
|
|
38
|
-
import { t as ShadowClawNetworking } from "./shadow-claw-networking-
|
|
39
|
-
import { t as ShadowClawNotifications } from "./shadow-claw-notifications-
|
|
40
|
-
import { t as ShadowClawStorage } from "./shadow-claw-storage-
|
|
41
|
-
import { t as ShadowClawTaskServer } from "./shadow-claw-task-server-
|
|
42
|
-
import { t as ShadowClawWebvm } from "./shadow-claw-webvm-
|
|
38
|
+
import { t as ShadowClawNetworking } from "./shadow-claw-networking-CfXRGpUD.js";
|
|
39
|
+
import { t as ShadowClawNotifications } from "./shadow-claw-notifications-C9KPMgx_.js";
|
|
40
|
+
import { t as ShadowClawStorage } from "./shadow-claw-storage-CM-w6mgG.js";
|
|
41
|
+
import { t as ShadowClawTaskServer } from "./shadow-claw-task-server-DV4b1g2-.js";
|
|
42
|
+
import { t as ShadowClawWebvm } from "./shadow-claw-webvm-DLOb8dMI.js";
|
|
43
43
|
import "./components/index.js";
|
|
44
44
|
import { base64ToBytes, bytesToBase64 } from "./utils/base64.js";
|
|
45
45
|
import { t as utils_exports } from "./utils/index.js";
|