@mindexec/cli 0.2.284 → 0.2.285

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.284",
3
+ "version": "0.2.285",
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-v732';
8
+ const MINDMAP_CORE_BUILD_ID = '20260620-css3d-flat-wheel-v733';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -3839,7 +3839,7 @@
3839
3839
  indigo: { swatch: '#6366f1', ring: 'rgba(99, 102, 241, 0.22)' },
3840
3840
  violet: { swatch: '#8b5cf6', ring: 'rgba(139, 92, 246, 0.22)' },
3841
3841
  rose: { swatch: '#f43f5e', ring: 'rgba(244, 63, 94, 0.22)' },
3842
- gray: { swatch: '#6b7280', ring: 'rgba(107, 114, 128, 0.22)' },
3842
+ gray: { swatch: '#475569', ring: 'rgba(71, 85, 105, 0.22)' },
3843
3843
  slate: { swatch: '#64748b', ring: 'rgba(100, 116, 139, 0.22)' }
3844
3844
  };
3845
3845
  const AGENT_CONSOLE_OPEN_METADATA_KEY = 'AgentCommandConsoleOpen';
@@ -3938,7 +3938,7 @@
3938
3938
  });
3939
3939
  const NEUTRAL_SELECTION_GLOW_RGB = '59, 130, 246';
3940
3940
  const NEUTRAL_SELECTION_GLOW_RGB_SOFT = '191, 219, 254';
3941
- const CSS3D_WRAPPER_TRANSITION = 'transform .22s ease, opacity .22s ease, border-color .22s ease';
3941
+ const CSS3D_WRAPPER_TRANSITION = 'none';
3942
3942
  const CSS3D_WRAPPER_WEBKIT_TRANSITION = CSS3D_WRAPPER_TRANSITION;
3943
3943
  const TEXT_OVERLAY_SUPPORTED_TYPES = new Set(['text', 'markdown', 'note', 'code', 'memo', CSV_TABLE_CONTENT_TYPE]);
3944
3944
  const TEXT_SELECTION_OVERLAY_SUPPORTED_TYPES = new Set(['text', 'markdown']);
@@ -12322,7 +12322,8 @@
12322
12322
  || semanticType === 'AgentCommand'
12323
12323
  || semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE;
12324
12324
  wrapper.classList.toggle('selection-style-agent', !!isAgentStyled);
12325
- const nextColorKey = MEMO_COLOR_THEMES[colorKey] ? colorKey : 'coral';
12325
+ const fallbackColorKey = isAgentStyled ? 'gray' : 'coral';
12326
+ const nextColorKey = MEMO_COLOR_THEMES[colorKey] ? colorKey : fallbackColorKey;
12326
12327
  const theme = MEMO_COLOR_THEMES[nextColorKey] || MEMO_COLOR_THEMES.gray;
12327
12328
  const selectionEdge = theme.swatch;
12328
12329
  const glowRgb = hexToRgbString(theme.swatch);
@@ -12997,7 +12998,8 @@
12997
12998
  const isAgentStyled = element.classList?.contains('map-node-agent')
12998
12999
  || semanticType === 'MindCanvasAgent'
12999
13000
  || semanticType === BUSINESS_AUTOMATION_SEMANTIC_TYPE;
13000
- const nextColorKey = MEMO_COLOR_THEMES[colorKey] ? colorKey : 'coral';
13001
+ const fallbackColorKey = isAgentStyled ? 'gray' : 'coral';
13002
+ const nextColorKey = MEMO_COLOR_THEMES[colorKey] ? colorKey : fallbackColorKey;
13001
13003
  const theme = MEMO_COLOR_THEMES[nextColorKey] || MEMO_COLOR_THEMES.gray;
13002
13004
  element.dataset.memoColor = nextColorKey;
13003
13005
  applyMemoWrapperTheme(element, nextColorKey);
@@ -32,8 +32,8 @@
32
32
 
33
33
  function CSS3DRenderer(){
34
34
  var _width, _height; var _widthHalf, _heightHalf; var cache = { camera:{ fov:0, style:'', mode:'matrix3d' }, objects: new WeakMap() };
35
- var domElement = document.createElement('div'); domElement.style.overflow = 'hidden'; this.domElement = domElement;
36
- var cameraElement = document.createElement('div'); cameraElement.style.webkitTransformStyle = cameraElement.style.transformStyle = 'preserve-3d'; cameraElement.style.pointerEvents = 'none'; cameraElement.style.webkitTransformOrigin = cameraElement.style.transformOrigin = '0 0'; domElement.appendChild(cameraElement);
35
+ var domElement = document.createElement('div'); domElement.style.overflow = 'hidden'; domElement.style.contain = 'strict'; domElement.style.willChange = 'transform'; domElement.style.webkitTransition = domElement.style.transition = 'none'; domElement.style.webkitBackfaceVisibility = domElement.style.backfaceVisibility = 'hidden'; this.domElement = domElement;
36
+ var cameraElement = document.createElement('div'); cameraElement.style.webkitTransformStyle = cameraElement.style.transformStyle = 'preserve-3d'; cameraElement.style.pointerEvents = 'none'; cameraElement.style.webkitTransformOrigin = cameraElement.style.transformOrigin = '0 0'; cameraElement.style.contain = 'layout style paint'; cameraElement.style.willChange = 'transform'; cameraElement.style.webkitTransition = cameraElement.style.transition = 'none'; cameraElement.style.webkitBackfaceVisibility = cameraElement.style.backfaceVisibility = 'hidden'; domElement.appendChild(cameraElement);
37
37
 
38
38
  this.getSize = function(){ return { width:_width, height:_height }; };
39
39
  this.getCameraElement = function(){ return cameraElement; };
@@ -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-v732" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v732" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260620-css3d-flat-wheel-v733" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260620-css3d-flat-wheel-v733" />
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-v732';
582
+ const scriptVersion = '20260620-css3d-flat-wheel-v733';
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": "dbIQ4uWR",
2
+ "version": "/Swsi38c",
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-S+tFiv70nQMeEXSDmF32SmWdVGorAF3c4QaValKEpUU=",
81
+ "hash": "sha256-B5uKSPKpIYDJXgbeZPzIL2gPYW/ZVLR2IZX1gnzLgyk=",
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-1vOfr6NJpXOlWCDh3qIFXLoUAT3+WR6nAkd32NhHE2c=",
89
+ "hash": "sha256-apogDKTIevZkwck7bwJk6IdZUOmdroyMFIXuT/Lu7M0=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -182,7 +182,7 @@
182
182
  "url": "_content/MindExecution.Shared/js/plan-master.js"
183
183
  },
184
184
  {
185
- "hash": "sha256-2IxneOfAhc2Sq8hl7ywEBzZaaFX22FZaW89WB0rAgUk=",
185
+ "hash": "sha256-C7LU7nkx5+E0CFEAx0GNaL5EaiG8g8Cvg5QtDaWTuyo=",
186
186
  "url": "_content/MindExecution.Shared/js/renderers/CSS3DRenderer.js"
187
187
  },
188
188
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-IjUqzxOsWORG18oQqskF0R4ZPTBBRse0v1ESnSY9kgI=",
837
+ "hash": "sha256-f4OkG0Hf42cuV7+AZwsQiqZTLsxdeJjkvo1cJbRNTMs=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: dbIQ4uWR */
1
+ /* Manifest version: /Swsi38c */
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