@mindexec/cli 0.2.76 → 0.2.77
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 +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-lod-renderer.js +33 -5
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-nodes.js +1 -1
- package/wwwroot/_framework/Microsoft.JSInterop.ew9vz9o332.dll +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.5t6acb6gi8.dll → MindExecution.Plugins.Concept.k1jkhdfuvd.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.6sh2pqv7l1.dll → MindExecution.Plugins.PlanMaster.w2k7psjlox.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.qir2jcd5tg.dll → MindExecution.Plugins.YouTube.6ztu8ax35z.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.xo52cjfgkf.dll → MindExecution.Shared.fdpespfctr.dll} +0 -0
- package/wwwroot/_framework/MindExecution.Web.w0cy5lb7gd.dll +0 -0
- package/wwwroot/_framework/blazor.boot.json +13 -13
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +19 -19
- package/wwwroot/service-worker.js +1 -1
- package/wwwroot/_framework/Microsoft.JSInterop.17lq4j1j7g.dll +0 -0
- package/wwwroot/_framework/MindExecution.Web.al2rg562cm.dll +0 -0
package/package.json
CHANGED
|
@@ -117,6 +117,8 @@
|
|
|
117
117
|
// NOTE: Distance-based line disable removed (lines always render by distance)
|
|
118
118
|
const AGENT_CONSOLE_HEIGHT_METADATA_KEY = 'AgentCommandConsoleHeight';
|
|
119
119
|
const BUSINESS_AUTOMATION_SEMANTIC_TYPE = 'BusinessAutomationNode';
|
|
120
|
+
const REMOTE_FLEET_MONITOR_SEMANTIC_TYPE = 'RemoteFleetMonitor';
|
|
121
|
+
const REMOTE_FLEET_DEVICE_SEMANTIC_TYPE = 'RemoteFleetDevice';
|
|
120
122
|
const AGENT_LOD_SEMANTIC_TYPES = new Set([
|
|
121
123
|
'MindCanvasAgent',
|
|
122
124
|
'AgentCommand',
|
|
@@ -364,13 +366,24 @@
|
|
|
364
366
|
contentType === 'memo' ||
|
|
365
367
|
contentType === 'markdown' ||
|
|
366
368
|
contentType === 'code' ||
|
|
367
|
-
isAgentLikeLodNode(model)
|
|
369
|
+
isAgentLikeLodNode(model) ||
|
|
370
|
+
isTemplateLauncherLodProxyModel(model);
|
|
368
371
|
}
|
|
369
372
|
|
|
370
373
|
function isTemplateLauncherModel(model) {
|
|
371
374
|
return getNodeContentType(model) === 'templatelauncher';
|
|
372
375
|
}
|
|
373
376
|
|
|
377
|
+
function isRemoteFleetNodeModel(model) {
|
|
378
|
+
const semanticType = getNodeSemanticType(model);
|
|
379
|
+
return semanticType === REMOTE_FLEET_MONITOR_SEMANTIC_TYPE ||
|
|
380
|
+
semanticType === REMOTE_FLEET_DEVICE_SEMANTIC_TYPE;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
function isTemplateLauncherLodProxyModel(model) {
|
|
384
|
+
return isTemplateLauncherModel(model) && !isRemoteFleetNodeModel(model);
|
|
385
|
+
}
|
|
386
|
+
|
|
374
387
|
function isCssMediaFallbackModel(model) {
|
|
375
388
|
const contentType = getNodeContentType(model);
|
|
376
389
|
return contentType === 'image' ||
|
|
@@ -4384,12 +4397,27 @@
|
|
|
4384
4397
|
this._warmCss3dNodeIds.has(nodeId);
|
|
4385
4398
|
}
|
|
4386
4399
|
|
|
4387
|
-
|
|
4388
|
-
if (!nodeObjectsById
|
|
4400
|
+
_syncTemplateLauncherCss3dForLod(nodeObjectsById, module = this._module) {
|
|
4401
|
+
if (!nodeObjectsById) return;
|
|
4389
4402
|
|
|
4390
4403
|
for (const entry of nodeObjectsById.values()) {
|
|
4391
4404
|
if (!entry || !isTemplateLauncherModel(entry.model)) continue;
|
|
4392
|
-
|
|
4405
|
+
|
|
4406
|
+
if (isRemoteFleetNodeModel(entry.model)) {
|
|
4407
|
+
if (isCss3dRendererEnabled(module)) {
|
|
4408
|
+
this._showNodeCss3d(entry, module);
|
|
4409
|
+
}
|
|
4410
|
+
continue;
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4413
|
+
if (this.isInLODMode === true) {
|
|
4414
|
+
if (entry.cssObject) {
|
|
4415
|
+
this._hideNodeCss3d(entry);
|
|
4416
|
+
}
|
|
4417
|
+
this._hideTextLodFullVisual(entry);
|
|
4418
|
+
} else if (isCss3dRendererEnabled(module)) {
|
|
4419
|
+
this._showNodeCss3d(entry, module);
|
|
4420
|
+
}
|
|
4393
4421
|
}
|
|
4394
4422
|
}
|
|
4395
4423
|
|
|
@@ -5531,7 +5559,7 @@
|
|
|
5531
5559
|
// ▲▲▲ [FIX] ▲▲▲
|
|
5532
5560
|
|
|
5533
5561
|
|
|
5534
|
-
this.
|
|
5562
|
+
this._syncTemplateLauncherCss3dForLod(nodeObjectsById, module);
|
|
5535
5563
|
|
|
5536
5564
|
} else {
|
|
5537
5565
|
perfTime('fullResSetup', () => {
|
|
@@ -2716,7 +2716,7 @@
|
|
|
2716
2716
|
const glPos = glObject.position;
|
|
2717
2717
|
// [FIX] Parallax issue fix: Set Z to match glObject (was + 0.2)
|
|
2718
2718
|
nodeEntry.cssObject.position.set(glPos.x, glPos.y, glPos.z);
|
|
2719
|
-
const shouldAttachCss = isNearMode
|
|
2719
|
+
const shouldAttachCss = isNearMode;
|
|
2720
2720
|
if (shouldAttachCss) {
|
|
2721
2721
|
(module.cssScene || module.scene).add(nodeEntry.cssObject);
|
|
2722
2722
|
window.MindMapCss3DManager?.markCssParentRepairNeeded?.(module, nodeModel.id);
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-y2ix3kMc6T62O9ZxhwLABh1I/Al3HdOXnQiVdV29m0E=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"Microsoft.IdentityModel.Logging.229uyvpgio.dll": "Microsoft.IdentityModel.Logging.dll",
|
|
36
36
|
"Microsoft.IdentityModel.Tokens.9sibtajc9f.dll": "Microsoft.IdentityModel.Tokens.dll",
|
|
37
37
|
"Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll": "Microsoft.IO.RecyclableMemoryStream.dll",
|
|
38
|
-
"Microsoft.JSInterop.
|
|
38
|
+
"Microsoft.JSInterop.ew9vz9o332.dll": "Microsoft.JSInterop.dll",
|
|
39
39
|
"Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll": "Microsoft.JSInterop.WebAssembly.dll",
|
|
40
40
|
"Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll": "Microsoft.ML.OnnxRuntime.dll",
|
|
41
41
|
"Microsoft.ML.Tokenizers.cm2vuv2z61.dll": "Microsoft.ML.Tokenizers.dll",
|
|
@@ -127,12 +127,12 @@
|
|
|
127
127
|
"MindExecution.Kernel.mdo1lzjvvp.dll": "MindExecution.Kernel.dll",
|
|
128
128
|
"MindExecution.Plugins.Admin.5fctwf65dx.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
129
|
"MindExecution.Plugins.Business.nwivpk9djf.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
-
"MindExecution.Plugins.Concept.
|
|
130
|
+
"MindExecution.Plugins.Concept.k1jkhdfuvd.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
131
|
"MindExecution.Plugins.Directory.jnzcrwl049.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
-
"MindExecution.Plugins.PlanMaster.
|
|
133
|
-
"MindExecution.Plugins.YouTube.
|
|
134
|
-
"MindExecution.Shared.
|
|
135
|
-
"MindExecution.Web.
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.w2k7psjlox.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.6ztu8ax35z.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.fdpespfctr.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.w0cy5lb7gd.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",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"Microsoft.IdentityModel.Logging.229uyvpgio.dll": "sha256-Wldlk+9Z8TE89cz81jc7jTKHs+gvol0hiZgVJN4kDM8=",
|
|
193
193
|
"Microsoft.IdentityModel.Tokens.9sibtajc9f.dll": "sha256-2QhIFrrPiaIkH/Usc7SbpR4CaEidCAyFPEZl8/ipisM=",
|
|
194
194
|
"Microsoft.IO.RecyclableMemoryStream.r915vovvw4.dll": "sha256-ryT6NCt/nwhifrGy+UEPL2SXCx4TXF/kg3h4+Ks+y2g=",
|
|
195
|
-
"Microsoft.JSInterop.
|
|
195
|
+
"Microsoft.JSInterop.ew9vz9o332.dll": "sha256-IrX5UxymKz+4ObhMjcxkVH3KFKydPaneR9y4rkFud4Y=",
|
|
196
196
|
"Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll": "sha256-fYzOx06Qj4ix7+OdEL8EpMavcH6pcSWs97DingoywdY=",
|
|
197
197
|
"Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll": "sha256-TGmF30qi+BC6iis3w8eR5hnY/hJpVKa9KM/9P0reupU=",
|
|
198
198
|
"Microsoft.ML.Tokenizers.cm2vuv2z61.dll": "sha256-BLnLmmvOMzBx4HHGc1qJFLtV4eofGXcH7XG/TKv2ync=",
|
|
@@ -280,16 +280,16 @@
|
|
|
280
280
|
"netstandard.yvr3prsx0x.dll": "sha256-EksNn8Luo4bOWqJ6X7dIe9qG9oOqwOVzjH2xYyMNi+E=",
|
|
281
281
|
"MindExecution.Core.csfu1xtj3l.dll": "sha256-lP9GUQU4xFLsUU4IOwpUjt09mQO5M/bgLAAS8UnjLMs=",
|
|
282
282
|
"MindExecution.Kernel.mdo1lzjvvp.dll": "sha256-Vj21M+Th5MKfLG5Hvg6/uwlDDdwAJwzeIxfWsK9gYhM=",
|
|
283
|
-
"MindExecution.Plugins.Concept.
|
|
284
|
-
"MindExecution.Plugins.PlanMaster.
|
|
285
|
-
"MindExecution.Shared.
|
|
286
|
-
"MindExecution.Web.
|
|
283
|
+
"MindExecution.Plugins.Concept.k1jkhdfuvd.dll": "sha256-mO3CFzyoVeCVtQeso8odbqDpJrF9GQO96fwZJqQoQPM=",
|
|
284
|
+
"MindExecution.Plugins.PlanMaster.w2k7psjlox.dll": "sha256-aHrFiszwKwd1XwyUZd9TjoK2b+DuVQ0FXD07Fn8z0vI=",
|
|
285
|
+
"MindExecution.Shared.fdpespfctr.dll": "sha256-8wcYqXAGCWN7nhCfpoeYnH92aAk4jkyN6VYWLjFXzEo=",
|
|
286
|
+
"MindExecution.Web.w0cy5lb7gd.dll": "sha256-YHpFv2KJ/pV0JNiOfNwcPzYHAok2ZPs1I6AtnATLdGk="
|
|
287
287
|
},
|
|
288
288
|
"lazyAssembly": {
|
|
289
289
|
"MindExecution.Plugins.Admin.5fctwf65dx.dll": "sha256-37+Egd35menNv18hEZ64qjiu0x1r+wFOuO5zDiOGfug=",
|
|
290
290
|
"MindExecution.Plugins.Business.nwivpk9djf.dll": "sha256-iTV0NyCB7fnU+l8brClBd+KYnBDw628yHCwoRrQdTWE=",
|
|
291
291
|
"MindExecution.Plugins.Directory.jnzcrwl049.dll": "sha256-fwo2q8bt+WNuVUMnJCOcfLAy151cjLZCQa0Z+iKdsRs=",
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
292
|
+
"MindExecution.Plugins.YouTube.6ztu8ax35z.dll": "sha256-QjMKOawibOw31RS85bac8CW7+5tQZCUum10ex8V0O2w="
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -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=20260614-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260614-remote-host-route-v536" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260614-remote-host-route-v536" />
|
|
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 = '20260614-
|
|
582
|
+
const scriptVersion = '20260614-remote-host-route-v536';
|
|
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": "
|
|
2
|
+
"version": "cCLAMNpD",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-plan-worker.js"
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
|
-
"hash": "sha256-
|
|
117
|
+
"hash": "sha256-pIWayQBgEG/T1yD56k6gUU7n0xcw8p0gd0B4nrO4JoE=",
|
|
118
118
|
"url": "_content/MindExecution.Shared/js/mind-map-lod-renderer.js"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"url": "_content/MindExecution.Shared/js/mind-map-node-search-worker.js"
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
|
-
"hash": "sha256-
|
|
137
|
+
"hash": "sha256-MmWAqcPEjWAGKxEpAAwKMDEaaN5eZS7jpmC7fiXircc=",
|
|
138
138
|
"url": "_content/MindExecution.Shared/js/mind-map-nodes.js"
|
|
139
139
|
},
|
|
140
140
|
{
|
|
@@ -385,14 +385,14 @@
|
|
|
385
385
|
"hash": "sha256-2QhIFrrPiaIkH/Usc7SbpR4CaEidCAyFPEZl8/ipisM=",
|
|
386
386
|
"url": "_framework/Microsoft.IdentityModel.Tokens.9sibtajc9f.dll"
|
|
387
387
|
},
|
|
388
|
-
{
|
|
389
|
-
"hash": "sha256-M5KHmtf1wOWvLDbq+ytj3O6lEbQd7SloHoiqDiB/Ofw=",
|
|
390
|
-
"url": "_framework/Microsoft.JSInterop.17lq4j1j7g.dll"
|
|
391
|
-
},
|
|
392
388
|
{
|
|
393
389
|
"hash": "sha256-fYzOx06Qj4ix7+OdEL8EpMavcH6pcSWs97DingoywdY=",
|
|
394
390
|
"url": "_framework/Microsoft.JSInterop.WebAssembly.ryia5gxiad.dll"
|
|
395
391
|
},
|
|
392
|
+
{
|
|
393
|
+
"hash": "sha256-IrX5UxymKz+4ObhMjcxkVH3KFKydPaneR9y4rkFud4Y=",
|
|
394
|
+
"url": "_framework/Microsoft.JSInterop.ew9vz9o332.dll"
|
|
395
|
+
},
|
|
396
396
|
{
|
|
397
397
|
"hash": "sha256-TGmF30qi+BC6iis3w8eR5hnY/hJpVKa9KM/9P0reupU=",
|
|
398
398
|
"url": "_framework/Microsoft.ML.OnnxRuntime.w9deo1m5ss.dll"
|
|
@@ -426,28 +426,28 @@
|
|
|
426
426
|
"url": "_framework/MindExecution.Plugins.Business.nwivpk9djf.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-mO3CFzyoVeCVtQeso8odbqDpJrF9GQO96fwZJqQoQPM=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.k1jkhdfuvd.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
433
|
"hash": "sha256-fwo2q8bt+WNuVUMnJCOcfLAy151cjLZCQa0Z+iKdsRs=",
|
|
434
434
|
"url": "_framework/MindExecution.Plugins.Directory.jnzcrwl049.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-aHrFiszwKwd1XwyUZd9TjoK2b+DuVQ0FXD07Fn8z0vI=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.w2k7psjlox.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-QjMKOawibOw31RS85bac8CW7+5tQZCUum10ex8V0O2w=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.6ztu8ax35z.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-8wcYqXAGCWN7nhCfpoeYnH92aAk4jkyN6VYWLjFXzEo=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.fdpespfctr.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256-
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-YHpFv2KJ/pV0JNiOfNwcPzYHAok2ZPs1I6AtnATLdGk=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.w0cy5lb7gd.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-
|
|
773
|
+
"hash": "sha256-mmj14b49PZYVamZq0r9DSaTC8IXxvQNJt90KuFVTuSg=",
|
|
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-
|
|
837
|
+
"hash": "sha256-V6X/gA+YWmylQA3sJo3mWU1F2GESZw9q4qWyqUYkNVE=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|
|
Binary file
|