@mindexec/cli 0.2.335 → 0.2.337

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.335",
3
+ "version": "0.2.337",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -87,12 +87,14 @@ body.mind-map-scroll-locked {
87
87
  .map-node-note,
88
88
  .map-node-memo,
89
89
  .map-node-code {
90
- -webkit-backface-visibility: visible;
91
- backface-visibility: visible;
90
+ -webkit-backface-visibility: hidden;
91
+ backface-visibility: hidden;
92
92
  /* 텍스트 렌더링 품질 */
93
- -webkit-font-smoothing: auto;
94
- -moz-osx-font-smoothing: auto;
95
- /* 서브픽셀 정렬로 흐림 방지 */
93
+ -webkit-font-smoothing: antialiased;
94
+ -moz-osx-font-smoothing: grayscale;
95
+ text-rendering: optimizeLegibility;
96
+ /* 서브픽셀 정렬로 흐림 방지 */
97
+ transform: translateZ(0);
96
98
  }
97
99
 
98
100
  .css3d-resolution-wrapper > .map-node,
@@ -112,6 +114,22 @@ body.mind-map-scroll-locked {
112
114
  backface-visibility: visible !important;
113
115
  }
114
116
 
117
+ /* Restore reference high-detail text rasterization.
118
+ Media/template surfaces keep their live-surface visible/flat overrides. */
119
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node,
120
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-bubble,
121
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-note,
122
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-memo,
123
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-file,
124
+ .css3d-resolution-wrapper:not(.lod-low) > .map-node-code {
125
+ -webkit-font-smoothing: antialiased !important;
126
+ -moz-osx-font-smoothing: grayscale !important;
127
+ text-rendering: optimizeLegibility !important;
128
+ -webkit-backface-visibility: hidden !important;
129
+ backface-visibility: hidden !important;
130
+ transform: translateZ(0) !important;
131
+ }
132
+
115
133
  .css3d-resolution-wrapper.node-type-image img,
116
134
  .css3d-resolution-wrapper.node-type-video video,
117
135
  .css3d-resolution-wrapper.node-type-embed iframe,
@@ -1574,9 +1592,9 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1574
1592
  box-sizing: border-box;
1575
1593
  pointer-events: auto;
1576
1594
  transform-origin: 0 0;
1577
- -webkit-font-smoothing: auto;
1578
- -moz-osx-font-smoothing: auto;
1579
- text-rendering: auto;
1595
+ -webkit-font-smoothing: antialiased;
1596
+ -moz-osx-font-smoothing: grayscale;
1597
+ text-rendering: optimizeLegibility;
1580
1598
  contain: layout style paint;
1581
1599
  }
1582
1600
 
@@ -1611,9 +1629,9 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1611
1629
 
1612
1630
  .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay-v2-body {
1613
1631
  pointer-events: auto;
1614
- text-rendering: auto;
1615
- -webkit-font-smoothing: auto;
1616
- -moz-osx-font-smoothing: auto;
1632
+ text-rendering: optimizeLegibility;
1633
+ -webkit-font-smoothing: antialiased;
1634
+ -moz-osx-font-smoothing: grayscale;
1617
1635
  }
1618
1636
 
1619
1637
  body.is-panning .mind-map-text-overlay-v2-card.is-passive .mind-map-text-overlay-v2-body {
@@ -3591,6 +3609,19 @@ html body .css3d-resolution-wrapper:not(.lod-low) {
3591
3609
  0 0 50px rgba(15, 23, 42, 0.08) !important;
3592
3610
  }
3593
3611
 
3612
+ /* Keep the settled full-res edge visually stable with the motion/low-detail shell.
3613
+ Use outline instead of border so the CSS3D hit geometry and layout stay unchanged. */
3614
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-text,
3615
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-markdown,
3616
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-note,
3617
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-code,
3618
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-memo,
3619
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-agent,
3620
+ html body .css3d-resolution-wrapper:not(.lod-low):not(.selected).node-type-automation {
3621
+ outline: 1px solid var(--mind-node-static-edge) !important;
3622
+ outline-offset: 0 !important;
3623
+ }
3624
+
3594
3625
  html body .css3d-resolution-wrapper:not(.lod-low).selected,
3595
3626
  html body .css3d-resolution-wrapper:not(.lod-low).selection-style-agent.selected {
3596
3627
  outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.24) !important;
@@ -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-live-surface-motion-flat-guard-v819';
8
+ const MINDMAP_CORE_BUILD_ID = '20260621-high-detail-ref-aa-v821';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -379,9 +379,9 @@
379
379
  line-height: var(--mind-map-editable-line-height);
380
380
  font-weight: 400;
381
381
  letter-spacing: normal;
382
- -webkit-font-smoothing: auto;
383
- -moz-osx-font-smoothing: auto;
384
- text-rendering: auto;
382
+ -webkit-font-smoothing: antialiased;
383
+ -moz-osx-font-smoothing: grayscale;
384
+ text-rendering: optimizeLegibility;
385
385
  }
386
386
  .markdown-body h1 { font-size: 1.8em; font-weight: bold; margin-top: 1em; margin-bottom: 0.5em; border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; }
387
387
  .markdown-body h2 { font-size: 1.4em; font-weight: bold; margin-top: 1em; margin-bottom: 0.5em; border-bottom: 1px solid #eaecef; padding-bottom: 0.3em; }
@@ -795,11 +795,11 @@
795
795
  .css3d-dynamic-node,
796
796
  [id^="css3d-node-"],
797
797
  .map-node {
798
- -webkit-font-smoothing: auto !important;
799
- -moz-osx-font-smoothing: auto !important;
800
- text-rendering: auto !important;
801
- backface-visibility: visible !important;
802
- -webkit-backface-visibility: visible !important;
798
+ -webkit-font-smoothing: antialiased !important;
799
+ -moz-osx-font-smoothing: grayscale !important;
800
+ text-rendering: optimizeLegibility !important;
801
+ backface-visibility: hidden !important;
802
+ -webkit-backface-visibility: hidden !important;
803
803
  transition: none !important;
804
804
  -webkit-transition: none !important;
805
805
  will-change: auto !important;
@@ -1112,11 +1112,11 @@
1112
1112
  pointer-events: none;
1113
1113
  overflow: visible;
1114
1114
  transform-origin: 0 0;
1115
- -webkit-font-smoothing: auto;
1116
- -moz-osx-font-smoothing: auto;
1117
- text-rendering: auto;
1118
- backface-visibility: visible;
1119
- -webkit-backface-visibility: visible;
1115
+ -webkit-font-smoothing: antialiased;
1116
+ -moz-osx-font-smoothing: grayscale;
1117
+ text-rendering: optimizeLegibility;
1118
+ backface-visibility: hidden;
1119
+ -webkit-backface-visibility: hidden;
1120
1120
  }
1121
1121
 
1122
1122
  .mind-map-text-overlay.mind-map-text-overlay-selectable {
@@ -1171,11 +1171,11 @@
1171
1171
  pointer-events: auto;
1172
1172
  overflow: visible;
1173
1173
  transform-origin: 0 0;
1174
- -webkit-font-smoothing: auto;
1175
- -moz-osx-font-smoothing: auto;
1176
- text-rendering: auto;
1177
- backface-visibility: visible;
1178
- -webkit-backface-visibility: visible;
1174
+ -webkit-font-smoothing: antialiased;
1175
+ -moz-osx-font-smoothing: grayscale;
1176
+ text-rendering: optimizeLegibility;
1177
+ backface-visibility: hidden;
1178
+ -webkit-backface-visibility: hidden;
1179
1179
  }
1180
1180
 
1181
1181
  .mind-map-edit-overlay-card {
@@ -6286,8 +6286,8 @@
6286
6286
  caret-color: #1f2937;
6287
6287
  box-sizing: border-box;
6288
6288
  overflow-y: auto;
6289
- -webkit-font-smoothing: auto;
6290
- text-rendering: auto;
6289
+ -webkit-font-smoothing: antialiased;
6290
+ text-rendering: optimizeLegibility;
6291
6291
  white-space: pre-wrap;
6292
6292
  overflow-wrap: break-word;
6293
6293
  pointer-events: auto;
@@ -20675,8 +20675,8 @@
20675
20675
  overflow-y: auto;
20676
20676
  white-space: pre-wrap;
20677
20677
  overflow-wrap: break-word;
20678
- -webkit-font-smoothing: auto;
20679
- text-rendering: auto;
20678
+ -webkit-font-smoothing: antialiased;
20679
+ text-rendering: optimizeLegibility;
20680
20680
  `;
20681
20681
 
20682
20682
  shell.appendChild(header);
@@ -23426,7 +23426,8 @@
23426
23426
  element.style.transition = 'none';
23427
23427
  element.style.webkitTransition = 'none';
23428
23428
  element.style.willChange = 'auto';
23429
- element.style.backfaceVisibility = 'visible';
23429
+ element.style.backfaceVisibility = info.isMediaNode ? 'visible' : 'hidden';
23430
+ element.style.webkitBackfaceVisibility = info.isMediaNode ? 'visible' : 'hidden';
23430
23431
 
23431
23432
  return {
23432
23433
  element,
@@ -23642,7 +23643,8 @@
23642
23643
  // ▼▼▼ [Perf] GPU acceleration for smooth zoom/pan ▼▼▼
23643
23644
  // 초기에는 꺼둠 (auto). 카메라 이동 시 mind-map-core.js가 setWillChange(true) 호출
23644
23645
  clonedElement.style.willChange = 'auto'; // 'transform';
23645
- clonedElement.style.backfaceVisibility = 'visible';
23646
+ clonedElement.style.backfaceVisibility = isMediaNode ? 'visible' : 'hidden';
23647
+ clonedElement.style.webkitBackfaceVisibility = isMediaNode ? 'visible' : 'hidden';
23646
23648
  // ▲▲▲ [Perf] ▲▲▲
23647
23649
 
23648
23650
  const wrapper = document.createElement('div');
@@ -23674,7 +23676,8 @@
23674
23676
 
23675
23677
  // ▼▼▼ [Perf] GPU acceleration for smooth zoom/pan ▼▼▼
23676
23678
  wrapper.style.willChange = 'auto'; // 'transform';
23677
- wrapper.style.backfaceVisibility = 'visible';
23679
+ wrapper.style.backfaceVisibility = isMediaNode ? 'visible' : 'hidden';
23680
+ wrapper.style.webkitBackfaceVisibility = isMediaNode ? 'visible' : 'hidden';
23678
23681
  wrapper.style.transformStyle = isMediaNode ? 'flat' : '';
23679
23682
  // ▲▲▲ [Perf] ▲▲▲
23680
23683
 
@@ -7430,8 +7430,8 @@ window.MindMapInteractions = (function () {
7430
7430
  caret-color: #1f2937;
7431
7431
  box-sizing: border-box; /* User Request */
7432
7432
  overflow-y: auto; /* User Request */
7433
- -webkit-font-smoothing: auto;
7434
- text-rendering: auto;
7433
+ -webkit-font-smoothing: antialiased;
7434
+ text-rendering: optimizeLegibility;
7435
7435
  white-space: pre-wrap;
7436
7436
  overflow-wrap: break-word;
7437
7437
  `;
@@ -51,7 +51,7 @@
51
51
  // ▲▲▲ [Usage] ▲▲▲
52
52
 
53
53
  // Procedural line rendering settings
54
- const LOD_RENDERER_BUILD_ID = '20260621-live-surface-motion-flat-guard-v819';
54
+ const LOD_RENDERER_BUILD_ID = '20260621-high-detail-ref-aa-v821';
55
55
  const DirtyKind = Object.freeze({
56
56
  ResidentFullRebuild: 'resident-full-rebuild',
57
57
  ResidentPatch: 'resident-patch',
@@ -1960,8 +1960,8 @@
1960
1960
  copyStyle(null, readComputedStyleValue(computed, null, 'text-wrap'), 'text-wrap');
1961
1961
  copyStyle(null, readComputedStyleValue(computed, null, 'text-wrap-mode'), 'text-wrap-mode');
1962
1962
  copyStyle(null, readComputedStyleValue(computed, null, 'text-wrap-style'), 'text-wrap-style');
1963
- targetElement.style.setProperty('-webkit-font-smoothing', 'auto');
1964
- targetElement.style.setProperty('-moz-osx-font-smoothing', 'auto');
1963
+ targetElement.style.setProperty('-webkit-font-smoothing', 'antialiased');
1964
+ targetElement.style.setProperty('-moz-osx-font-smoothing', 'grayscale');
1965
1965
  }
1966
1966
 
1967
1967
  function getTypographySyncChildren(element) {
@@ -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-live-surface-motion-flat-guard-v819" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-live-surface-motion-flat-guard-v819" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-high-detail-ref-aa-v821" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-high-detail-ref-aa-v821" />
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-live-surface-motion-flat-guard-v819';
582
+ const scriptVersion = '20260621-high-detail-ref-aa-v821';
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": "+2wYVwcD",
2
+ "version": "rxpicbiv",
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-eF3w0JTo+uSExdWKpxBfvxWOqnX396AociRomS2GqAI=",
45
+ "hash": "sha256-Ytyz/U4w1wE/ECjNlTAFqh1xWgV0uE+sE7vzlCaiMRw=",
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-yVJwG659ROgSb0WXRPR04D3uI5dDoqZZcracSdq92qI=",
81
+ "hash": "sha256-uvNX7r5gyoWNlNIa4N39EEPU5dxehZdKIdAL32yTxT0=",
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-ThNiOIWPJNcuTCxormzHYE31Qr8s9X3Xueg31Xq/tlc=",
89
+ "hash": "sha256-XB6UFTVZbfLWFunK4KVesvR0KhzQpXQuVHbVB8klcBQ=",
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-1taPMgvVhV1m1iz9G0GYUmAyJ4jhfrVOjlvWJTZK8wQ=",
109
+ "hash": "sha256-uq9ATzcgBbr8qDYE1KS5X3IG/eN9/z56UTAO4IJacfo=",
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-wPOENbEHb4bUCBBSlwdwH2IHZRHblliQVFO8p+9+jMY=",
117
+ "hash": "sha256-4R1aOKDe9u6TTnpOdUZGFqTFGdA0lq8FRiWtDvZktJ4=",
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-1FUmvCT+V+WMFwn6SyIpmOGWo+jEWIdhKItXOxPmSdE=",
157
+ "hash": "sha256-GSc+L9nnGTom3Ay1vGtzi4arj627Ej7slawLaOc0TAE=",
158
158
  "url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
159
159
  },
160
160
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-vAUasi7DPHCqS35l8tqs7Mp5Yg4mlKfEGTvBcdIwxRw=",
837
+ "hash": "sha256-oL2WRzNOECIDEx/aeDYz3LQQzwMcKH9737h850FPcN4=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: +2wYVwcD */
1
+ /* Manifest version: rxpicbiv */
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