@mindexec/cli 0.2.314 → 0.2.316

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.314",
3
+ "version": "0.2.316",
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 = '20260621-image-status-motion-v797';
8
+ const MINDMAP_CORE_BUILD_ID = '20260621-mdm-drag-v799';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -113,7 +113,7 @@
113
113
  const LOCAL_SNAP_GRID_DEFAULT_MAJOR_STEP_PX = 240;
114
114
  const LOCAL_SNAP_GRID_DEFAULT_OPACITY = 0.42;
115
115
  const CAMERA_MOTION_PARTIAL_FRAME_SKIP_ENABLED = false;
116
- const CAMERA_MOTION_VISUAL_ONLY_FAST_PATH_ENABLED = true;
116
+ const CAMERA_MOTION_VISUAL_ONLY_FAST_PATH_ENABLED = false;
117
117
  const CAMERA_MOTION_WEBGL_CANVAS_TRANSFORM_ENABLED = false;
118
118
  const CAMERA_MOTION_WEBGL_TRANSFORM_TRANSLATE_BUCKET_PX = 0.001;
119
119
  const CAMERA_MOTION_WEBGL_TRANSFORM_SCALE_BUCKET = 0.000001;
@@ -13140,6 +13140,7 @@
13140
13140
  '[data-remote-fleet-control-node-placeholder]',
13141
13141
  '[data-remote-fleet-task-input]',
13142
13142
  '[data-remote-fleet-device-task-input]',
13143
+ '[data-remote-fleet-device-preview]',
13143
13144
  '[data-remote-fleet-ai-toggle]',
13144
13145
  '[data-remote-fleet-device-ai-toggle]',
13145
13146
  '[data-remote-fleet-search]',
@@ -13189,7 +13190,6 @@
13189
13190
  }
13190
13191
 
13191
13192
  const nodeId = String(getNodeId(nodeModel) || card.dataset?.nodeId || '').trim();
13192
- const isRemoteFleetCard = isRemoteFleetMonitorNode(nodeModel);
13193
13193
 
13194
13194
  const wheelHandler = event => {
13195
13195
  routeTemplateCardWheelToCanvas(event);
@@ -13209,7 +13209,7 @@
13209
13209
  return;
13210
13210
  }
13211
13211
 
13212
- if (button !== 0 || isRemoteFleetCard || !nodeId || isTemplateCardCanvasControlTarget(event.target)) {
13212
+ if (button !== 0 || !nodeId || isTemplateCardCanvasControlTarget(event.target)) {
13213
13213
  return;
13214
13214
  }
13215
13215
 
@@ -691,6 +691,27 @@ window.MindMapInteractions = (function () {
691
691
  return String(model?.contentType ?? model?.ContentType ?? '').toLowerCase();
692
692
  }
693
693
 
694
+ function getNodeSemanticType(target) {
695
+ const model = getNodeModel(target);
696
+ const metadata = model?.metadata ?? model?.Metadata ?? {};
697
+ return String(
698
+ model?.semanticType ??
699
+ model?.SemanticType ??
700
+ metadata?.SemanticType ??
701
+ metadata?.semanticType ??
702
+ ''
703
+ ).trim();
704
+ }
705
+
706
+ function prefersCss3dDragObject(nodeEntry) {
707
+ const contentType = getNodeContentType(nodeEntry);
708
+ const semanticType = getNodeSemanticType(nodeEntry);
709
+ return contentType === 'templatelauncher'
710
+ || contentType === 'remote-control'
711
+ || semanticType === 'RemoteFleetMonitor'
712
+ || semanticType === 'RemoteFleetDevice';
713
+ }
714
+
694
715
  function isAgentNode(target) {
695
716
  const model = getNodeModel(target);
696
717
  const nodeType = String(model?.nodeType ?? model?.NodeType ?? '').toLowerCase();
@@ -4693,9 +4714,11 @@ window.MindMapInteractions = (function () {
4693
4714
  e.preventDefault();
4694
4715
  e.stopPropagation();
4695
4716
 
4696
- const actualDragObject = (nodeEntry.currentType === 'CSS' && nodeEntry.cssObject) ?
4717
+ const actualDragObject = (prefersCss3dDragObject(nodeEntry) && nodeEntry.cssObject) ?
4697
4718
  nodeEntry.cssObject :
4698
- nodeEntry.glObject;
4719
+ ((nodeEntry.currentType === 'CSS' && nodeEntry.cssObject) ?
4720
+ nodeEntry.cssObject :
4721
+ (dragObject || nodeEntry.glObject));
4699
4722
 
4700
4723
  if (!actualDragObject) return;
4701
4724
  setBrowserSelectionLock(true, 'node-drag');
@@ -51,7 +51,7 @@
51
51
  // ▲▲▲ [Usage] ▲▲▲
52
52
 
53
53
  // Procedural line rendering settings
54
- const LOD_RENDERER_BUILD_ID = '20260621-image-status-motion-v797';
54
+ const LOD_RENDERER_BUILD_ID = '20260621-mdm-drag-v799';
55
55
  const DirtyKind = Object.freeze({
56
56
  ResidentFullRebuild: 'resident-full-rebuild',
57
57
  ResidentPatch: 'resident-patch',
@@ -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=20260621-image-status-motion-v797" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-image-status-motion-v797" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-mdm-drag-v799" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-mdm-drag-v799" />
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 = '20260621-image-status-motion-v797';
582
+ const scriptVersion = '20260621-mdm-drag-v799';
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": "wFN1UJXT",
2
+ "version": "SAss2wLl",
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-thTfHQlQm3nsiP4n/lNhLoVtAUv4rw/dsFDZHjD3yLE=",
81
+ "hash": "sha256-CdH4wPJb4NXehCfojFNuSltl7onaEXZ0efVUwHVr3gE=",
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-m19Ex/iUFkKEfN82ioo9gB90TJKEIMs77mCnyk6oVoM=",
89
+ "hash": "sha256-pbrochTaLCm/0nF+SSTAFAbdp82Kn61FWofSQf79c3w=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -106,7 +106,7 @@
106
106
  "url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
107
107
  },
108
108
  {
109
- "hash": "sha256-jI85N38y4L0tbjmhtbJ4zGwVRI90TCa570Z8h1yA6i0=",
109
+ "hash": "sha256-tU6TgB0yR2ft8+e/QouGtynlKONttkjzO8LQ+7q+58I=",
110
110
  "url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
111
111
  },
112
112
  {
@@ -114,7 +114,7 @@
114
114
  "url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
115
115
  },
116
116
  {
117
- "hash": "sha256-sLOCNMHkGa+Z4ZTEWKFBTFnBLy02dJKqoEqE2/kvBkg=",
117
+ "hash": "sha256-NXuJnhvbgnRE3BVR05gYACE8iXaU6rmkON1WGlHtpng=",
118
118
  "url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
119
119
  },
120
120
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-7SMiDFZNZ7teL59KIbKhRhiR0+OKDVx8zX33YhGTeq4=",
837
+ "hash": "sha256-YR0oSsyb101t+ulom2kgMzFyEzF+3m2rOTXOrSCtUzU=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: wFN1UJXT */
1
+ /* Manifest version: SAss2wLl */
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