@mindexec/cli 0.2.170 → 0.2.171

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.170",
3
+ "version": "0.2.171",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -442,6 +442,12 @@ body.is-panning .map-node-memo__icon-popover {
442
442
  width: min(320px, calc(100vw - 32px));
443
443
  }
444
444
 
445
+ .mindcanvas-toolbar-menu--skills {
446
+ width: min(390px, calc(100vw - 32px));
447
+ max-height: min(78vh, 680px);
448
+ overflow: auto;
449
+ }
450
+
445
451
  .mindcanvas-toolbar-menu__title {
446
452
  padding: 0 2px 2px;
447
453
  color: #0f172a;
@@ -561,6 +567,148 @@ body.is-panning .map-node-memo__icon-popover {
561
567
  text-transform: uppercase;
562
568
  }
563
569
 
570
+ .mindcanvas-skill-picker {
571
+ display: grid;
572
+ gap: 6px;
573
+ }
574
+
575
+ .mindcanvas-skill-picker__item {
576
+ display: grid;
577
+ grid-template-columns: minmax(0, 1fr) 18px;
578
+ align-items: center;
579
+ gap: 8px;
580
+ width: 100%;
581
+ padding: 9px 10px;
582
+ border: 1px solid rgba(203, 213, 225, 0.82);
583
+ border-radius: 7px;
584
+ background: rgba(248, 250, 252, 0.92);
585
+ color: #334155;
586
+ text-align: left;
587
+ cursor: pointer;
588
+ }
589
+
590
+ .mindcanvas-skill-picker__item--active,
591
+ .mindcanvas-skill-picker__item:hover,
592
+ .mindcanvas-skill-picker__item:focus-visible {
593
+ border-color: rgba(96, 165, 250, 0.74);
594
+ background: rgba(239, 246, 255, 0.92);
595
+ color: #1d4ed8;
596
+ outline: none;
597
+ }
598
+
599
+ .mindcanvas-skill-picker__item span,
600
+ .mindcanvas-skill-form__summary {
601
+ display: grid;
602
+ gap: 2px;
603
+ min-width: 0;
604
+ }
605
+
606
+ .mindcanvas-skill-picker__item strong,
607
+ .mindcanvas-skill-form__summary strong {
608
+ font-size: 12px;
609
+ font-weight: 850;
610
+ line-height: 1.15;
611
+ }
612
+
613
+ .mindcanvas-skill-picker__item small,
614
+ .mindcanvas-skill-form__summary span {
615
+ color: #64748b;
616
+ font-size: 11px;
617
+ font-weight: 620;
618
+ line-height: 1.35;
619
+ }
620
+
621
+ .mindcanvas-skill-form {
622
+ display: grid;
623
+ gap: 8px;
624
+ padding-top: 7px;
625
+ border-top: 1px solid rgba(226, 232, 240, 0.9);
626
+ }
627
+
628
+ .mindcanvas-skill-form__field {
629
+ display: grid;
630
+ gap: 4px;
631
+ }
632
+
633
+ .mindcanvas-skill-form__field > span {
634
+ color: #475569;
635
+ font-size: 10px;
636
+ font-weight: 820;
637
+ letter-spacing: 0;
638
+ }
639
+
640
+ .mindcanvas-skill-form__field input,
641
+ .mindcanvas-skill-form__field textarea {
642
+ width: 100%;
643
+ min-width: 0;
644
+ border: 1px solid rgba(203, 213, 225, 0.88);
645
+ border-radius: 7px;
646
+ background: rgba(255, 255, 255, 0.92);
647
+ color: #0f172a;
648
+ font-size: 12px;
649
+ font-weight: 650;
650
+ line-height: 1.35;
651
+ outline: none;
652
+ }
653
+
654
+ .mindcanvas-skill-form__field input {
655
+ height: 34px;
656
+ padding: 0 10px;
657
+ }
658
+
659
+ .mindcanvas-skill-form__field textarea {
660
+ resize: vertical;
661
+ min-height: 76px;
662
+ padding: 8px 10px;
663
+ }
664
+
665
+ .mindcanvas-skill-form__field input:focus,
666
+ .mindcanvas-skill-form__field textarea:focus {
667
+ border-color: rgba(59, 130, 246, 0.82);
668
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
669
+ }
670
+
671
+ .mindcanvas-skill-form__status {
672
+ padding: 7px 9px;
673
+ border-radius: 7px;
674
+ background: rgba(248, 250, 252, 0.92);
675
+ color: #475569;
676
+ font-size: 11px;
677
+ font-weight: 700;
678
+ line-height: 1.35;
679
+ }
680
+
681
+ .mindcanvas-skill-form__status--success {
682
+ background: rgba(236, 253, 245, 0.9);
683
+ color: #047857;
684
+ }
685
+
686
+ .mindcanvas-skill-form__status--warning {
687
+ background: rgba(255, 247, 237, 0.92);
688
+ color: #9a3412;
689
+ }
690
+
691
+ .mindcanvas-skill-form__run {
692
+ display: inline-flex;
693
+ align-items: center;
694
+ justify-content: center;
695
+ gap: 7px;
696
+ min-height: 36px;
697
+ border: 1px solid rgba(20, 184, 166, 0.38);
698
+ border-radius: 7px;
699
+ background: #0f8f7f;
700
+ color: white;
701
+ font-size: 12px;
702
+ font-weight: 850;
703
+ cursor: pointer;
704
+ }
705
+
706
+ .mindcanvas-skill-form__run:disabled {
707
+ cursor: not-allowed;
708
+ border-color: rgba(203, 213, 225, 0.84);
709
+ background: #cbd5e1;
710
+ }
711
+
564
712
  .mindcanvas-node-toolbar::before,
565
713
  .global-ai-input-shell::before {
566
714
  content: '';
@@ -824,6 +972,52 @@ body.is-panning .map-node-memo__icon-popover {
824
972
  color: rgba(148, 163, 184, 0.86);
825
973
  }
826
974
 
975
+ .mindcanvas-skill-form {
976
+ border-top-color: rgba(71, 85, 105, 0.78);
977
+ }
978
+
979
+ .mindcanvas-skill-picker__item {
980
+ border-color: rgba(71, 85, 105, 0.72);
981
+ background: rgba(30, 41, 59, 0.72);
982
+ color: rgba(226, 232, 240, 0.88);
983
+ }
984
+
985
+ .mindcanvas-skill-picker__item--active,
986
+ .mindcanvas-skill-picker__item:hover,
987
+ .mindcanvas-skill-picker__item:focus-visible {
988
+ border-color: rgba(96, 165, 250, 0.42);
989
+ background: rgba(37, 99, 235, 0.2);
990
+ color: #bfdbfe;
991
+ }
992
+
993
+ .mindcanvas-skill-picker__item small,
994
+ .mindcanvas-skill-form__summary span,
995
+ .mindcanvas-skill-form__field > span {
996
+ color: rgba(203, 213, 225, 0.76);
997
+ }
998
+
999
+ .mindcanvas-skill-form__field input,
1000
+ .mindcanvas-skill-form__field textarea {
1001
+ border-color: rgba(71, 85, 105, 0.78);
1002
+ background: rgba(15, 23, 42, 0.58);
1003
+ color: #f8fafc;
1004
+ }
1005
+
1006
+ .mindcanvas-skill-form__status {
1007
+ background: rgba(30, 41, 59, 0.74);
1008
+ color: rgba(203, 213, 225, 0.82);
1009
+ }
1010
+
1011
+ .mindcanvas-skill-form__status--success {
1012
+ background: rgba(6, 78, 59, 0.38);
1013
+ color: #6ee7b7;
1014
+ }
1015
+
1016
+ .mindcanvas-skill-form__status--warning {
1017
+ background: rgba(124, 45, 18, 0.32);
1018
+ color: #fdba74;
1019
+ }
1020
+
827
1021
  .global-ai-input-shell {
828
1022
  border-color: rgba(71, 85, 105, 0.72) !important;
829
1023
  background:
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-M1GLnd7fewhdFsVjOsrUlrvOaJ9lWnCVe+7Q3HH9fmY=",
4
+ "hash": "sha256-JCbjf1qv2j0vJHNTnD3Q1ATe3UeA0KwnDkNIU4CEVMw=",
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.y86u2cwvbo.dll": "MindExecution.Plugins.Business.dll",
130
- "MindExecution.Plugins.Concept.dqp17ek1rn.dll": "MindExecution.Plugins.Concept.dll",
129
+ "MindExecution.Plugins.Business.jn5nc7okql.dll": "MindExecution.Plugins.Business.dll",
130
+ "MindExecution.Plugins.Concept.j3ndei56k5.dll": "MindExecution.Plugins.Concept.dll",
131
131
  "MindExecution.Plugins.Directory.1argo44nph.dll": "MindExecution.Plugins.Directory.dll",
132
- "MindExecution.Plugins.PlanMaster.zewiglru4p.dll": "MindExecution.Plugins.PlanMaster.dll",
133
- "MindExecution.Plugins.YouTube.y327w3bscm.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.91aeizslxg.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.xoas9nws45.dll": "MindExecution.Web.dll",
132
+ "MindExecution.Plugins.PlanMaster.jx5e69sim0.dll": "MindExecution.Plugins.PlanMaster.dll",
133
+ "MindExecution.Plugins.YouTube.qqwd3lc6cn.dll": "MindExecution.Plugins.YouTube.dll",
134
+ "MindExecution.Shared.yykm4v7xnd.dll": "MindExecution.Shared.dll",
135
+ "MindExecution.Web.2fexfu7nw7.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.dqp17ek1rn.dll": "sha256-e+gzmkGMXTnehGnH70Anj7nq7F2uI5WsYW5JAno/6bs=",
284
- "MindExecution.Plugins.PlanMaster.zewiglru4p.dll": "sha256-myixUCbBBHcS3HGC0XcG1Tbp06sWdYrpmhQyDwsFeAs=",
285
- "MindExecution.Shared.91aeizslxg.dll": "sha256-TeiNMk92+kwG921X859p9HkSD1T7df8MggL1qdMX8iY=",
286
- "MindExecution.Web.xoas9nws45.dll": "sha256-33V3qH3VSl2fFkO7hNIH2AUIOY/sdZ2GBYFFYzs799k="
283
+ "MindExecution.Plugins.Concept.j3ndei56k5.dll": "sha256-L9w4s1zohbMSXnxqVDSFbw4Qn7iQV2lbdyZKl98VfY4=",
284
+ "MindExecution.Plugins.PlanMaster.jx5e69sim0.dll": "sha256-eSAg9lp6byLi2+lDlB5TIdRBpVS1viOfP6Ys+VCyMV0=",
285
+ "MindExecution.Shared.yykm4v7xnd.dll": "sha256-qiMr2daTqpEJJr/fNvc1C7KwXWb9oHKQgLoA7RcGcp8=",
286
+ "MindExecution.Web.2fexfu7nw7.dll": "sha256-Pp5EqyCnx8IBcVjF/cD8zXDo6i7zC8AQQtxz5qXyGxM="
287
287
  },
288
288
  "lazyAssembly": {
289
289
  "MindExecution.Plugins.Admin.5zyeb2m709.dll": "sha256-kfvMS18tjQsoBT/nL40x6HiLaNM3Ls5G71Fk4skXtLg=",
290
- "MindExecution.Plugins.Business.y86u2cwvbo.dll": "sha256-3tKQ7ry/rYHyhP1g2Zd2cc/VeJ9b87uC25zJSDyfE54=",
290
+ "MindExecution.Plugins.Business.jn5nc7okql.dll": "sha256-XwSTzDqTVFI7Ok/VMeaIQW/zbIp0Lx7dvWJ8QC7K3w8=",
291
291
  "MindExecution.Plugins.Directory.1argo44nph.dll": "sha256-GZZuAT3WZd9wDjQd+H8f6V9R2UYeLl/VOZxl9BnQVO0=",
292
- "MindExecution.Plugins.YouTube.y327w3bscm.dll": "sha256-bsJhWb6LzS50bx1j7/bnfln0jsXItSnaXX10+QunoNM="
292
+ "MindExecution.Plugins.YouTube.qqwd3lc6cn.dll": "sha256-/oH3DKVYccnsdkwTAM//1MSyJQDCsbGWvYNkDRuzGM8="
293
293
  }
294
294
  },
295
295
  "cacheBootResources": true,
@@ -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-skill-layer-v599" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-skill-layer-v599" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260617-skill-ui-v600" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260617-skill-ui-v600" />
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-layer-v599';
582
+ const scriptVersion = '20260617-skill-ui-v600';
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": "ZkEpt7bZ",
2
+ "version": "okvSWTbD",
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-Qe8ZasFVu0/cCvryv6hkXRbNvdEQFO8yqiIOKN5w4G4=",
45
+ "hash": "sha256-VyGjzwCd9WoJ0gu1JXBtSoLcGDHgxgkAnE+q6Pcza0s=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -422,32 +422,32 @@
422
422
  "url": "_framework/MindExecution.Plugins.Admin.5zyeb2m709.dll"
423
423
  },
424
424
  {
425
- "hash": "sha256-3tKQ7ry/rYHyhP1g2Zd2cc/VeJ9b87uC25zJSDyfE54=",
426
- "url": "_framework/MindExecution.Plugins.Business.y86u2cwvbo.dll"
425
+ "hash": "sha256-XwSTzDqTVFI7Ok/VMeaIQW/zbIp0Lx7dvWJ8QC7K3w8=",
426
+ "url": "_framework/MindExecution.Plugins.Business.jn5nc7okql.dll"
427
427
  },
428
428
  {
429
- "hash": "sha256-e+gzmkGMXTnehGnH70Anj7nq7F2uI5WsYW5JAno/6bs=",
430
- "url": "_framework/MindExecution.Plugins.Concept.dqp17ek1rn.dll"
429
+ "hash": "sha256-L9w4s1zohbMSXnxqVDSFbw4Qn7iQV2lbdyZKl98VfY4=",
430
+ "url": "_framework/MindExecution.Plugins.Concept.j3ndei56k5.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-myixUCbBBHcS3HGC0XcG1Tbp06sWdYrpmhQyDwsFeAs=",
438
- "url": "_framework/MindExecution.Plugins.PlanMaster.zewiglru4p.dll"
437
+ "hash": "sha256-eSAg9lp6byLi2+lDlB5TIdRBpVS1viOfP6Ys+VCyMV0=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.jx5e69sim0.dll"
439
439
  },
440
440
  {
441
- "hash": "sha256-bsJhWb6LzS50bx1j7/bnfln0jsXItSnaXX10+QunoNM=",
442
- "url": "_framework/MindExecution.Plugins.YouTube.y327w3bscm.dll"
441
+ "hash": "sha256-/oH3DKVYccnsdkwTAM//1MSyJQDCsbGWvYNkDRuzGM8=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.qqwd3lc6cn.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-TeiNMk92+kwG921X859p9HkSD1T7df8MggL1qdMX8iY=",
446
- "url": "_framework/MindExecution.Shared.91aeizslxg.dll"
445
+ "hash": "sha256-qiMr2daTqpEJJr/fNvc1C7KwXWb9oHKQgLoA7RcGcp8=",
446
+ "url": "_framework/MindExecution.Shared.yykm4v7xnd.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-33V3qH3VSl2fFkO7hNIH2AUIOY/sdZ2GBYFFYzs799k=",
450
- "url": "_framework/MindExecution.Web.xoas9nws45.dll"
449
+ "hash": "sha256-Pp5EqyCnx8IBcVjF/cD8zXDo6i7zC8AQQtxz5qXyGxM=",
450
+ "url": "_framework/MindExecution.Web.2fexfu7nw7.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-yyild8c4406FJK8Umlb1ZSmP2VdGjsTenBQPIA35kJw=",
773
+ "hash": "sha256-QrUEaGJQOd/YpbUcxCpBv1/IaYxpxpfQqrZilgripfg=",
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-gxJeTyHXPWnzlhEhEAZI6wvAJ+ecRbE5z5Ab3tPTOu8=",
837
+ "hash": "sha256-EII4T7BxjdPyROthZ8D8WjVz+5i2y1dcsUP6JehP0sI=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: ZkEpt7bZ */
1
+ /* Manifest version: okvSWTbD */
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