@mindexec/cli 0.2.156 → 0.2.157

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.156",
3
+ "version": "0.2.157",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -2282,9 +2282,26 @@ body.is-panning .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay
2282
2282
  .css3d-resolution-wrapper.node-type-templatelauncher > .map-node-template-card {
2283
2283
  border-radius: 8px !important;
2284
2284
  background: #f8fafc;
2285
- box-shadow:
2286
- 0 18px 38px rgba(15, 23, 42, 0.16),
2287
- 0 0 0 1px rgba(15, 23, 42, 0.08);
2285
+ box-shadow: none !important;
2286
+ }
2287
+
2288
+ /* Template launcher and Multi Desktop Monitor own their visual chrome on the
2289
+ card itself. Keep the CSS3D wrapper neutral so motion CSS3D and the passive
2290
+ DOM overlay do not stack different selection glows. */
2291
+ .css3d-resolution-wrapper.node-type-templatelauncher.selected,
2292
+ body.is-panning .css3d-resolution-wrapper.node-type-templatelauncher.selected,
2293
+ body.is-zooming .css3d-resolution-wrapper.node-type-templatelauncher.selected,
2294
+ body.mindcanvas-is-moving .css3d-resolution-wrapper.node-type-templatelauncher.selected,
2295
+ body.mindcanvas-is-dense .css3d-resolution-wrapper.node-type-templatelauncher.selected {
2296
+ outline: none !important;
2297
+ -webkit-box-shadow: none !important;
2298
+ box-shadow: none !important;
2299
+ -webkit-filter: none !important;
2300
+ filter: none !important;
2301
+ }
2302
+
2303
+ .css3d-resolution-wrapper.node-type-templatelauncher.selected > .map-node-template-card {
2304
+ box-shadow: none !important;
2288
2305
  }
2289
2306
 
2290
2307
  .map-node-template-card,
@@ -5040,6 +5040,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5040
5040
  const hasLiveInteractiveDomOverlay =
5041
5041
  useTextOverlayV2 &&
5042
5042
  window.MindMapTextOverlayV2?.hasLiveInteractiveOverlay?.(this) === true;
5043
+ const hasPassiveDomOverlaySurface =
5044
+ shouldRenderPassiveDomTextOverlay ||
5045
+ hasLiveInteractiveDomOverlay;
5043
5046
  const overlayV2State = useTextOverlayV2 ? (this._textOverlayV2State || null) : null;
5044
5047
  const hasOverlayV2DirtyState = !!(
5045
5048
  overlayV2State && (
@@ -5088,11 +5091,11 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5088
5091
  this._overlayDebugRefreshAgeMs = timeSinceLastPassiveOverlayRefresh;
5089
5092
  this._overlayDebugRefreshDeferred = shouldDeferInteractivePassiveOverlayRefresh;
5090
5093
  const isPassiveOverlayIdleDelayActive =
5091
- shouldRenderPassiveDomTextOverlay &&
5094
+ hasPassiveDomOverlaySurface &&
5092
5095
  Number(this._passiveOverlayResumeAt || 0) > frameStart;
5093
5096
  const shouldSuppressPassiveOverlayDuringCameraMotion =
5094
5097
  useTextOverlayV2 &&
5095
- shouldRenderPassiveDomTextOverlay &&
5098
+ hasPassiveDomOverlaySurface &&
5096
5099
  (isPassiveOverlayIdleDelayActive ||
5097
5100
  this.isZooming === true ||
5098
5101
  this.isPanning === true ||
@@ -5157,7 +5160,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5157
5160
  !shouldUsePassiveOverlayCameraFastPath;
5158
5161
  const shouldUsePassiveOverlayMotionHint =
5159
5162
  useTextOverlayV2 &&
5160
- shouldRenderPassiveDomTextOverlay &&
5163
+ hasPassiveDomOverlaySurface &&
5161
5164
  !isPassiveOverlaySuppressed &&
5162
5165
  !hasOverlayFocus &&
5163
5166
  !hasOverlayV2DirtyState &&
@@ -797,24 +797,24 @@
797
797
 
798
798
  /* Preserve agent memo chrome during camera motion so middle-button panning
799
799
  does not visibly weaken their glow or console surfaces. */
800
- body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher),
801
- body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher),
802
- body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher),
803
- body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) {
800
+ body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent),
801
+ body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent),
802
+ body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent),
803
+ body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent) {
804
804
  transition: none !important;
805
805
  -webkit-transition: none !important;
806
806
  filter: none !important;
807
807
  -webkit-filter: none !important;
808
808
  }
809
809
 
810
- body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) .css3d-dynamic-node,
811
- body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) .css3d-dynamic-node,
812
- body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) .css3d-dynamic-node,
813
- body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) .css3d-dynamic-node,
814
- body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) [id^="css3d-node-"],
815
- body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) [id^="css3d-node-"],
816
- body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) [id^="css3d-node-"],
817
- body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent):not(.node-type-templatelauncher) [id^="css3d-node-"] {
810
+ body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent) .css3d-dynamic-node,
811
+ body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent) .css3d-dynamic-node,
812
+ body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent) .css3d-dynamic-node,
813
+ body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent) .css3d-dynamic-node,
814
+ body.is-zooming .css3d-resolution-wrapper:not(.selection-style-agent) [id^="css3d-node-"],
815
+ body.is-panning .css3d-resolution-wrapper:not(.selection-style-agent) [id^="css3d-node-"],
816
+ body.mindcanvas-is-moving .css3d-resolution-wrapper:not(.selection-style-agent) [id^="css3d-node-"],
817
+ body.mindcanvas-is-dense .css3d-resolution-wrapper:not(.selection-style-agent) [id^="css3d-node-"] {
818
818
  box-shadow: none !important;
819
819
  filter: none !important;
820
820
  -webkit-filter: none !important;
@@ -4013,7 +4013,9 @@
4013
4013
 
4014
4014
  function isLiveOverlayPortalNode(nodeModel) {
4015
4015
  const contentType = String(nodeModel?.contentType ?? nodeModel?.ContentType ?? '').trim().toLowerCase();
4016
- return contentType === CSV_TABLE_CONTENT_TYPE || isTemplateLauncherNode(nodeModel);
4016
+ return contentType === CSV_TABLE_CONTENT_TYPE
4017
+ || isTemplateLauncherNode(nodeModel)
4018
+ || isBusinessAutomationNode(nodeModel);
4017
4019
  }
4018
4020
 
4019
4021
  function isBusinessAutomationContextSourceNode(nodeModel) {
@@ -374,6 +374,17 @@
374
374
  return getNodeContentType(model) === 'templatelauncher';
375
375
  }
376
376
 
377
+ function isBusinessAutomationModel(model) {
378
+ return getNodeSemanticType(model) === BUSINESS_AUTOMATION_SEMANTIC_TYPE;
379
+ }
380
+
381
+ function isLivePortalCssLodModel(model) {
382
+ const contentType = getNodeContentType(model);
383
+ return isTemplateLauncherModel(model) ||
384
+ contentType === 'csv-table' ||
385
+ isBusinessAutomationModel(model);
386
+ }
387
+
377
388
  function isRemoteFleetNodeModel(model) {
378
389
  const semanticType = getNodeSemanticType(model);
379
390
  return semanticType === REMOTE_FLEET_MONITOR_SEMANTIC_TYPE ||
@@ -4238,7 +4249,7 @@
4238
4249
 
4239
4250
  const entry = nodeObjectsById.get(nodeId);
4240
4251
  if (!entry?.cssObject || !supportsCss3dNodeModel(entry.model)) continue;
4241
- if (isTemplateLauncherModel(entry.model)) continue;
4252
+ if (isLivePortalCssLodModel(entry.model)) continue;
4242
4253
  if (shouldShowAgentConsoleInLodBand(lodBand) && hasAgentConsoleOpenForEntry(entry)) continue;
4243
4254
 
4244
4255
  nextWarmIds.add(nodeId);
@@ -4268,7 +4279,7 @@
4268
4279
  const nodeId = warmIds[i];
4269
4280
  if (keepAttachedIds?.has(nodeId)) continue;
4270
4281
  const entry = nodeObjectsById.get(nodeId);
4271
- if (isTemplateLauncherModel(entry?.model)) continue;
4282
+ if (isLivePortalCssLodModel(entry?.model)) continue;
4272
4283
  this._detachCss3dObject(entry);
4273
4284
  }
4274
4285
  }
@@ -4401,7 +4412,7 @@
4401
4412
  if (!nodeObjectsById) return;
4402
4413
 
4403
4414
  for (const entry of nodeObjectsById.values()) {
4404
- if (!entry || !isTemplateLauncherModel(entry.model)) continue;
4415
+ if (!entry || !isLivePortalCssLodModel(entry.model)) continue;
4405
4416
 
4406
4417
  const nodeId = String(entry.model?.id || entry.model?.Id || entry.glObject?.userData?.nodeId || '').trim();
4407
4418
  if (isCss3dRendererEnabled(module)) {
@@ -4886,7 +4897,7 @@
4886
4897
  let count = 0;
4887
4898
  for (const nodeId of Array.from(this._lodTemplateCssNodeIds)) {
4888
4899
  const entry = nodeObjectsById.get(nodeId) || null;
4889
- if (!entry || !isTemplateLauncherModel(entry.model)) {
4900
+ if (!entry || !isLivePortalCssLodModel(entry.model)) {
4890
4901
  this._lodTemplateCssNodeIds.delete(nodeId);
4891
4902
  continue;
4892
4903
  }
@@ -16,6 +16,7 @@
16
16
  const LIVE_TEMPLATE_OVERLAY_MODE = 'live-template';
17
17
  const CSV_TABLE_CONTENT_TYPE = 'csv-table';
18
18
  const REMOTE_FLEET_SEMANTIC_TYPE = 'RemoteFleetMonitor';
19
+ const BUSINESS_AUTOMATION_SEMANTIC_TYPE = 'BusinessAutomationNode';
19
20
  const log = DEBUG ? console.log.bind(console, '[MindMapTextOverlayV2]') : () => { };
20
21
  let _projCornerTopLeft = null;
21
22
  let _projCornerTopRight = null;
@@ -87,7 +88,8 @@
87
88
  const semanticType = getNodeSemanticType(entry);
88
89
  return type === 'templatelauncher'
89
90
  || type === CSV_TABLE_CONTENT_TYPE
90
- || semanticType === REMOTE_FLEET_SEMANTIC_TYPE;
91
+ || semanticType === REMOTE_FLEET_SEMANTIC_TYPE
92
+ || semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE;
91
93
  }
92
94
 
93
95
  function isLiveInteractiveOverlayMode(mode) {
@@ -99,7 +101,7 @@
99
101
  const semanticType = getNodeSemanticType(entry);
100
102
  return semanticType === 'MindCanvasAgent'
101
103
  || semanticType === 'AgentCommand'
102
- || semanticType === 'BusinessAutomationNode';
104
+ || semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE;
103
105
  }
104
106
 
105
107
  function isDomOverlayDebugEnabled(module) {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-H62hFd8/JAFraA8jNVN3s3GNyvSJa5o8b6zHgtuC/es=",
4
+ "hash": "sha256-oN9NB5XxbZ2xSDkf/iKkLdth/StnRySGcRVgEHblI6U=",
5
5
  "fingerprinting": {
6
6
  "Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
7
7
  "Markdig.d1j7v41cl1.dll": "Markdig.dll",
@@ -132,7 +132,7 @@
132
132
  "MindExecution.Plugins.PlanMaster.0yfii1nh3p.dll": "MindExecution.Plugins.PlanMaster.dll",
133
133
  "MindExecution.Plugins.YouTube.y4vxx807fo.dll": "MindExecution.Plugins.YouTube.dll",
134
134
  "MindExecution.Shared.50ptsgk9eg.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.hztii75ar1.dll": "MindExecution.Web.dll",
135
+ "MindExecution.Web.hucq2w2ism.dll": "MindExecution.Web.dll",
136
136
  "dotnet.js": "dotnet.js",
137
137
  "dotnet.native.qc8g39g30v.js": "dotnet.native.js",
138
138
  "dotnet.native.boem75ye5i.wasm": "dotnet.native.wasm",
@@ -283,7 +283,7 @@
283
283
  "MindExecution.Plugins.Concept.4ncya2e794.dll": "sha256-gKad12tQh1p7kInUiSIECobEZiD4VIuxmmskGE3ambo=",
284
284
  "MindExecution.Plugins.PlanMaster.0yfii1nh3p.dll": "sha256-OMcIYPKBnnJCW6QRN8nGykgCloUl1FRnFx6lma85ZGs=",
285
285
  "MindExecution.Shared.50ptsgk9eg.dll": "sha256-1X+o7c7jCm4MVorCrq52beiyMe+C6qFw6EyIGfZGQdo=",
286
- "MindExecution.Web.hztii75ar1.dll": "sha256-s/mh0EOyp5uxPxzn6b4blKD/zAAA5oKCjFDe0tCgc9g="
286
+ "MindExecution.Web.hucq2w2ism.dll": "sha256-iSV90XAYUoYq7Rfm7gf4tzJBsIy2zbfVfxadAFS8pSY="
287
287
  },
288
288
  "lazyAssembly": {
289
289
  "MindExecution.Plugins.Admin.bk23zzy6wc.dll": "sha256-uz7Nz0OZ8BBESp2Nr9YocyzV0dUrn7szPuD4/m/RWL8=",
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Run your ideas as AI task graphs</title>
8
8
  <meta name="description" content="MindExec is an AI execution canvas for solo builders, researchers, developers, and creators. Start with free browser tools, then move serious work into saved MindCanvas projects." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-remote-control-node-v587" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-remote-control-node-v587" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-auth-mirror-v590" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-auth-mirror-v590" />
12
12
  <!-- ?쇄뼹??Font Awesome (local) ?쇄뼹??-->
13
13
  <link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
14
14
  <!-- ?꿎뼯??-->
@@ -579,7 +579,7 @@
579
579
  }
580
580
 
581
581
  const base = '_content/MindExecution.Shared/js/';
582
- const scriptVersion = '20260617-remote-control-node-v587';
582
+ const scriptVersion = '20260617-auth-mirror-v590';
583
583
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
584
584
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
585
585
  const criticalScripts = [
@@ -1,5 +1,5 @@
1
1
  self.assetsManifest = {
2
- "version": "EpMH+qVw",
2
+ "version": "GgmfxCXF",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -42,7 +42,7 @@
42
42
  "url": "_content/MindExecution.Shared/css/app.css"
43
43
  },
44
44
  {
45
- "hash": "sha256-Z/qOemFxT1byK3tSyusCzWleiFLxcMRdsEc/0DoSPbk=",
45
+ "hash": "sha256-FxtluumoQV2QXTCFtSR+/dc0Xp/CFDcF1cXkaeikt4s=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -78,7 +78,7 @@
78
78
  "url": "_content/MindExecution.Shared/js/marked.min.js"
79
79
  },
80
80
  {
81
- "hash": "sha256-y/ehxOpFseX3lMFu+VGjbL4lTMmQ0kEmj5QIRldR2S4=",
81
+ "hash": "sha256-xTWG0IO6nYqtcvUgWluJHWfalJjI4MN86PHUMmtpECs=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-7XM3q7xvvWVxDjSBniKorjQgNjyhOcAz2WNqg8OHOa0=",
89
+ "hash": "sha256-1ImfUjyr1aBodcgICy6KTDGinJHMb1jdRG2MYGPdYvE=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -114,7 +114,7 @@
114
114
  "url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
115
115
  },
116
116
  {
117
- "hash": "sha256-/I+97B4sBuC4ON9Ytp2crB+yaSXnxgr1wq35P/GZ4O0=",
117
+ "hash": "sha256-Lo7v8nqlOhYydM8OzuMLHllA29+Q76y/PIV+QaB1uyo=",
118
118
  "url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
119
119
  },
120
120
  {
@@ -154,7 +154,7 @@
154
154
  "url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
155
155
  },
156
156
  {
157
- "hash": "sha256-qwNb+PcesE9rgfkjiJrUOWHz/J2vwDUb6wzJ3j5Zj90=",
157
+ "hash": "sha256-TYsOWDglKs9IpaKCvKCpmRhjYRx32npfGkCFbplRM3s=",
158
158
  "url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
159
159
  },
160
160
  {
@@ -446,8 +446,8 @@
446
446
  "url": "_framework/MindExecution.Shared.50ptsgk9eg.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-s/mh0EOyp5uxPxzn6b4blKD/zAAA5oKCjFDe0tCgc9g=",
450
- "url": "_framework/MindExecution.Web.hztii75ar1.dll"
449
+ "hash": "sha256-iSV90XAYUoYq7Rfm7gf4tzJBsIy2zbfVfxadAFS8pSY=",
450
+ "url": "_framework/MindExecution.Web.hucq2w2ism.dll"
451
451
  },
452
452
  {
453
453
  "hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
@@ -770,7 +770,7 @@
770
770
  "url": "_framework/Websocket.Client.vapounvmnl.dll"
771
771
  },
772
772
  {
773
- "hash": "sha256-pG5Qn7IywPsHJ02D/12EcGeCG65zRYsIE4kfzFBZv3I=",
773
+ "hash": "sha256-l0xPjAbrLfbdmB69gqtRn+JMPssryiM0fh1uDxZ/NNo=",
774
774
  "url": "_framework/blazor.boot.json"
775
775
  },
776
776
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-RmtnourcT6RHyaHx4CcQLxRf5QOIMFMIfF4OZC0W07k=",
837
+ "hash": "sha256-RLe/OcetCLrQfgXCZMRe1KAmWd4NRvzz9LOOJ0dr7p0=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: EpMH+qVw */
1
+ /* Manifest version: GgmfxCXF */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4