@mindexec/cli 0.2.274 → 0.2.275

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.274",
3
+ "version": "0.2.275",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -5,7 +5,7 @@
5
5
  const DEBUG = false;
6
6
  const FPS_DEBUG = false;
7
7
  const FRAME_PERF_DEBUG = false;
8
- const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v722';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v723';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -622,6 +622,18 @@
622
622
  );
623
623
  }
624
624
 
625
+ function hasBusinessAutomationTransformMotionWork(module) {
626
+ return !!(
627
+ module?._businessAutomationEdgeRenderActive === true &&
628
+ hasBusinessAutomationEdgeLayer(module) === true
629
+ );
630
+ }
631
+
632
+ function hasBusinessAutomationDraftOrTransformMotionWork(module) {
633
+ return hasBusinessAutomationTransformMotionWork(module) === true ||
634
+ module?._businessAutomationConnectionDraftActive === true;
635
+ }
636
+
625
637
  function canUseFlatCss3dCameraMotion(module, renderer = module?.cssRenderer, camera = module?.camera, renderDebugFlags = null) {
626
638
  if (CSS3D_FLAT_CAMERA_MOTION_ENABLED !== true ||
627
639
  !renderer ||
@@ -1515,7 +1527,9 @@
1515
1527
 
1516
1528
  module._viewSyncMotionActive = true;
1517
1529
  module._cameraMovingThisFrame = false;
1518
- deferPassiveOverlayForCameraMotion(module, frameStart);
1530
+ if (hasPassiveOverlayMotionWork(module) === true) {
1531
+ deferPassiveOverlayForCameraMotion(module, frameStart);
1532
+ }
1519
1533
 
1520
1534
  const forceUpdateFrames = Math.max(0, Number(module._forceUpdateFrames || 0));
1521
1535
  const cameraNavigationForceFrames = Math.max(0, Number(module._cameraNavigationForceFrames || 0));
@@ -1723,7 +1737,9 @@
1723
1737
  module._preserveVisibleSetThisFrame = true;
1724
1738
  module._lastVisibilityCullingSkipReason = 'ua-ultra-camera-only';
1725
1739
  recordCameraMotionFastPathStatus(module, 'hit', 'ua-ultra-camera-only');
1726
- deferPassiveOverlayForCameraMotion(module, frameStart);
1740
+ if (hasPassiveOverlayMotionWork(module) === true) {
1741
+ deferPassiveOverlayForCameraMotion(module, frameStart);
1742
+ }
1727
1743
 
1728
1744
  if (shouldSyncMindCanvasPerfClasses()) {
1729
1745
  const visibleNodeCount = Number(module._visibleIds?.size || module._prevVisibleIds?.size || 0);
@@ -1786,7 +1802,9 @@
1786
1802
  module._syncLocalSnapGridPositionOnly?.(true);
1787
1803
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-camera-only');
1788
1804
 
1789
- syncBusinessAutomationEdgesForCameraNavigation(module, true);
1805
+ if (hasBusinessAutomationTransformMotionWork(module) === true) {
1806
+ syncBusinessAutomationEdgesForCameraNavigation(module, true);
1807
+ }
1790
1808
 
1791
1809
  profileSection?.('uaUltraEarlyCameraOnly');
1792
1810
 
@@ -1947,7 +1965,9 @@
1947
1965
  module._preserveVisibleSetThisFrame = true;
1948
1966
  module._lastVisibilityCullingSkipReason = 'ua-ultra-resident-camera-only';
1949
1967
  recordCameraMotionFastPathStatus(module, 'hit', 'ua-ultra-resident-camera-only');
1950
- deferPassiveOverlayForCameraMotion(module, frameStart);
1968
+ if (hasPassiveOverlayMotionWork(module) === true) {
1969
+ deferPassiveOverlayForCameraMotion(module, frameStart);
1970
+ }
1951
1971
 
1952
1972
  if (shouldSyncMindCanvasPerfClasses()) {
1953
1973
  const visibleNodeCount = Number(module._visibleIds?.size || module._prevVisibleIds?.size || 0);
@@ -2008,7 +2028,9 @@
2008
2028
  renderCss3dCameraForCameraNavigation(module, 'ua-ultra-resident-camera-only');
2009
2029
  }
2010
2030
 
2011
- syncBusinessAutomationEdgesForCameraNavigation(module, true);
2031
+ if (hasBusinessAutomationTransformMotionWork(module) === true) {
2032
+ syncBusinessAutomationEdgesForCameraNavigation(module, true);
2033
+ }
2012
2034
 
2013
2035
  profileSection?.('uaUltraResidentCameraOnly');
2014
2036
 
@@ -5632,8 +5654,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
5632
5654
  if (canRenderCss3d === true) {
5633
5655
  renderCss3dCameraForCameraNavigation(this, 'ua-wheel-zoom-direct');
5634
5656
  }
5635
- if (this._businessAutomationEdgeRenderActive === true ||
5636
- this._businessAutomationConnectionDraftActive === true) {
5657
+ if (hasBusinessAutomationTransformMotionWork(this) === true) {
5637
5658
  syncBusinessAutomationEdgesForCameraNavigation(this, true);
5638
5659
  }
5639
5660
  this.pauseAnimationLoopForDirectWheelZoom?.();
@@ -6689,7 +6710,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
6689
6710
  (this.isPanning === true || isRecentPanInput) && this.isZooming !== true
6690
6711
  ? PASSIVE_OVERLAY_PAN_IDLE_DELAY_MS
6691
6712
  : PASSIVE_OVERLAY_IDLE_DELAY_MS;
6692
- deferPassiveOverlayForCameraMotion(this, frameStart, overlayResumeDelayMs);
6713
+ if (hasPassiveOverlayMotionWork(this) === true) {
6714
+ deferPassiveOverlayForCameraMotion(this, frameStart, overlayResumeDelayMs);
6715
+ }
6693
6716
  }
6694
6717
  const zoomEndedThisFrame = wasZoomingLastFrame && !this.isZooming;
6695
6718
  const panEndedThisFrame = wasPanningLastFrame && !this.isPanning;
@@ -7132,7 +7155,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7132
7155
  window.MindMapTextOverlayV2?.syncPassiveViewTransform) {
7133
7156
  window.MindMapTextOverlayV2.syncPassiveViewTransform(this);
7134
7157
  }
7135
- syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7158
+ if (hasBusinessAutomationDraftOrTransformMotionWork(this) === true) {
7159
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7160
+ }
7136
7161
  _profileSection('uaVisualOnlyMotion');
7137
7162
 
7138
7163
  const frameEnd = performance.now();
@@ -7305,7 +7330,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7305
7330
  if (this.cssRenderer && typeof this.cssRenderer.renderCamera === 'function') {
7306
7331
  renderCss3dCameraForCameraNavigation(this, 'ua-stationary-visual-motion');
7307
7332
  }
7308
- syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7333
+ if (hasBusinessAutomationDraftOrTransformMotionWork(this) === true) {
7334
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7335
+ }
7309
7336
 
7310
7337
  _profileSection('uaStationaryVisualMotion');
7311
7338
 
@@ -7496,7 +7523,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
7496
7523
  if (shouldRenderCss3dInLodForUaResidentCameraOnly === true) {
7497
7524
  renderCss3dCameraForCameraNavigation(this, 'ua-resident-visual-only-motion');
7498
7525
  }
7499
- syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7526
+ if (hasBusinessAutomationDraftOrTransformMotionWork(this) === true) {
7527
+ syncBusinessAutomationEdgesForCameraNavigation(this, false, true);
7528
+ }
7500
7529
  _profileSection('uaResidentVisualOnlyMotion');
7501
7530
 
7502
7531
  const frameEnd = performance.now();
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Business Execution OS for solo builders</title>
8
8
  <meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v722" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v722" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v723" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v723" />
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 = '20260620-css3d-flat-wheel-v722';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v723';
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": "2bce3prM",
2
+ "version": "Rl0DlhWJ",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -78,7 +78,7 @@
78
78
  "url": "_content/MindExecution.Shared/js/marked.min.js"
79
79
  },
80
80
  {
81
- "hash": "sha256-aLHD0t7zUz2Hm0YXh0mcna9uh2NOfK4GrgaGzFjKxXQ=",
81
+ "hash": "sha256-PokWtZ7UoJE+/mdQACZBHihHMJLTJjkjp/LuemQac68=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-Fw2E9mGBm1TPjXCiHI5odjJdKIykBepdRCeX0L1irZ8=",
837
+ "hash": "sha256-dcrHGEoxLMetEizqS8+tjnhWes2n9RCfZas3A5/nbA4=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: 2bce3prM */
1
+ /* Manifest version: Rl0DlhWJ */
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