@mindexec/cli 0.2.325 → 0.2.326

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.325",
3
+ "version": "0.2.326",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -1171,7 +1171,7 @@ body.is-node-dragging * {
1171
1171
 
1172
1172
  .map-node-note.selected {
1173
1173
  /* 선택 시에만 최소한의 glow */
1174
- box-shadow: none !important;
1174
+ box-shadow: 0 0 0 2px rgba(var(--mind-node-selection-glow-rgb), 0.14);
1175
1175
  }
1176
1176
 
1177
1177
  /* ▲▲▲ [Perf] ▲▲▲ */
@@ -1180,19 +1180,26 @@ body.is-node-dragging * {
1180
1180
 
1181
1181
  .map-node-bubble.selected {
1182
1182
  border-color: var(--mind-node-selection-edge) !important;
1183
- box-shadow: none !important;
1183
+ box-shadow: 0 0 0 2px rgba(var(--mind-node-selection-glow-rgb), 0.18),
1184
+ 0 0 22px rgba(var(--mind-node-selection-glow-rgb), 0.18),
1185
+ 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
1184
1186
  overflow: hidden !important;
1185
1187
  }
1186
1188
 
1187
1189
  .map-node-note.selected,
1188
1190
  .map-node-note:focus-within {
1189
1191
  border-color: var(--mind-node-selection-edge) !important;
1190
- box-shadow: none !important;
1192
+ box-shadow:
1193
+ 0 0 18px 0 rgba(var(--mind-node-selection-glow-rgb), 0.24),
1194
+ 0 0 32px 0 rgba(var(--mind-node-selection-glow-soft-rgb), 0.16) !important;
1191
1195
  overflow: hidden !important;
1192
1196
  }
1193
1197
 
1194
- /* Image hard edge lives on its own media surface.
1195
- Text nodes keep a crisp border so overlapping nodes remain readable. */
1198
+ /* Note/Image hard edge lives on the inner CSS3D card in app.css.
1199
+ Keep the soft wrapper shadow, but strip the dark stroke from the card itself. */
1200
+ .map-node-note,
1201
+ .map-node-note.selected,
1202
+ .map-node-note:focus-within,
1196
1203
  .map-node-image-container,
1197
1204
  .map-node-image-container.selected {
1198
1205
  border: none !important;
@@ -1203,38 +1210,61 @@ body.is-node-dragging * {
1203
1210
  }
1204
1211
 
1205
1212
  .css3d-resolution-wrapper.node-type-note {
1206
- -webkit-box-shadow: none !important;
1207
- box-shadow: none !important;
1208
- -webkit-filter: none !important;
1209
- filter: none !important;
1213
+ -webkit-box-shadow:
1214
+ 0 0 6px rgba(15, 23, 42, 0.25),
1215
+ 0 0 16px rgba(15, 23, 42, 0.18),
1216
+ 0 0 30px rgba(15, 23, 42, 0.12),
1217
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1218
+ box-shadow:
1219
+ 0 0 6px rgba(15, 23, 42, 0.25),
1220
+ 0 0 16px rgba(15, 23, 42, 0.18),
1221
+ 0 0 30px rgba(15, 23, 42, 0.12),
1222
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1210
1223
  }
1211
1224
 
1212
1225
  .css3d-resolution-wrapper.selected {
1213
1226
  outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.24) !important;
1214
- outline-offset: 0;
1215
- -webkit-box-shadow: none !important;
1216
- box-shadow: none !important;
1217
- -webkit-filter: none !important;
1218
- filter: none !important;
1227
+ outline-offset: 1px;
1228
+ -webkit-box-shadow:
1229
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
1230
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
1231
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
1232
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
1233
+ box-shadow:
1234
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
1235
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
1236
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
1237
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
1238
+ -webkit-filter: saturate(1.08) !important;
1239
+ filter: saturate(1.08) !important;
1219
1240
  }
1220
1241
 
1221
1242
  .css3d-resolution-wrapper.selection-style-agent.selected {
1222
1243
  outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.24) !important;
1223
- outline-offset: 0;
1224
- -webkit-box-shadow: none !important;
1225
- box-shadow: none !important;
1226
- -webkit-filter: none !important;
1227
- filter: none !important;
1244
+ outline-offset: 1px;
1245
+ -webkit-box-shadow:
1246
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
1247
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
1248
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
1249
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
1250
+ box-shadow:
1251
+ 0 0 4px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.56),
1252
+ 0 0 12px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.44),
1253
+ 0 0 28px rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.32),
1254
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft, 191, 219, 254), 0.26) !important;
1255
+ -webkit-filter: saturate(1.08) !important;
1256
+ filter: saturate(1.08) !important;
1228
1257
  }
1229
1258
 
1230
- /* During resize, keep the crisp selection edge and avoid decorative glow. */
1259
+ /* During resize, keep the crisp selection edge but drop the large blur shadow.
1260
+ The blur bleeds underneath overlapping siblings and looks like a second glow. */
1231
1261
  body.is-resizing .css3d-resolution-wrapper.selected,
1232
1262
  body.is-resizing .css3d-resolution-wrapper.node-type-note.selected,
1233
1263
  body.is-resizing .css3d-resolution-wrapper.node-type-image.selected,
1234
1264
  body.is-resizing .css3d-resolution-wrapper.node-type-video.selected,
1235
1265
  body.is-resizing .css3d-resolution-wrapper.node-type-embed.selected {
1236
1266
  outline: 1px solid rgba(var(--node-selection-glow-rgb, 59, 130, 246), 0.34) !important;
1237
- outline-offset: 0;
1267
+ outline-offset: 1px;
1238
1268
  -webkit-box-shadow: none !important;
1239
1269
  box-shadow: none !important;
1240
1270
  -webkit-filter: none !important;
@@ -1242,10 +1272,18 @@ body.is-resizing .css3d-resolution-wrapper.node-type-embed.selected {
1242
1272
  }
1243
1273
 
1244
1274
  .css3d-resolution-wrapper.node-type-note.selected {
1245
- -webkit-box-shadow: none !important;
1246
- box-shadow: none !important;
1247
- -webkit-filter: none !important;
1248
- filter: none !important;
1275
+ -webkit-box-shadow:
1276
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
1277
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
1278
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
1279
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
1280
+ box-shadow:
1281
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
1282
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
1283
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
1284
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
1285
+ -webkit-filter: saturate(1.08) !important;
1286
+ filter: saturate(1.08) !important;
1249
1287
  }
1250
1288
 
1251
1289
  html.mindcanvas-platform-apple .css3d-resolution-wrapper.selected,
@@ -1260,33 +1298,61 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1260
1298
  }
1261
1299
 
1262
1300
  .css3d-resolution-wrapper.node-type-image {
1263
- -webkit-box-shadow: none !important;
1264
- box-shadow: none !important;
1265
- -webkit-filter: none !important;
1266
- filter: none !important;
1301
+ -webkit-box-shadow:
1302
+ 0 0 6px rgba(15, 23, 42, 0.25),
1303
+ 0 0 16px rgba(15, 23, 42, 0.18),
1304
+ 0 0 30px rgba(15, 23, 42, 0.12),
1305
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1306
+ box-shadow:
1307
+ 0 0 6px rgba(15, 23, 42, 0.25),
1308
+ 0 0 16px rgba(15, 23, 42, 0.18),
1309
+ 0 0 30px rgba(15, 23, 42, 0.12),
1310
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1267
1311
  }
1268
1312
 
1269
1313
  .css3d-resolution-wrapper.node-type-video,
1270
1314
  .css3d-resolution-wrapper.node-type-embed {
1271
- -webkit-box-shadow: none !important;
1272
- box-shadow: none !important;
1273
- -webkit-filter: none !important;
1274
- filter: none !important;
1315
+ -webkit-box-shadow:
1316
+ 0 0 6px rgba(15, 23, 42, 0.25),
1317
+ 0 0 16px rgba(15, 23, 42, 0.18),
1318
+ 0 0 30px rgba(15, 23, 42, 0.12),
1319
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1320
+ box-shadow:
1321
+ 0 0 6px rgba(15, 23, 42, 0.25),
1322
+ 0 0 16px rgba(15, 23, 42, 0.18),
1323
+ 0 0 30px rgba(15, 23, 42, 0.12),
1324
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1275
1325
  }
1276
1326
 
1277
1327
  .css3d-resolution-wrapper.node-type-image.selected {
1278
- -webkit-box-shadow: none !important;
1279
- box-shadow: none !important;
1280
- -webkit-filter: none !important;
1281
- filter: none !important;
1328
+ -webkit-box-shadow:
1329
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
1330
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
1331
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
1332
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
1333
+ box-shadow:
1334
+ 0 0 4px rgba(var(--node-selection-glow-rgb), 0.56),
1335
+ 0 0 12px rgba(var(--node-selection-glow-rgb), 0.44),
1336
+ 0 0 28px rgba(var(--node-selection-glow-rgb), 0.32),
1337
+ 0 0 56px rgba(var(--node-selection-glow-rgb-soft), 0.26) !important;
1338
+ -webkit-filter: saturate(1.08) !important;
1339
+ filter: saturate(1.08) !important;
1282
1340
  }
1283
1341
 
1284
1342
  .css3d-resolution-wrapper.node-type-video.selected,
1285
1343
  .css3d-resolution-wrapper.node-type-embed.selected {
1286
1344
  outline: 1px solid rgba(var(--node-selection-glow-rgb), 0.24) !important;
1287
- outline-offset: 0;
1288
- -webkit-box-shadow: none !important;
1289
- box-shadow: none !important;
1345
+ outline-offset: 1px;
1346
+ -webkit-box-shadow:
1347
+ 0 0 6px rgba(15, 23, 42, 0.25),
1348
+ 0 0 16px rgba(15, 23, 42, 0.18),
1349
+ 0 0 30px rgba(15, 23, 42, 0.12),
1350
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1351
+ box-shadow:
1352
+ 0 0 6px rgba(15, 23, 42, 0.25),
1353
+ 0 0 16px rgba(15, 23, 42, 0.18),
1354
+ 0 0 30px rgba(15, 23, 42, 0.12),
1355
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1290
1356
  -webkit-filter: none !important;
1291
1357
  filter: none !important;
1292
1358
  }
@@ -1294,8 +1360,16 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1294
1360
  .css3d-resolution-wrapper.node-type-video.selected-media-safe,
1295
1361
  .css3d-resolution-wrapper.node-type-embed.selected-media-safe {
1296
1362
  outline: none !important;
1297
- -webkit-box-shadow: none !important;
1298
- box-shadow: none !important;
1363
+ -webkit-box-shadow:
1364
+ 0 0 6px rgba(15, 23, 42, 0.25),
1365
+ 0 0 16px rgba(15, 23, 42, 0.18),
1366
+ 0 0 30px rgba(15, 23, 42, 0.12),
1367
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1368
+ box-shadow:
1369
+ 0 0 6px rgba(15, 23, 42, 0.25),
1370
+ 0 0 16px rgba(15, 23, 42, 0.18),
1371
+ 0 0 30px rgba(15, 23, 42, 0.12),
1372
+ 0 0 50px rgba(15, 23, 42, 0.08) !important;
1299
1373
  -webkit-filter: none !important;
1300
1374
  filter: none !important;
1301
1375
  }
@@ -1303,9 +1377,13 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1303
1377
  .css3d-resolution-wrapper.node-type-video.selected-media-safe .map-node.selected,
1304
1378
  .css3d-resolution-wrapper.node-type-embed.selected-media-safe .map-node.selected {
1305
1379
  outline: 1px solid rgba(var(--node-selection-glow-rgb), 0.82) !important;
1306
- outline-offset: 0;
1307
- -webkit-box-shadow: none !important;
1308
- box-shadow: none !important;
1380
+ outline-offset: -1px;
1381
+ -webkit-box-shadow:
1382
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb), 0.18) inset,
1383
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb-soft), 0.12) !important;
1384
+ box-shadow:
1385
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb), 0.18) inset,
1386
+ 0 0 0 1px rgba(var(--node-selection-glow-rgb-soft), 0.12) !important;
1309
1387
  }
1310
1388
 
1311
1389
  .map-node-memo.selected,
@@ -1316,7 +1394,9 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1316
1394
  .map-node-code.selected,
1317
1395
  .map-node-code:focus-within {
1318
1396
  border-color: var(--mind-node-selection-edge) !important;
1319
- box-shadow: none !important;
1397
+ box-shadow:
1398
+ 0 0 18px 0 rgba(var(--mind-node-selection-glow-rgb), 0.24),
1399
+ 0 0 32px 0 rgba(var(--mind-node-selection-glow-soft-rgb), 0.16) !important;
1320
1400
  overflow: hidden !important;
1321
1401
  }
1322
1402
 
@@ -1329,8 +1409,8 @@ html.mindcanvas-platform-apple .css3d-resolution-wrapper.is-automation-relation-
1329
1409
  overflow: visible !important;
1330
1410
  }
1331
1411
 
1332
- /* Use the wrapper as the single source of truth for CSS3D selection edge.
1333
- Agent wrappers intentionally mirror the edit-state edge so selection/editing
1412
+ /* Use the wrapper as the single source of truth for CSS3D selection glow.
1413
+ Agent wrappers intentionally mirror the edit-state glow so selection/editing
1334
1414
  keep the same visual signature even when overlays swap in and out. */
1335
1415
  .css3d-resolution-wrapper.selected .map-node-bubble.selected,
1336
1416
  .css3d-resolution-wrapper.selected .map-node-code.selected,
@@ -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-passive-overlay-visual-v809';
8
+ const MINDMAP_CORE_BUILD_ID = '20260621-selection-glow-restore-v810';
9
9
  const CanvasPhase = Object.freeze({
10
10
  Booting: 'booting',
11
11
  BoardFileLoading: 'board-file-loading',
@@ -51,7 +51,7 @@
51
51
  // ▲▲▲ [Usage] ▲▲▲
52
52
 
53
53
  // Procedural line rendering settings
54
- const LOD_RENDERER_BUILD_ID = '20260621-passive-overlay-visual-v809';
54
+ const LOD_RENDERER_BUILD_ID = '20260621-selection-glow-restore-v810';
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-passive-overlay-visual-v809" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-passive-overlay-visual-v809" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260621-selection-glow-restore-v810" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260621-selection-glow-restore-v810" />
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-passive-overlay-visual-v809';
582
+ const scriptVersion = '20260621-selection-glow-restore-v810';
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": "/ZP7j8/4",
2
+ "version": "9/HGSmhP",
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-vid9yH+PpB1piyotFJWl7w8T0rHHzozGJXcARF4Bt3M=",
45
+ "hash": "sha256-grOBmhlDEls2i36IFPCu9+S/7jLqg+t0oAfDX0XY4+I=",
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-/B3VgAaxd8kCxinkwTtDL2FZqd/16ZT776aofWm2d3U=",
81
+ "hash": "sha256-Sszhcb7IV0IjCOddmffAgGcAPe969C1hFYtxAnYSiHQ=",
82
82
  "url": "_content/MindExecution.Shared/js/mind-map-core.js"
83
83
  },
84
84
  {
@@ -114,7 +114,7 @@
114
114
  "url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
115
115
  },
116
116
  {
117
- "hash": "sha256-+AKWC0QdceiMs2L5gB8YYo7FGxOKQryQZQUqqcSiE00=",
117
+ "hash": "sha256-IRozBREPf0qnSpFPcNyzy+KuWpB1V4SBFdSjW0DApBc=",
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-KY6fyBhIFE2MDuYOYewFBAjKksJZocJxS2uxk73ND3U=",
837
+ "hash": "sha256-V6xiBA6GFdMa/CSFlEGzssdoQAOUqaN7xjeg7Z82wPI=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: /ZP7j8/4 */
1
+ /* Manifest version: 9/HGSmhP */
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