@mindexec/cli 0.2.458 → 0.2.460

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.
Files changed (41) hide show
  1. package/desktop-workspace-state.cjs +120 -0
  2. package/electron/main.cjs +17 -6
  3. package/electron/source-smoke.mjs +21 -0
  4. package/electron/windows-package-smoke.mjs +8 -2
  5. package/package.json +6 -5
  6. package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
  7. package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
  8. package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
  9. package/scripts/desktop-workspace-state-smoke.mjs +81 -0
  10. package/server.js +36 -16
  11. package/wwwroot/_content/MindExecution.Shared/js/mind-map-animated-image-preview.js +270 -0
  12. package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +106 -60
  13. package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +30 -26
  14. package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +94 -124
  15. package/wwwroot/_content/MindExecution.Shared/js/mind-map-menu-manager.js +43 -21
  16. package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +45 -13
  17. package/wwwroot/_content/MindExecution.Shared/js/mind-map-render-plan.js +117 -1
  18. package/wwwroot/_content/MindExecution.Shared/js/mind-map-texture-factory.js +4 -1
  19. package/wwwroot/_framework/{MindExecution.Core.2ch68iyy8o.dll → MindExecution.Core.oqju650dkd.dll} +0 -0
  20. package/wwwroot/_framework/{MindExecution.Kernel.dh617xfv36.dll → MindExecution.Kernel.7zjugdfmfg.dll} +0 -0
  21. package/wwwroot/_framework/{MindExecution.Plugins.Admin.0sm50hbae9.dll → MindExecution.Plugins.Admin.qln7lkmsnn.dll} +0 -0
  22. package/wwwroot/_framework/{MindExecution.Plugins.Business.3wq01orrbu.dll → MindExecution.Plugins.Business.rd6flxuebm.dll} +0 -0
  23. package/wwwroot/_framework/{MindExecution.Plugins.Concept.z8yl28fa2a.dll → MindExecution.Plugins.Concept.0qrgx3epss.dll} +0 -0
  24. package/wwwroot/_framework/{MindExecution.Plugins.Directory.m7murp5oes.dll → MindExecution.Plugins.Directory.4prauy9d1z.dll} +0 -0
  25. package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.yuyrbpf0vh.dll → MindExecution.Plugins.PlanMaster.cobfta1p3l.dll} +0 -0
  26. package/wwwroot/_framework/{MindExecution.Plugins.YouTube.rwxvn00rm2.dll → MindExecution.Plugins.YouTube.99bahbgkkr.dll} +0 -0
  27. package/wwwroot/_framework/{MindExecution.Shared.r9k48iyijb.dll → MindExecution.Shared.sevaa4rgkp.dll} +0 -0
  28. package/wwwroot/_framework/{MindExecution.Web.742aribkxm.dll → MindExecution.Web.coqh2ccnuk.dll} +0 -0
  29. package/wwwroot/_framework/blazor.boot.json +21 -21
  30. package/wwwroot/app-icon-1024.png +0 -0
  31. package/wwwroot/apple-touch-icon.png +0 -0
  32. package/wwwroot/appsettings.json +81 -81
  33. package/wwwroot/favicon-32x32.png +0 -0
  34. package/wwwroot/favicon.ico +0 -0
  35. package/wwwroot/icon-192.png +0 -0
  36. package/wwwroot/icon-512.png +0 -0
  37. package/wwwroot/index.html +70 -46
  38. package/wwwroot/manifest.webmanifest +4 -4
  39. package/wwwroot/mindexec-favicon-v3.png +0 -0
  40. package/wwwroot/service-worker-assets.js +888 -880
  41. package/wwwroot/service-worker.js +1 -1
@@ -7,55 +7,85 @@
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
- <meta name="theme-color" content="#071a36" />
11
- <link rel="icon" type="image/png" sizes="32x32" href="/mindexec-favicon-v2.png" />
12
- <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png?v=20260728-app-icon-v1" />
13
- <link rel="manifest" href="manifest.webmanifest?v=20260728-app-icon-v1" />
10
+ <meta name="theme-color" content="#f8fafc" />
11
+ <link rel="icon" type="image/png" sizes="32x32" href="/mindexec-favicon-v3.png" />
12
+ <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png?v=20260815-app-icon-v2" />
13
+ <link rel="manifest" href="manifest.webmanifest?v=20260815-app-icon-v2" />
14
14
  <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260629-ai-task-flow-v863" />
15
15
  <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260629-mdm-shadow-v856" />
16
16
  <!-- ??좎뜦堉??Font Awesome (local) ??좎뜦堉??-->
17
17
  <link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
18
18
  <!-- ??좎뜦堉??-->
19
19
  <style>
20
+ html,
21
+ body {
22
+ margin: 0;
23
+ background: #f8fafc;
24
+ }
25
+
20
26
  #app {
21
27
  min-height: 100vh;
22
28
  }
23
29
 
24
30
  .app-static-fallback {
25
- width: min(960px, calc(100% - 32px));
26
- margin: 0 auto;
27
- padding: 56px 0 48px;
28
- color: #0f172a;
29
- line-height: 1.7;
31
+ position: fixed;
32
+ inset: 0;
33
+ z-index: 10;
34
+ box-sizing: border-box;
35
+ display: flex;
36
+ align-items: center;
37
+ justify-content: center;
38
+ width: 100%;
39
+ margin: 0;
40
+ padding: 24px;
41
+ background: #f8fafc;
42
+ color: #64748b;
43
+ font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
30
44
  }
31
45
 
32
- .app-static-fallback__eyebrow {
33
- display: inline-flex;
34
- padding: 6px 10px;
35
- border-radius: 999px;
36
- background: rgba(255, 255, 255, 0.84);
37
- border: 1px solid rgba(148, 163, 184, 0.25);
38
- font-size: 12px;
39
- font-weight: 700;
40
- color: #334155;
46
+ .app-loading-shell {
47
+ display: flex;
48
+ flex-direction: column;
49
+ align-items: center;
50
+ gap: 14px;
51
+ text-align: center;
41
52
  }
42
53
 
43
- .app-static-fallback h1 {
44
- margin: 16px 0 0;
45
- font-size: clamp(30px, 4vw, 48px);
46
- line-height: 1.05;
47
- font-weight: 800;
54
+ .app-loading-shell__logo {
55
+ display: block;
56
+ width: 44px;
57
+ height: 44px;
48
58
  }
49
59
 
50
- .app-static-fallback p {
51
- max-width: 760px;
52
- margin: 16px 0 0;
53
- color: #475569;
60
+ .app-loading-spinner {
61
+ box-sizing: border-box;
62
+ width: 34px;
63
+ height: 34px;
64
+ border: 3px solid #dbe5f0;
65
+ border-top-color: #2563eb;
66
+ border-radius: 50%;
67
+ animation: app-loading-spin 720ms linear infinite;
54
68
  }
55
69
 
56
- .app-static-fallback a {
57
- color: #0f172a;
58
- font-weight: 700;
70
+ .app-loading-shell__label,
71
+ .app-loading-shell__noscript {
72
+ margin: 0;
73
+ font-size: 13px;
74
+ line-height: 1.4;
75
+ font-weight: 600;
76
+ letter-spacing: 0.01em;
77
+ }
78
+
79
+ @keyframes app-loading-spin {
80
+ to {
81
+ transform: rotate(360deg);
82
+ }
83
+ }
84
+
85
+ @media (prefers-reduced-motion: reduce) {
86
+ .app-loading-spinner {
87
+ animation-duration: 1600ms;
88
+ }
59
89
  }
60
90
 
61
91
  #blazor-error-ui {
@@ -99,13 +129,14 @@
99
129
  <div id="app-container">
100
130
  <div id="app">
101
131
  <article class="app-static-fallback" id="app-static-fallback">
102
- <div class="app-static-fallback__eyebrow">MindExec</div>
103
- <h1>MindExec</h1>
104
- <p>Turn ideas into revenue execution. MindExec is a Business Execution OS that moves serious work into MindCanvas, where context, AI Tasks, execution Skills, media, and results stay connected.</p>
105
- <p><a href="/mindcanvas">Open MindCanvas</a> | <a href="/pricing">See pricing</a> | <a href="/tools">Browse free tools</a></p>
106
- <noscript>
107
- <p>JavaScript is required for the interactive tool experience.</p>
108
- </noscript>
132
+ <div class="app-loading-shell" role="status" aria-live="polite" aria-label="Loading MindCanvas">
133
+ <img class="app-loading-shell__logo" src="icon-192.png?v=20260815-app-icon-v2" alt="" aria-hidden="true" />
134
+ <div class="app-loading-spinner" aria-hidden="true"></div>
135
+ <p class="app-loading-shell__label">Loading MindCanvas&hellip;</p>
136
+ <noscript>
137
+ <p class="app-loading-shell__noscript">JavaScript is required to start MindCanvas.</p>
138
+ </noscript>
139
+ </div>
109
140
  </article>
110
141
  </div>
111
142
  </div>
@@ -583,7 +614,7 @@
583
614
  }
584
615
 
585
616
  const base = '_content/MindExecution.Shared/js/';
586
- const scriptVersion = '20260806-thumbnail-agents-v964';
617
+ const scriptVersion = '20260815-lod-grid-live-v973';
587
618
  const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
588
619
  console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
589
620
  const criticalScripts = [
@@ -604,6 +635,7 @@
604
635
  'mind-map-object-manager.js',
605
636
  'mind-map-pipeline.js',
606
637
  'mind-map-nodes.js',
638
+ 'mind-map-animated-image-preview.js',
607
639
  'mind-map-menu-manager.js',
608
640
  'mind-map-multi-select.js',
609
641
  'mind-map-interactions.js',
@@ -735,11 +767,3 @@
735
767
  </body>
736
768
 
737
769
  </html>
738
-
739
-
740
-
741
-
742
-
743
-
744
-
745
-
@@ -4,18 +4,18 @@
4
4
  "id": "./",
5
5
  "start_url": "./",
6
6
  "display": "standalone",
7
- "background_color": "#071a36",
8
- "theme_color": "#071a36",
7
+ "background_color": "#f8fafc",
8
+ "theme_color": "#f8fafc",
9
9
  "prefer_related_applications": false,
10
10
  "icons": [
11
11
  {
12
- "src": "icon-512.png?v=20260728-app-icon-v1",
12
+ "src": "icon-512.png?v=20260815-app-icon-v2",
13
13
  "type": "image/png",
14
14
  "sizes": "512x512",
15
15
  "purpose": "any maskable"
16
16
  },
17
17
  {
18
- "src": "icon-192.png?v=20260728-app-icon-v1",
18
+ "src": "icon-192.png?v=20260815-app-icon-v2",
19
19
  "type": "image/png",
20
20
  "sizes": "192x192",
21
21
  "purpose": "any maskable"
Binary file