@mindexec/cli 0.2.172 → 0.2.173

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.172",
3
+ "version": "0.2.173",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
package/server.js CHANGED
@@ -3612,28 +3612,52 @@ function shouldRestartRemoteAgentForTarget(managers = [], leaseId = '') {
3612
3612
  && isRemoteAgentSyncReportForManagers(remoteAgentSyncReportState, managers, leaseId);
3613
3613
  }
3614
3614
 
3615
- function markRemoteAgentReconnectNeededFromReport(report) {
3616
- if (!isRemoteAgentRegistryOwned()
3617
- || !isRemoteAgentSyncReportReconnectSignal(report)
3618
- || !isRemoteAgentSyncReportForManagers(report, remoteAgentState.managerCandidates, remoteAgentState.leaseId)) {
3615
+ function markRemoteAgentReconnectNeeded(reason = 'agent-disconnected', wakeReason = 'agent-disconnected') {
3616
+ if (!isRemoteAgentRegistryOwned()) {
3619
3617
  return false;
3620
3618
  }
3621
3619
 
3622
- const reason = safeRemoteAgentField(report.reason || report.error || 'sync-report-disconnected', 160);
3620
+ const safeReason = safeRemoteAgentField(reason || 'agent-disconnected', 160);
3623
3621
  if (remoteAgentState.needsReconnect !== true) {
3624
3622
  logWarn(
3625
3623
  'remote',
3626
- `managed RemoteAgent marked stale from sync report ${formatKeyValue('reason', reason)} ${formatKeyValue('manager', remoteAgentState.manager || '-')}`);
3624
+ `managed RemoteAgent marked stale ${formatKeyValue('reason', safeReason)} ${formatKeyValue('manager', remoteAgentState.manager || '-')}`);
3627
3625
  }
3626
+
3627
+ remoteAgentState.ready = false;
3628
3628
  remoteAgentState.needsReconnect = true;
3629
- remoteAgentState.reconnectReason = reason;
3630
- remoteAgentState.lastError = reason;
3629
+ remoteAgentState.reconnectReason = safeReason;
3630
+ remoteAgentState.lastError = safeReason;
3631
3631
  remoteAgentState.updatedAt = new Date().toISOString();
3632
3632
  emitBridgeEvent('RemoteAgentNeedsReconnect', serializeRemoteAgentState());
3633
- scheduleRemoteRegistryFollower(0, 'agent-sync-report-disconnected');
3633
+ scheduleRemoteRegistryFollower(0, wakeReason || safeReason);
3634
3634
  return true;
3635
3635
  }
3636
3636
 
3637
+ function markRemoteAgentReconnectNeededFromReport(report) {
3638
+ if (!isRemoteAgentRegistryOwned()
3639
+ || !isRemoteAgentSyncReportReconnectSignal(report)
3640
+ || !isRemoteAgentSyncReportForManagers(report, remoteAgentState.managerCandidates, remoteAgentState.leaseId)) {
3641
+ return false;
3642
+ }
3643
+
3644
+ const reason = safeRemoteAgentField(report.reason || report.error || 'sync-report-disconnected', 160);
3645
+ return markRemoteAgentReconnectNeeded(reason, 'agent-sync-report-disconnected');
3646
+ }
3647
+
3648
+ function isRemoteAgentOutputReconnectSignal(text) {
3649
+ const normalized = String(text || '').toLowerCase();
3650
+ if (!normalized) {
3651
+ return false;
3652
+ }
3653
+
3654
+ if (/connected to remotehub/i.test(normalized) && !/(disconnect|closed|failed|econnreset|etimedout|epipe|socket|websocket|remotehub.*error)/i.test(normalized)) {
3655
+ return false;
3656
+ }
3657
+
3658
+ return /(remotehub.*(disconnect|closed|failed|error)|manager.*(disconnect|closed|failed)|connection.*(closed|lost|reset|refused|failed)|socket.*(closed|reset|hang up)|websocket.*(close|closed|failed)|ws.*(close|closed|failed)|econnreset|read econnreset|etimedout|ehostunreach|enetunreach|epipe|agent-disconnected|remotehub rejected|remotefast agent failed)/i.test(normalized);
3659
+ }
3660
+
3637
3661
  function rememberRemoteAgentSyncReport(report) {
3638
3662
  remoteAgentSyncReportState = report;
3639
3663
  const reason = report.reason || report.error || (report.ok ? 'ok' : 'failed');
@@ -3687,6 +3711,9 @@ function appendRemoteAgentOutput(stream, chunk, stateConnectionKey = '') {
3687
3711
  remoteAgentState.needsReconnect = false;
3688
3712
  remoteAgentState.reconnectReason = '';
3689
3713
  }
3714
+ if (isRemoteAgentOutputReconnectSignal(text)) {
3715
+ markRemoteAgentReconnectNeeded('process-output-disconnected', 'agent-process-output-disconnected');
3716
+ }
3690
3717
  remoteAgentState.updatedAt = new Date().toISOString();
3691
3718
  }
3692
3719
 
@@ -4483,6 +4510,16 @@ function appendRemoteAgentAttemptOutput(attempt, stream, chunk) {
4483
4510
  attempt.state.needsReconnect = false;
4484
4511
  attempt.state.reconnectReason = '';
4485
4512
  }
4513
+ if (isRemoteAgentOutputReconnectSignal(text)) {
4514
+ attempt.state.ready = false;
4515
+ attempt.state.needsReconnect = true;
4516
+ attempt.state.reconnectReason = 'process-output-disconnected';
4517
+ attempt.state.lastError = 'process-output-disconnected';
4518
+ if (remoteAgentState === attempt.state
4519
+ && isRemoteAgentRegistryState(attempt.state)) {
4520
+ markRemoteAgentReconnectNeeded('process-output-disconnected', 'agent-process-output-disconnected');
4521
+ }
4522
+ }
4486
4523
  attempt.state.updatedAt = new Date().toISOString();
4487
4524
  }
4488
4525
 
@@ -2760,6 +2760,78 @@ body.mindcanvas-is-dense .css3d-resolution-wrapper.node-type-templatelauncher.se
2760
2760
  background: #f8fafc;
2761
2761
  }
2762
2762
 
2763
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle {
2764
+ position: absolute;
2765
+ z-index: 30;
2766
+ pointer-events: auto;
2767
+ touch-action: none;
2768
+ opacity: 0;
2769
+ }
2770
+
2771
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.nw,
2772
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.ne,
2773
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.sw,
2774
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.se {
2775
+ width: 18px;
2776
+ height: 18px;
2777
+ }
2778
+
2779
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.nw {
2780
+ top: -6px;
2781
+ left: -6px;
2782
+ cursor: nwse-resize;
2783
+ }
2784
+
2785
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.ne {
2786
+ top: -6px;
2787
+ right: -6px;
2788
+ cursor: nesw-resize;
2789
+ }
2790
+
2791
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.sw {
2792
+ bottom: -6px;
2793
+ left: -6px;
2794
+ cursor: nesw-resize;
2795
+ }
2796
+
2797
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.se {
2798
+ right: -6px;
2799
+ bottom: -6px;
2800
+ cursor: nwse-resize;
2801
+ }
2802
+
2803
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.n,
2804
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.s {
2805
+ left: 14px;
2806
+ right: 14px;
2807
+ height: 12px;
2808
+ cursor: ns-resize;
2809
+ }
2810
+
2811
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.n {
2812
+ top: -5px;
2813
+ }
2814
+
2815
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.s {
2816
+ bottom: -5px;
2817
+ }
2818
+
2819
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.w,
2820
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.e {
2821
+ top: 14px;
2822
+ bottom: 14px;
2823
+ width: 12px;
2824
+ cursor: ew-resize;
2825
+ }
2826
+
2827
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.w {
2828
+ left: -5px;
2829
+ }
2830
+
2831
+ .map-node-template-card.map-node-remote-fleet .remote-fleet-resize-handle.e {
2832
+ right: -5px;
2833
+ }
2834
+
2763
2835
  .map-node-template-card.map-node-remote-fleet .template-card__header--remote-fleet {
2764
2836
  align-items: center;
2765
2837
  }
@@ -12544,6 +12544,37 @@
12544
12544
  return title;
12545
12545
  }
12546
12546
 
12547
+ function ensureRemoteFleetResizeHandles(container, nodeModel) {
12548
+ if (!container) return;
12549
+ const nodeId = String(nodeModel?.id ?? nodeModel?.Id ?? container.dataset?.nodeId ?? '').trim();
12550
+ if (!nodeId) return;
12551
+
12552
+ container.dataset.nodeId = nodeId;
12553
+ const handles = [
12554
+ { className: 'nw', corner: 'TL' },
12555
+ { className: 'ne', corner: 'TR' },
12556
+ { className: 'sw', corner: 'BL' },
12557
+ { className: 'se', corner: 'BR' },
12558
+ { className: 'n', corner: 'T' },
12559
+ { className: 's', corner: 'B' },
12560
+ { className: 'w', corner: 'L' },
12561
+ { className: 'e', corner: 'R' }
12562
+ ];
12563
+
12564
+ handles.forEach(handleInfo => {
12565
+ let handle = container.querySelector(`:scope > .remote-fleet-resize-handle.${handleInfo.className}`);
12566
+ if (!handle) {
12567
+ handle = document.createElement('div');
12568
+ handle.className = `resize-handle remote-fleet-resize-handle ${handleInfo.className}`;
12569
+ handle.setAttribute('aria-hidden', 'true');
12570
+ container.appendChild(handle);
12571
+ }
12572
+
12573
+ handle.dataset.nodeId = nodeId;
12574
+ handle.dataset.corner = handleInfo.corner;
12575
+ });
12576
+ }
12577
+
12547
12578
  function createRemoteFleetTemplateNodeElement(nodeModel) {
12548
12579
  const width = Number(nodeModel.width ?? nodeModel.Width ?? 960);
12549
12580
  const height = Number(nodeModel.height ?? nodeModel.Height ?? 620);
@@ -12559,6 +12590,7 @@
12559
12590
  container.style.cssText = `
12560
12591
  width: ${width}px;
12561
12592
  height: ${height}px;
12593
+ position: relative;
12562
12594
  box-sizing: border-box;
12563
12595
  overflow: hidden;
12564
12596
  pointer-events: auto;
@@ -12595,6 +12627,7 @@
12595
12627
  shell.appendChild(bodyView);
12596
12628
 
12597
12629
  container.appendChild(shell);
12630
+ ensureRemoteFleetResizeHandles(container, nodeModel);
12598
12631
  return container;
12599
12632
  }
12600
12633
 
@@ -22730,6 +22763,7 @@
22730
22763
  card.style.maxHeight = `${worldHeight}px`;
22731
22764
  card.style.transform = `scale(${resolutionScale})`;
22732
22765
  card.style.transformOrigin = '0 0';
22766
+ ensureRemoteFleetResizeHandles(card, nodeModel);
22733
22767
 
22734
22768
  const titleEl = card.querySelector('.template-card__title');
22735
22769
  if (titleEl) {
@@ -2958,6 +2958,10 @@ window.MindMapInteractions = (function () {
2958
2958
  if (handleElement.classList?.contains('ne')) return 'TR';
2959
2959
  if (handleElement.classList?.contains('sw')) return 'BL';
2960
2960
  if (handleElement.classList?.contains('se')) return 'BR';
2961
+ if (handleElement.classList?.contains('n')) return 'T';
2962
+ if (handleElement.classList?.contains('s')) return 'B';
2963
+ if (handleElement.classList?.contains('w')) return 'L';
2964
+ if (handleElement.classList?.contains('e')) return 'R';
2961
2965
  return 'BR';
2962
2966
  }
2963
2967
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-VbzQ9FDVKv1k9HSQjBpufXXSFyypvSzDv6diX7R22Pw=",
4
+ "hash": "sha256-TgvCjZ1dqCGRJxQ8io7+BgHhAWdNWEvDamL5lrXcC0g=",
5
5
  "fingerprinting": {
6
6
  "Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
7
7
  "Markdig.d1j7v41cl1.dll": "Markdig.dll",
@@ -126,13 +126,13 @@
126
126
  "MindExecution.Core.te2oaei5ec.dll": "MindExecution.Core.dll",
127
127
  "MindExecution.Kernel.n5peonkatw.dll": "MindExecution.Kernel.dll",
128
128
  "MindExecution.Plugins.Admin.5zyeb2m709.dll": "MindExecution.Plugins.Admin.dll",
129
- "MindExecution.Plugins.Business.jn5nc7okql.dll": "MindExecution.Plugins.Business.dll",
130
- "MindExecution.Plugins.Concept.9wkocp9mtr.dll": "MindExecution.Plugins.Concept.dll",
129
+ "MindExecution.Plugins.Business.qf0u584aql.dll": "MindExecution.Plugins.Business.dll",
130
+ "MindExecution.Plugins.Concept.dol9cxm11l.dll": "MindExecution.Plugins.Concept.dll",
131
131
  "MindExecution.Plugins.Directory.1argo44nph.dll": "MindExecution.Plugins.Directory.dll",
132
- "MindExecution.Plugins.PlanMaster.esbz48id1o.dll": "MindExecution.Plugins.PlanMaster.dll",
133
- "MindExecution.Plugins.YouTube.84y9bi1gi2.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.epgga7dnyq.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.33jjm5osx9.dll": "MindExecution.Web.dll",
132
+ "MindExecution.Plugins.PlanMaster.tuyuwdmm8m.dll": "MindExecution.Plugins.PlanMaster.dll",
133
+ "MindExecution.Plugins.YouTube.wr4ic92azb.dll": "MindExecution.Plugins.YouTube.dll",
134
+ "MindExecution.Shared.t8xvnypbv2.dll": "MindExecution.Shared.dll",
135
+ "MindExecution.Web.m8joypnkws.dll": "MindExecution.Web.dll",
136
136
  "dotnet.js": "dotnet.js",
137
137
  "dotnet.native.qc8g39g30v.js": "dotnet.native.js",
138
138
  "dotnet.native.boem75ye5i.wasm": "dotnet.native.wasm",
@@ -280,16 +280,16 @@
280
280
  "netstandard.yvr3prsx0x.dll": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
281
281
  "MindExecution.Core.te2oaei5ec.dll": "sha256-yzvF/UwfBMiJb2zQvlW0HSNU9VJeFPsgsB40BszINvc=",
282
282
  "MindExecution.Kernel.n5peonkatw.dll": "sha256-JfXgzqcnjRbW+XlMja53/jDG+/10sNVp+2V4F8w9s+Q=",
283
- "MindExecution.Plugins.Concept.9wkocp9mtr.dll": "sha256-yR8J6X8EHVEsX8HoKv4qEiXDb2svFAgOHpRUHysPW3k=",
284
- "MindExecution.Plugins.PlanMaster.esbz48id1o.dll": "sha256-birepmbiBhlyA+hKwmofYfcG/PQzltuAi/ArgJITews=",
285
- "MindExecution.Shared.epgga7dnyq.dll": "sha256-bvGDhZ63Omm5J7Wi24jWJrR9BfXgAC4kOGdfu8Oo2xM=",
286
- "MindExecution.Web.33jjm5osx9.dll": "sha256-oY6r6MMAQn+tTAjj3OBUfb5vFTu8/ARH0tGsxDHzf9Y="
283
+ "MindExecution.Plugins.Concept.dol9cxm11l.dll": "sha256-/SUIEG5MZb4+puDsZDDWw6hfS4PONtwIzE1h2aiQIPc=",
284
+ "MindExecution.Plugins.PlanMaster.tuyuwdmm8m.dll": "sha256-C6A2SvumFM2lEygQcugCNBnUS5cyLMARvLTKpvET4K0=",
285
+ "MindExecution.Shared.t8xvnypbv2.dll": "sha256-87Z1nJZ+TMTxIUmG78ic/qVGB0GvCTiAvNmoIcg8kNY=",
286
+ "MindExecution.Web.m8joypnkws.dll": "sha256-Zk0KZ23Oeosh0KXUoUXS6GFzT30CaG1L9L2GZqtETR4="
287
287
  },
288
288
  "lazyAssembly": {
289
289
  "MindExecution.Plugins.Admin.5zyeb2m709.dll": "sha256-kfvMS18tjQsoBT/nL40x6HiLaNM3Ls5G71Fk4skXtLg=",
290
- "MindExecution.Plugins.Business.jn5nc7okql.dll": "sha256-XwSTzDqTVFI7Ok/VMeaIQW/zbIp0Lx7dvWJ8QC7K3w8=",
290
+ "MindExecution.Plugins.Business.qf0u584aql.dll": "sha256-tmIjZsRdM+ZZmXS7a8QWtO4F4uQnzlF0LaMox4tyS0o=",
291
291
  "MindExecution.Plugins.Directory.1argo44nph.dll": "sha256-GZZuAT3WZd9wDjQd+H8f6V9R2UYeLl/VOZxl9BnQVO0=",
292
- "MindExecution.Plugins.YouTube.84y9bi1gi2.dll": "sha256-CGhi65JywxbQoa9uhGP+3/fLvOCrbEbGDea2P8M0m2M="
292
+ "MindExecution.Plugins.YouTube.wr4ic92azb.dll": "sha256-rNhLCFWuy8MyuyPOFJo03MHWrULpJe4pzQTPYu/mqbg="
293
293
  }
294
294
  },
295
295
  "cacheBootResources": true,
@@ -4,11 +4,11 @@
4
4
  <head>
5
5
  <meta charset="utf-8" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <title>MindExec | Run your ideas as AI task graphs</title>
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." />
7
+ <title>MindExec | Turn ideas into revenue execution</title>
8
+ <meta name="description" content="MindExec is an AI execution canvas for solo builders who want to turn notes, research, assets, and repeatable Skills into practical business execution." />
9
9
  <base href="/" />
10
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-mdm-resize-reconnect-v601" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-mdm-resize-reconnect-v601" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-mdm-resize-reconnect-v603" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-mdm-resize-reconnect-v603" />
12
12
  <!-- ?쇄뼹??Font Awesome (local) ?쇄뼹??-->
13
13
  <link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
14
14
  <!-- ?꿎뼯??-->
@@ -97,7 +97,7 @@
97
97
  <article class="app-static-fallback" id="app-static-fallback">
98
98
  <div class="app-static-fallback__eyebrow">MindExec</div>
99
99
  <h1>MindExec</h1>
100
- <p>Run your ideas as AI task graphs. MindExec starts with free browser tools for markdown previews, README checks, notes, and clipboard capture. When the work becomes worth saving, move it into MindCanvas for persistent projects, AI-assisted organization, and visual workflows.</p>
100
+ <p>Turn ideas into revenue execution. MindExec starts with free browser tools for notes and previews, then moves serious work into MindCanvas where context, AI Tasks, Skills, media, and results stay connected.</p>
101
101
  <p><a href="/mindcanvas">Open MindCanvas</a> | <a href="/pricing">See pricing</a> | <a href="/tools">Browse free tools</a></p>
102
102
  <noscript>
103
103
  <p>JavaScript is required for the interactive tool experience.</p>
@@ -579,7 +579,7 @@
579
579
  }
580
580
 
581
581
  const base = '_content/MindExecution.Shared/js/';
582
- const scriptVersion = '20260617-mdm-resize-reconnect-v601';
582
+ const scriptVersion = '20260617-mdm-resize-reconnect-v603';
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": "+QtDGuJR",
2
+ "version": "eiceNpLK",
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-VyGjzwCd9WoJ0gu1JXBtSoLcGDHgxgkAnE+q6Pcza0s=",
45
+ "hash": "sha256-fLjQy3sDstLUw2vPbbHYxDRRywLLKUCeSvDhQgPwvmY=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -86,7 +86,7 @@
86
86
  "url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
87
87
  },
88
88
  {
89
- "hash": "sha256-HUh8SFzEyHEcNhTeXl4RhIDL2N8FGgQ2loi+CMn8ZWk=",
89
+ "hash": "sha256-6dKXU8IIa84Vj+0pbgSEl5ju2n7Rv8ADCVEMQ+2SPFY=",
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-l1g4NKeSMjorH0cZmdjmzRef2W6vPhmZgoNeo4TWKl8=",
109
+ "hash": "sha256-JI+LT7R0ketlHrXy9bmGYhz17hSJ002YmX+TcqftALY=",
110
110
  "url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
111
111
  },
112
112
  {
@@ -422,32 +422,32 @@
422
422
  "url": "_framework/MindExecution.Plugins.Admin.5zyeb2m709.dll"
423
423
  },
424
424
  {
425
- "hash": "sha256-XwSTzDqTVFI7Ok/VMeaIQW/zbIp0Lx7dvWJ8QC7K3w8=",
426
- "url": "_framework/MindExecution.Plugins.Business.jn5nc7okql.dll"
425
+ "hash": "sha256-tmIjZsRdM+ZZmXS7a8QWtO4F4uQnzlF0LaMox4tyS0o=",
426
+ "url": "_framework/MindExecution.Plugins.Business.qf0u584aql.dll"
427
427
  },
428
428
  {
429
- "hash": "sha256-yR8J6X8EHVEsX8HoKv4qEiXDb2svFAgOHpRUHysPW3k=",
430
- "url": "_framework/MindExecution.Plugins.Concept.9wkocp9mtr.dll"
429
+ "hash": "sha256-/SUIEG5MZb4+puDsZDDWw6hfS4PONtwIzE1h2aiQIPc=",
430
+ "url": "_framework/MindExecution.Plugins.Concept.dol9cxm11l.dll"
431
431
  },
432
432
  {
433
433
  "hash": "sha256-GZZuAT3WZd9wDjQd+H8f6V9R2UYeLl/VOZxl9BnQVO0=",
434
434
  "url": "_framework/MindExecution.Plugins.Directory.1argo44nph.dll"
435
435
  },
436
436
  {
437
- "hash": "sha256-birepmbiBhlyA+hKwmofYfcG/PQzltuAi/ArgJITews=",
438
- "url": "_framework/MindExecution.Plugins.PlanMaster.esbz48id1o.dll"
437
+ "hash": "sha256-C6A2SvumFM2lEygQcugCNBnUS5cyLMARvLTKpvET4K0=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.tuyuwdmm8m.dll"
439
439
  },
440
440
  {
441
- "hash": "sha256-CGhi65JywxbQoa9uhGP+3/fLvOCrbEbGDea2P8M0m2M=",
442
- "url": "_framework/MindExecution.Plugins.YouTube.84y9bi1gi2.dll"
441
+ "hash": "sha256-rNhLCFWuy8MyuyPOFJo03MHWrULpJe4pzQTPYu/mqbg=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.wr4ic92azb.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-bvGDhZ63Omm5J7Wi24jWJrR9BfXgAC4kOGdfu8Oo2xM=",
446
- "url": "_framework/MindExecution.Shared.epgga7dnyq.dll"
445
+ "hash": "sha256-87Z1nJZ+TMTxIUmG78ic/qVGB0GvCTiAvNmoIcg8kNY=",
446
+ "url": "_framework/MindExecution.Shared.t8xvnypbv2.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-oY6r6MMAQn+tTAjj3OBUfb5vFTu8/ARH0tGsxDHzf9Y=",
450
- "url": "_framework/MindExecution.Web.33jjm5osx9.dll"
449
+ "hash": "sha256-Zk0KZ23Oeosh0KXUoUXS6GFzT30CaG1L9L2GZqtETR4=",
450
+ "url": "_framework/MindExecution.Web.m8joypnkws.dll"
451
451
  },
452
452
  {
453
453
  "hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
@@ -770,7 +770,7 @@
770
770
  "url": "_framework/Websocket.Client.vapounvmnl.dll"
771
771
  },
772
772
  {
773
- "hash": "sha256-VDxne0z23poLPLBSJ7cGId3lvBOoMAeHimT6xgr+Gqw=",
773
+ "hash": "sha256-u7906sB+wUPNOO2/kISyDTP821RL/vVklUScBkrAyrU=",
774
774
  "url": "_framework/blazor.boot.json"
775
775
  },
776
776
  {
@@ -834,7 +834,7 @@
834
834
  "url": "image-manifest.json"
835
835
  },
836
836
  {
837
- "hash": "sha256-Qf6M96T+/y2AJeF+gEWuIhhNYDBYOFI/M7pLU8fiUfM=",
837
+ "hash": "sha256-C3sh+TxLtsJO1qKy6hXv1WjUV+B+hrswm2oJE/xbw1Q=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: +QtDGuJR */
1
+ /* Manifest version: eiceNpLK */
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