@mindexec/cli 0.2.149 → 0.2.150

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.149",
3
+ "version": "0.2.150",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -945,12 +945,12 @@ try {
945
945
  assert.match(cards[0]?.title || '', /Seen:/);
946
946
  assert.match(cards[0]?.title || '', /Uptime:/);
947
947
  assert.equal(/\b(Seen|Uptime|Mem|Load)\b/.test(cards[0]?.textContent || ''), false);
948
- assert.match(deviceGrid.style.cssText, /minmax\(132px,\s*1fr\)/);
948
+ assert.match(deviceGrid.style.cssText, /minmax\(198px,\s*1fr\)/);
949
949
  sizeControls.querySelector('[data-remote-fleet-action="monitor-size-up"]').dispatchEvent({ type: 'click' });
950
950
  assert.equal(bodyView.dataset.remoteFleetDensity, 'large');
951
- assert.match(bodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(168px,\s*1fr\)/);
951
+ assert.match(bodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(297px,\s*1fr\)/);
952
952
  assert.equal(mirrorBodyView.dataset.remoteFleetDensity, 'large');
953
- assert.match(mirrorBodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(168px,\s*1fr\)/);
953
+ assert.match(mirrorBodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(297px,\s*1fr\)/);
954
954
  assert.ok(diagnostics.textOverlayInvalidations.some(entry =>
955
955
  entry.nodeId === 'remote-fleet-render-smoke'
956
956
  && entry.reason === 'remote-monitor-size'));
@@ -961,9 +961,15 @@ try {
961
961
  && entry.overlayInvalidated === true));
962
962
  bodyView.querySelector('[data-remote-fleet-action="monitor-size-down"]').dispatchEvent({ type: 'click' });
963
963
  assert.equal(bodyView.dataset.remoteFleetDensity, 'cards');
964
- assert.match(bodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(132px,\s*1fr\)/);
964
+ assert.match(bodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(198px,\s*1fr\)/);
965
965
  assert.equal(mirrorBodyView.dataset.remoteFleetDensity, 'cards');
966
- assert.match(mirrorBodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(132px,\s*1fr\)/);
966
+ assert.match(mirrorBodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(198px,\s*1fr\)/);
967
+ bodyView.querySelector('[data-remote-fleet-action="monitor-size-down"]').dispatchEvent({ type: 'click' });
968
+ assert.equal(bodyView.dataset.remoteFleetDensity, 'dense');
969
+ assert.match(bodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(132px,\s*1fr\)/);
970
+ bodyView.querySelector('[data-remote-fleet-action="monitor-size-up"]').dispatchEvent({ type: 'click' });
971
+ assert.equal(bodyView.dataset.remoteFleetDensity, 'cards');
972
+ assert.match(bodyView.querySelector('[data-remote-fleet-device-grid="true"]')?.style.cssText || '', /minmax\(198px,\s*1fr\)/);
967
973
  mirrorShell.remove();
968
974
  cards = bodyView.querySelectorAll('article[data-device-id]');
969
975
  const patchTarget = devices.find(device =>
@@ -1320,7 +1326,7 @@ try {
1320
1326
  assert.ok(emptyScreenShell);
1321
1327
  assert.match(emptyScreenShell.style.cssText, /padding:\s*2px 4px 6px 4px;/);
1322
1328
  const emptyScreens = emptyBody.querySelectorAll('[data-remote-fleet-empty-screen="true"]');
1323
- assert.ok(emptyScreens.length >= 24, `expected empty monitor to fill space, got ${emptyScreens.length}`);
1329
+ assert.ok(emptyScreens.length >= 12, `expected empty monitor to fill space, got ${emptyScreens.length}`);
1324
1330
  assert.notEqual(emptyScreens.length, 6);
1325
1331
  assert.match(emptyScreens[0].style.cssText, /border-radius:\s*0/);
1326
1332
  assert.ok(Array.from(emptyBody.children).map(child =>
@@ -3813,13 +3813,13 @@
3813
3813
  const REMOTE_FLEET_DEVICE_SEMANTIC_TYPE = 'RemoteFleetDevice';
3814
3814
  const REMOTE_FLEET_CENTER_NUDGE_PX = 4;
3815
3815
  const REMOTE_FLEET_MONITOR_TILE_GAP_PX = 8;
3816
- const REMOTE_FLEET_EMPTY_SCREEN_MIN_WIDTH = 132;
3817
- const REMOTE_FLEET_EMPTY_SCREEN_MIN_HEIGHT = 72;
3816
+ const REMOTE_FLEET_EMPTY_SCREEN_MIN_WIDTH = 198;
3817
+ const REMOTE_FLEET_EMPTY_SCREEN_MIN_HEIGHT = 108;
3818
3818
  const REMOTE_FLEET_MONITOR_SIZE_LEVELS = Object.freeze(['dense', 'cards', 'large']);
3819
3819
  const REMOTE_FLEET_MONITOR_TILE_METRICS = Object.freeze({
3820
- dense: Object.freeze({ tileMinWidth: 104, tileMinHeight: 66, emptyMinWidth: 104, emptyMinHeight: 58 }),
3821
- cards: Object.freeze({ tileMinWidth: 132, tileMinHeight: 84, emptyMinWidth: 132, emptyMinHeight: 72 }),
3822
- large: Object.freeze({ tileMinWidth: 168, tileMinHeight: 106, emptyMinWidth: 168, emptyMinHeight: 94 })
3820
+ dense: Object.freeze({ tileMinWidth: 132, tileMinHeight: 84, emptyMinWidth: 132, emptyMinHeight: 72 }),
3821
+ cards: Object.freeze({ tileMinWidth: 198, tileMinHeight: 126, emptyMinWidth: 198, emptyMinHeight: 108 }),
3822
+ large: Object.freeze({ tileMinWidth: 297, tileMinHeight: 189, emptyMinWidth: 297, emptyMinHeight: 162 })
3823
3823
  });
3824
3824
  const AUTOMATION_NODE_KIND_METADATA_KEY = 'AutomationNodeKind';
3825
3825
  const AUTOMATION_NODE_LABEL_METADATA_KEY = 'AutomationNodeLabel';
@@ -7,8 +7,8 @@
7
7
  <title>MindExec | Run your ideas as AI task graphs</title>
8
8
  <meta name="description" content="MindExec is an AI execution canvas for solo builders, researchers, developers, and creators. Start with free browser tools, then move serious work into saved MindCanvas projects." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-mdm-host-lamp-v584" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-mdm-host-lamp-v584" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-mdm-tile-scale-v585" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-mdm-tile-scale-v585" />
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 = '20260617-mdm-host-lamp-v584';
582
+ const scriptVersion = '20260617-mdm-tile-scale-v585';
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": "D5pcdHTt",
2
+ "version": "ZfLSWK2O",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-RSQ+302zp4KqLtkoQdqlFYULUOqzi/VO90NwHsGKcl8=",
89
+ "hash": "sha256-Ma2j27vONNBesOrw65Auhtvwr3a5NFSp7sDag7VUo38=",
90
90
  "url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
91
91
  },
92
92
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-cQP7X8qq+FUS4hnGN9p8Gya3DsWc9dEG/9XlQWuu1Ms=",
837
+ "hash": "sha256-uZsIbGZb6Q24FUaQCppHT2DCnj7ae7QpkaKq6YnmLIY=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: D5pcdHTt */
1
+ /* Manifest version: ZfLSWK2O */
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