@perstack/runtime 0.0.3 → 0.0.5
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/LICENSE +202 -0
- package/dist/index.d.ts +40 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +10 -21
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [2025] [Wintermute Technologies Inc.]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ declare const PerstackConfigSchema: z.ZodObject<{
|
|
|
22
22
|
pick: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
23
23
|
omit: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
24
24
|
command: z.ZodString;
|
|
25
|
+
packageName: z.ZodOptional<z.ZodString>;
|
|
25
26
|
args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26
27
|
requiredEnv: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27
28
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -32,6 +33,7 @@ declare const PerstackConfigSchema: z.ZodObject<{
|
|
|
32
33
|
rule?: string | undefined;
|
|
33
34
|
pick?: string[] | undefined;
|
|
34
35
|
omit?: string[] | undefined;
|
|
36
|
+
packageName?: string | undefined;
|
|
35
37
|
requiredEnv?: string[] | undefined;
|
|
36
38
|
}, {
|
|
37
39
|
type: "mcpStdioSkill";
|
|
@@ -41,6 +43,7 @@ declare const PerstackConfigSchema: z.ZodObject<{
|
|
|
41
43
|
rule?: string | undefined;
|
|
42
44
|
pick?: string[] | undefined;
|
|
43
45
|
omit?: string[] | undefined;
|
|
46
|
+
packageName?: string | undefined;
|
|
44
47
|
requiredEnv?: string[] | undefined;
|
|
45
48
|
}>, z.ZodObject<{
|
|
46
49
|
type: z.ZodLiteral<"mcpSseSkill">;
|
|
@@ -107,6 +110,7 @@ declare const PerstackConfigSchema: z.ZodObject<{
|
|
|
107
110
|
rule?: string | undefined;
|
|
108
111
|
pick?: string[] | undefined;
|
|
109
112
|
omit?: string[] | undefined;
|
|
113
|
+
packageName?: string | undefined;
|
|
110
114
|
requiredEnv?: string[] | undefined;
|
|
111
115
|
} | {
|
|
112
116
|
type: "mcpSseSkill";
|
|
@@ -138,6 +142,7 @@ declare const PerstackConfigSchema: z.ZodObject<{
|
|
|
138
142
|
rule?: string | undefined;
|
|
139
143
|
pick?: string[] | undefined;
|
|
140
144
|
omit?: string[] | undefined;
|
|
145
|
+
packageName?: string | undefined;
|
|
141
146
|
requiredEnv?: string[] | undefined;
|
|
142
147
|
} | {
|
|
143
148
|
type: "mcpSseSkill";
|
|
@@ -171,6 +176,7 @@ declare const PerstackConfigSchema: z.ZodObject<{
|
|
|
171
176
|
rule?: string | undefined;
|
|
172
177
|
pick?: string[] | undefined;
|
|
173
178
|
omit?: string[] | undefined;
|
|
179
|
+
packageName?: string | undefined;
|
|
174
180
|
requiredEnv?: string[] | undefined;
|
|
175
181
|
} | {
|
|
176
182
|
type: "mcpSseSkill";
|
|
@@ -208,6 +214,7 @@ declare const PerstackConfigSchema: z.ZodObject<{
|
|
|
208
214
|
rule?: string | undefined;
|
|
209
215
|
pick?: string[] | undefined;
|
|
210
216
|
omit?: string[] | undefined;
|
|
217
|
+
packageName?: string | undefined;
|
|
211
218
|
requiredEnv?: string[] | undefined;
|
|
212
219
|
} | {
|
|
213
220
|
type: "mcpSseSkill";
|
|
@@ -1311,6 +1318,7 @@ declare const McpStdioSkillSchema: z.ZodObject<{
|
|
|
1311
1318
|
pick: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1312
1319
|
omit: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1313
1320
|
command: z.ZodString;
|
|
1321
|
+
packageName: z.ZodOptional<z.ZodString>;
|
|
1314
1322
|
args: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1315
1323
|
requiredEnv: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1316
1324
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1323,6 +1331,7 @@ declare const McpStdioSkillSchema: z.ZodObject<{
|
|
|
1323
1331
|
requiredEnv: string[];
|
|
1324
1332
|
description?: string | undefined;
|
|
1325
1333
|
rule?: string | undefined;
|
|
1334
|
+
packageName?: string | undefined;
|
|
1326
1335
|
}, {
|
|
1327
1336
|
type: "mcpStdioSkill";
|
|
1328
1337
|
name: string;
|
|
@@ -1332,6 +1341,7 @@ declare const McpStdioSkillSchema: z.ZodObject<{
|
|
|
1332
1341
|
rule?: string | undefined;
|
|
1333
1342
|
pick?: string[] | undefined;
|
|
1334
1343
|
omit?: string[] | undefined;
|
|
1344
|
+
packageName?: string | undefined;
|
|
1335
1345
|
requiredEnv?: string[] | undefined;
|
|
1336
1346
|
}>;
|
|
1337
1347
|
type McpStdioSkill = z.infer<typeof McpStdioSkillSchema>;
|
|
@@ -1436,6 +1446,7 @@ declare const ExpertSchema: z.ZodObject<{
|
|
|
1436
1446
|
pick: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1437
1447
|
omit: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1438
1448
|
command: z.ZodString;
|
|
1449
|
+
packageName: z.ZodOptional<z.ZodString>;
|
|
1439
1450
|
args: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1440
1451
|
requiredEnv: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1441
1452
|
}, "name">, "strip", z.ZodTypeAny, {
|
|
@@ -1447,6 +1458,7 @@ declare const ExpertSchema: z.ZodObject<{
|
|
|
1447
1458
|
requiredEnv: string[];
|
|
1448
1459
|
description?: string | undefined;
|
|
1449
1460
|
rule?: string | undefined;
|
|
1461
|
+
packageName?: string | undefined;
|
|
1450
1462
|
}, {
|
|
1451
1463
|
type: "mcpStdioSkill";
|
|
1452
1464
|
command: string;
|
|
@@ -1455,6 +1467,7 @@ declare const ExpertSchema: z.ZodObject<{
|
|
|
1455
1467
|
rule?: string | undefined;
|
|
1456
1468
|
pick?: string[] | undefined;
|
|
1457
1469
|
omit?: string[] | undefined;
|
|
1470
|
+
packageName?: string | undefined;
|
|
1458
1471
|
requiredEnv?: string[] | undefined;
|
|
1459
1472
|
}>, z.ZodObject<Omit<{
|
|
1460
1473
|
type: z.ZodLiteral<"mcpSseSkill">;
|
|
@@ -1533,6 +1546,7 @@ declare const ExpertSchema: z.ZodObject<{
|
|
|
1533
1546
|
requiredEnv: string[];
|
|
1534
1547
|
description?: string | undefined;
|
|
1535
1548
|
rule?: string | undefined;
|
|
1549
|
+
packageName?: string | undefined;
|
|
1536
1550
|
} | {
|
|
1537
1551
|
type: "mcpSseSkill";
|
|
1538
1552
|
name: string;
|
|
@@ -1562,6 +1576,7 @@ declare const ExpertSchema: z.ZodObject<{
|
|
|
1562
1576
|
rule?: string | undefined;
|
|
1563
1577
|
pick?: string[] | undefined;
|
|
1564
1578
|
omit?: string[] | undefined;
|
|
1579
|
+
packageName?: string | undefined;
|
|
1565
1580
|
requiredEnv?: string[] | undefined;
|
|
1566
1581
|
} | {
|
|
1567
1582
|
type: "mcpSseSkill";
|
|
@@ -1597,6 +1612,7 @@ declare const ExpertSchema: z.ZodObject<{
|
|
|
1597
1612
|
requiredEnv: string[];
|
|
1598
1613
|
description?: string | undefined;
|
|
1599
1614
|
rule?: string | undefined;
|
|
1615
|
+
packageName?: string | undefined;
|
|
1600
1616
|
} | {
|
|
1601
1617
|
type: "mcpSseSkill";
|
|
1602
1618
|
name: string;
|
|
@@ -1636,6 +1652,7 @@ declare const ExpertSchema: z.ZodObject<{
|
|
|
1636
1652
|
rule?: string | undefined;
|
|
1637
1653
|
pick?: string[] | undefined;
|
|
1638
1654
|
omit?: string[] | undefined;
|
|
1655
|
+
packageName?: string | undefined;
|
|
1639
1656
|
requiredEnv?: string[] | undefined;
|
|
1640
1657
|
} | {
|
|
1641
1658
|
type: "mcpSseSkill";
|
|
@@ -2497,6 +2514,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2497
2514
|
pick: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2498
2515
|
omit: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2499
2516
|
command: z.ZodString;
|
|
2517
|
+
packageName: z.ZodOptional<z.ZodString>;
|
|
2500
2518
|
args: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2501
2519
|
requiredEnv: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2502
2520
|
}, "name">, "strip", z.ZodTypeAny, {
|
|
@@ -2508,6 +2526,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2508
2526
|
requiredEnv: string[];
|
|
2509
2527
|
description?: string | undefined;
|
|
2510
2528
|
rule?: string | undefined;
|
|
2529
|
+
packageName?: string | undefined;
|
|
2511
2530
|
}, {
|
|
2512
2531
|
type: "mcpStdioSkill";
|
|
2513
2532
|
command: string;
|
|
@@ -2516,6 +2535,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2516
2535
|
rule?: string | undefined;
|
|
2517
2536
|
pick?: string[] | undefined;
|
|
2518
2537
|
omit?: string[] | undefined;
|
|
2538
|
+
packageName?: string | undefined;
|
|
2519
2539
|
requiredEnv?: string[] | undefined;
|
|
2520
2540
|
}>, z.ZodObject<Omit<{
|
|
2521
2541
|
type: z.ZodLiteral<"mcpSseSkill">;
|
|
@@ -2594,6 +2614,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2594
2614
|
requiredEnv: string[];
|
|
2595
2615
|
description?: string | undefined;
|
|
2596
2616
|
rule?: string | undefined;
|
|
2617
|
+
packageName?: string | undefined;
|
|
2597
2618
|
} | {
|
|
2598
2619
|
type: "mcpSseSkill";
|
|
2599
2620
|
name: string;
|
|
@@ -2623,6 +2644,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2623
2644
|
rule?: string | undefined;
|
|
2624
2645
|
pick?: string[] | undefined;
|
|
2625
2646
|
omit?: string[] | undefined;
|
|
2647
|
+
packageName?: string | undefined;
|
|
2626
2648
|
requiredEnv?: string[] | undefined;
|
|
2627
2649
|
} | {
|
|
2628
2650
|
type: "mcpSseSkill";
|
|
@@ -2657,6 +2679,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2657
2679
|
requiredEnv: string[];
|
|
2658
2680
|
description?: string | undefined;
|
|
2659
2681
|
rule?: string | undefined;
|
|
2682
|
+
packageName?: string | undefined;
|
|
2660
2683
|
} | {
|
|
2661
2684
|
type: "mcpSseSkill";
|
|
2662
2685
|
name: string;
|
|
@@ -2695,6 +2718,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2695
2718
|
rule?: string | undefined;
|
|
2696
2719
|
pick?: string[] | undefined;
|
|
2697
2720
|
omit?: string[] | undefined;
|
|
2721
|
+
packageName?: string | undefined;
|
|
2698
2722
|
requiredEnv?: string[] | undefined;
|
|
2699
2723
|
} | {
|
|
2700
2724
|
type: "mcpSseSkill";
|
|
@@ -2731,6 +2755,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2731
2755
|
requiredEnv: string[];
|
|
2732
2756
|
description?: string | undefined;
|
|
2733
2757
|
rule?: string | undefined;
|
|
2758
|
+
packageName?: string | undefined;
|
|
2734
2759
|
} | {
|
|
2735
2760
|
type: "mcpSseSkill";
|
|
2736
2761
|
name: string;
|
|
@@ -2770,6 +2795,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2770
2795
|
rule?: string | undefined;
|
|
2771
2796
|
pick?: string[] | undefined;
|
|
2772
2797
|
omit?: string[] | undefined;
|
|
2798
|
+
packageName?: string | undefined;
|
|
2773
2799
|
requiredEnv?: string[] | undefined;
|
|
2774
2800
|
} | {
|
|
2775
2801
|
type: "mcpSseSkill";
|
|
@@ -2826,6 +2852,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2826
2852
|
requiredEnv: string[];
|
|
2827
2853
|
description?: string | undefined;
|
|
2828
2854
|
rule?: string | undefined;
|
|
2855
|
+
packageName?: string | undefined;
|
|
2829
2856
|
} | {
|
|
2830
2857
|
type: "mcpSseSkill";
|
|
2831
2858
|
name: string;
|
|
@@ -2884,6 +2911,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
2884
2911
|
rule?: string | undefined;
|
|
2885
2912
|
pick?: string[] | undefined;
|
|
2886
2913
|
omit?: string[] | undefined;
|
|
2914
|
+
packageName?: string | undefined;
|
|
2887
2915
|
requiredEnv?: string[] | undefined;
|
|
2888
2916
|
} | {
|
|
2889
2917
|
type: "mcpSseSkill";
|
|
@@ -3711,6 +3739,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
3711
3739
|
requiredEnv: string[];
|
|
3712
3740
|
description?: string | undefined;
|
|
3713
3741
|
rule?: string | undefined;
|
|
3742
|
+
packageName?: string | undefined;
|
|
3714
3743
|
} | {
|
|
3715
3744
|
type: "mcpSseSkill";
|
|
3716
3745
|
name: string;
|
|
@@ -3894,6 +3923,7 @@ declare const RunParamsSchema: z.ZodObject<{
|
|
|
3894
3923
|
rule?: string | undefined;
|
|
3895
3924
|
pick?: string[] | undefined;
|
|
3896
3925
|
omit?: string[] | undefined;
|
|
3926
|
+
packageName?: string | undefined;
|
|
3897
3927
|
requiredEnv?: string[] | undefined;
|
|
3898
3928
|
} | {
|
|
3899
3929
|
type: "mcpSseSkill";
|
|
@@ -5030,6 +5060,7 @@ declare const runtimeStateMachine: xstate.StateMachine<{
|
|
|
5030
5060
|
requiredEnv: string[];
|
|
5031
5061
|
description?: string | undefined;
|
|
5032
5062
|
rule?: string | undefined;
|
|
5063
|
+
packageName?: string | undefined;
|
|
5033
5064
|
} | {
|
|
5034
5065
|
type: "mcpSseSkill";
|
|
5035
5066
|
name: string;
|
|
@@ -9402,6 +9433,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9402
9433
|
pick: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
9403
9434
|
omit: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
9404
9435
|
command: z.ZodString;
|
|
9436
|
+
packageName: z.ZodOptional<z.ZodString>;
|
|
9405
9437
|
args: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
9406
9438
|
requiredEnv: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
9407
9439
|
}, "name">, "strip", z.ZodTypeAny, {
|
|
@@ -9413,6 +9445,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9413
9445
|
requiredEnv: string[];
|
|
9414
9446
|
description?: string | undefined;
|
|
9415
9447
|
rule?: string | undefined;
|
|
9448
|
+
packageName?: string | undefined;
|
|
9416
9449
|
}, {
|
|
9417
9450
|
type: "mcpStdioSkill";
|
|
9418
9451
|
command: string;
|
|
@@ -9421,6 +9454,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9421
9454
|
rule?: string | undefined;
|
|
9422
9455
|
pick?: string[] | undefined;
|
|
9423
9456
|
omit?: string[] | undefined;
|
|
9457
|
+
packageName?: string | undefined;
|
|
9424
9458
|
requiredEnv?: string[] | undefined;
|
|
9425
9459
|
}>, z.ZodObject<Omit<{
|
|
9426
9460
|
type: z.ZodLiteral<"mcpSseSkill">;
|
|
@@ -9516,6 +9550,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9516
9550
|
requiredEnv: string[];
|
|
9517
9551
|
description?: string | undefined;
|
|
9518
9552
|
rule?: string | undefined;
|
|
9553
|
+
packageName?: string | undefined;
|
|
9519
9554
|
} | {
|
|
9520
9555
|
type: "mcpSseSkill";
|
|
9521
9556
|
pick: string[];
|
|
@@ -9557,6 +9592,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9557
9592
|
rule?: string | undefined;
|
|
9558
9593
|
pick?: string[] | undefined;
|
|
9559
9594
|
omit?: string[] | undefined;
|
|
9595
|
+
packageName?: string | undefined;
|
|
9560
9596
|
requiredEnv?: string[] | undefined;
|
|
9561
9597
|
} | {
|
|
9562
9598
|
type: "mcpSseSkill";
|
|
@@ -9599,6 +9635,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9599
9635
|
requiredEnv: string[];
|
|
9600
9636
|
description?: string | undefined;
|
|
9601
9637
|
rule?: string | undefined;
|
|
9638
|
+
packageName?: string | undefined;
|
|
9602
9639
|
} | {
|
|
9603
9640
|
type: "mcpSseSkill";
|
|
9604
9641
|
pick: string[];
|
|
@@ -9642,6 +9679,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9642
9679
|
rule?: string | undefined;
|
|
9643
9680
|
pick?: string[] | undefined;
|
|
9644
9681
|
omit?: string[] | undefined;
|
|
9682
|
+
packageName?: string | undefined;
|
|
9645
9683
|
requiredEnv?: string[] | undefined;
|
|
9646
9684
|
} | {
|
|
9647
9685
|
type: "mcpSseSkill";
|
|
@@ -9686,6 +9724,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9686
9724
|
requiredEnv: string[];
|
|
9687
9725
|
description?: string | undefined;
|
|
9688
9726
|
rule?: string | undefined;
|
|
9727
|
+
packageName?: string | undefined;
|
|
9689
9728
|
} | {
|
|
9690
9729
|
type: "mcpSseSkill";
|
|
9691
9730
|
pick: string[];
|
|
@@ -9731,6 +9770,7 @@ declare const RegistryV1ExpertsGetResponseSchema: z.ZodObject<{
|
|
|
9731
9770
|
rule?: string | undefined;
|
|
9732
9771
|
pick?: string[] | undefined;
|
|
9733
9772
|
omit?: string[] | undefined;
|
|
9773
|
+
packageName?: string | undefined;
|
|
9734
9774
|
requiredEnv?: string[] | undefined;
|
|
9735
9775
|
} | {
|
|
9736
9776
|
type: "mcpSseSkill";
|