@mindexec/cli 0.2.182 → 0.2.184

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.182",
3
+ "version": "0.2.184",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
package/server.js CHANGED
@@ -5487,7 +5487,7 @@ function readSupabaseRuntimeConfig() {
5487
5487
 
5488
5488
  for (const candidate of Array.from(new Set(candidates.map(item => path.resolve(item))))) {
5489
5489
  try {
5490
- const payload = JSON.parse(readFileSync(candidate, 'utf8'));
5490
+ const payload = JSON.parse(readFileSync(candidate, 'utf8').replace(/^\uFEFF/, ''));
5491
5491
  const url = String(payload?.Supabase?.Url || '').trim().replace(/\/+$/, '');
5492
5492
  const key = String(payload?.Supabase?.Key || payload?.Supabase?.AnonKey || payload?.Supabase?.PublishableKey || '').trim();
5493
5493
  if (url && key) {
@@ -6212,9 +6212,20 @@ function scheduleRemoteRegistryFollower(delayMs = REMOTE_REGISTRY_FOLLOWER_POLL_
6212
6212
 
6213
6213
  async function wakeRemoteRegistryFollower(reason = 'wake') {
6214
6214
  if (!REMOTE_REGISTRY_FOLLOWER_ENABLED) {
6215
- return;
6215
+ return serializeRemoteRegistryFollowerState();
6216
6216
  }
6217
- scheduleRemoteRegistryFollower(0, reason);
6217
+
6218
+ if (remoteRegistryFollowerInFlight) {
6219
+ scheduleRemoteRegistryFollower(0, reason);
6220
+ return serializeRemoteRegistryFollowerState();
6221
+ }
6222
+
6223
+ if (remoteRegistryFollowerTimer) {
6224
+ clearTimeout(remoteRegistryFollowerTimer);
6225
+ remoteRegistryFollowerTimer = null;
6226
+ }
6227
+
6228
+ return await runRemoteRegistryFollowerOnce(reason);
6218
6229
  }
6219
6230
 
6220
6231
  function scheduleRemoteHostTargetRenewWake(reason = 'wake', options = {}) {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-7XRSotKxGLacPvrzgqcbO5V4erzykJ+Azl/YdosawZ8=",
4
+ "hash": "sha256-GhxTeykdG7bhUM1muRr4kGUrUES/+vGSP5aeXyYjFHg=",
5
5
  "fingerprinting": {
6
6
  "Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
7
7
  "Markdig.d1j7v41cl1.dll": "Markdig.dll",
@@ -132,7 +132,7 @@
132
132
  "MindExecution.Plugins.PlanMaster.xt4y5gj8yw.dll": "MindExecution.Plugins.PlanMaster.dll",
133
133
  "MindExecution.Plugins.YouTube.kz0lju94md.dll": "MindExecution.Plugins.YouTube.dll",
134
134
  "MindExecution.Shared.7rwzquw93z.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.nm0p8kzaem.dll": "MindExecution.Web.dll",
135
+ "MindExecution.Web.ubzzp2laor.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",
@@ -284,7 +284,7 @@
284
284
  "MindExecution.Plugins.Concept.3mpew6v5hz.dll": "sha256-K6GVU9mkcEQatq6shNKDO9xtahvaLBOhrIOzYda8lAI=",
285
285
  "MindExecution.Plugins.PlanMaster.xt4y5gj8yw.dll": "sha256-Cx47VicQk4brENQ4Y/9SMJ81sawy9AkvnrxuDnqoAYI=",
286
286
  "MindExecution.Shared.7rwzquw93z.dll": "sha256-bZ2rx8V2aQu7Ff4nl/mgbEOg3P/3YNjMmFpIXWcu3cQ=",
287
- "MindExecution.Web.nm0p8kzaem.dll": "sha256-b1fXFM11Vc93TBYNKGDttnHx6g0af+KHR+FUWsX9+iE="
287
+ "MindExecution.Web.ubzzp2laor.dll": "sha256-ZpFRSlgjJOro+XQlN4ibfcYRQ9MT/cCmIahxF5vzj6g="
288
288
  },
289
289
  "lazyAssembly": {
290
290
  "MindExecution.Plugins.Admin.29mytzdaun.dll": "sha256-2mHPbTPcHCi1xPuk3dNMVWxn42xZFUZ3QFhm3xIV/6E=",
@@ -1,4 +1,4 @@
1
- {
1
+ {
2
2
  "OpenRouter": {
3
3
  "ApiKey": ""
4
4
  },
@@ -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=20260617-skill-revenue-first-v609" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-skill-revenue-first-v609" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-session-preserve-v610" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-session-preserve-v610" />
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-skill-revenue-first-v609';
582
+ const scriptVersion = '20260617-session-preserve-v610';
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": "S1VQ9zjD",
2
+ "version": "txzRjXR+",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -446,8 +446,8 @@
446
446
  "url": "_framework/MindExecution.Shared.7rwzquw93z.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-b1fXFM11Vc93TBYNKGDttnHx6g0af+KHR+FUWsX9+iE=",
450
- "url": "_framework/MindExecution.Web.nm0p8kzaem.dll"
449
+ "hash": "sha256-ZpFRSlgjJOro+XQlN4ibfcYRQ9MT/cCmIahxF5vzj6g=",
450
+ "url": "_framework/MindExecution.Web.ubzzp2laor.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-X4fhqxksB60WK0o18Tn3mfIGOFDLmyXFaLHW6jnnW5k=",
773
+ "hash": "sha256-Md+SIi+0yy47q6JzD16P790spl0fjTf2u6gqw9b7jf8=",
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-Cl5HAtm8MMHVU5XeJtZFm9/1ocPBRuzWF1U6MXzsO6A=",
837
+ "hash": "sha256-mkaucN8+gWPpC7OgA7RsIQynHxqe1mlZCquEJdXEdsI=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: S1VQ9zjD */
1
+ /* Manifest version: txzRjXR+ */
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