poe-code 3.0.215 → 3.0.217
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/README.md +0 -2
- package/dist/cli/commands/pipeline.js +72 -3
- package/dist/cli/commands/pipeline.js.map +1 -1
- package/dist/cli/commands/tasks-options.d.ts +19 -0
- package/dist/cli/commands/tasks-options.js +144 -0
- package/dist/cli/commands/tasks-options.js.map +1 -0
- package/dist/cli/commands/tasks.d.ts +3 -0
- package/dist/cli/commands/tasks.js +144 -0
- package/dist/cli/commands/tasks.js.map +1 -0
- package/dist/cli/program.js +92 -1
- package/dist/cli/program.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +41790 -39166
- package/dist/index.js.map +4 -4
- package/dist/providers/claude-code.js +2800 -2655
- package/dist/providers/claude-code.js.map +4 -4
- package/dist/providers/codex.js +2853 -2708
- package/dist/providers/codex.js.map +4 -4
- package/dist/providers/goose.js +2797 -2652
- package/dist/providers/goose.js.map +4 -4
- package/dist/providers/kimi.js +2800 -2655
- package/dist/providers/kimi.js.map +4 -4
- package/dist/providers/opencode.js +2800 -2655
- package/dist/providers/opencode.js.map +4 -4
- package/dist/providers/poe-agent.js +5189 -2330
- package/dist/providers/poe-agent.js.map +4 -4
- package/package.json +4 -1
- package/packages/memory/dist/index.js +1625 -1482
- package/packages/memory/dist/index.js.map +4 -4
- package/packages/superintendent/dist/commands/builder-group.d.ts +16 -16
- package/packages/superintendent/dist/commands/complete.d.ts +6 -6
- package/packages/superintendent/dist/commands/inspector-group.d.ts +36 -36
- package/packages/superintendent/dist/commands/install.d.ts +6 -6
- package/packages/superintendent/dist/commands/plan-path.d.ts +2 -2
- package/packages/superintendent/dist/commands/run.d.ts +60 -60
- package/packages/superintendent/dist/commands/run.js +9 -64
- package/packages/superintendent/dist/commands/superintendent-group.d.ts +146 -146
|
@@ -11,11 +11,11 @@ export type ValidationResult = {
|
|
|
11
11
|
};
|
|
12
12
|
export declare const validateCommand: import("toolcraft").Command<{
|
|
13
13
|
[x: string]: never;
|
|
14
|
-
}, import("toolcraft
|
|
15
|
-
readonly path: import("toolcraft
|
|
14
|
+
}, import("toolcraft").ObjectSchema<{
|
|
15
|
+
readonly path: import("toolcraft").StringSchema;
|
|
16
16
|
}>, undefined, ValidationResult> & {
|
|
17
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"validate", import("toolcraft
|
|
18
|
-
readonly path: import("toolcraft
|
|
17
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"validate", import("toolcraft").ObjectSchema<{
|
|
18
|
+
readonly path: import("toolcraft").StringSchema;
|
|
19
19
|
}>, ValidationResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
20
20
|
};
|
|
21
21
|
export declare const superintendentGroup: import("toolcraft").Group<{
|
|
@@ -30,31 +30,31 @@ export declare const superintendentGroup: import("toolcraft").Group<{
|
|
|
30
30
|
[x: string]: never;
|
|
31
31
|
}, "builder", (import("toolcraft").Command<{
|
|
32
32
|
[x: string]: never;
|
|
33
|
-
}, import("toolcraft
|
|
34
|
-
readonly path: import("toolcraft
|
|
33
|
+
}, import("toolcraft").ObjectSchema<{
|
|
34
|
+
readonly path: import("toolcraft").StringSchema;
|
|
35
35
|
}>, undefined, import("../index.js").BuilderResult> & {
|
|
36
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
37
|
-
readonly path: import("toolcraft
|
|
36
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
37
|
+
readonly path: import("toolcraft").StringSchema;
|
|
38
38
|
}>, import("../index.js").BuilderResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
39
39
|
})[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
40
40
|
}) | (import("toolcraft").Command<{
|
|
41
41
|
[x: string]: never;
|
|
42
|
-
}, import("toolcraft
|
|
43
|
-
readonly agent: import("toolcraft
|
|
44
|
-
readonly scope: import("toolcraft
|
|
42
|
+
}, import("toolcraft").ObjectSchema<{
|
|
43
|
+
readonly agent: import("toolcraft").StringSchema;
|
|
44
|
+
readonly scope: import("toolcraft").EnumSchema<readonly ["local", "global"]>;
|
|
45
45
|
}>, undefined, {
|
|
46
46
|
agent: string;
|
|
47
|
-
scope: import("
|
|
47
|
+
scope: import("packages/agent-skill-config/dist/configs.js").SkillScope;
|
|
48
48
|
skillPath: string;
|
|
49
49
|
planDirectory: string;
|
|
50
50
|
planDirectoryCreated: boolean;
|
|
51
51
|
}> & {
|
|
52
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"install", import("toolcraft
|
|
53
|
-
readonly agent: import("toolcraft
|
|
54
|
-
readonly scope: import("toolcraft
|
|
52
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"install", import("toolcraft").ObjectSchema<{
|
|
53
|
+
readonly agent: import("toolcraft").StringSchema;
|
|
54
|
+
readonly scope: import("toolcraft").EnumSchema<readonly ["local", "global"]>;
|
|
55
55
|
}>, {
|
|
56
56
|
agent: string;
|
|
57
|
-
scope: import("
|
|
57
|
+
scope: import("packages/agent-skill-config/dist/configs.js").SkillScope;
|
|
58
58
|
skillPath: string;
|
|
59
59
|
planDirectory: string;
|
|
60
60
|
planDirectoryCreated: boolean;
|
|
@@ -66,15 +66,15 @@ export declare const superintendentGroup: import("toolcraft").Group<{
|
|
|
66
66
|
[x: string]: never;
|
|
67
67
|
}, "inspector", ((import("toolcraft").Command<{
|
|
68
68
|
[x: string]: never;
|
|
69
|
-
}, import("toolcraft
|
|
70
|
-
readonly path: import("toolcraft
|
|
69
|
+
}, import("toolcraft").ObjectSchema<{
|
|
70
|
+
readonly path: import("toolcraft").StringSchema;
|
|
71
71
|
}>, undefined, {
|
|
72
72
|
name: string;
|
|
73
73
|
agent: string;
|
|
74
74
|
mode: string | undefined;
|
|
75
75
|
}[]> & {
|
|
76
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft
|
|
77
|
-
readonly path: import("toolcraft
|
|
76
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft").ObjectSchema<{
|
|
77
|
+
readonly path: import("toolcraft").StringSchema;
|
|
78
78
|
}>, {
|
|
79
79
|
name: string;
|
|
80
80
|
agent: string;
|
|
@@ -82,28 +82,28 @@ export declare const superintendentGroup: import("toolcraft").Group<{
|
|
|
82
82
|
}[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
83
83
|
}) | (import("toolcraft").Command<{
|
|
84
84
|
[x: string]: never;
|
|
85
|
-
}, import("toolcraft
|
|
86
|
-
readonly path: import("toolcraft
|
|
87
|
-
readonly name: import("toolcraft
|
|
85
|
+
}, import("toolcraft").ObjectSchema<{
|
|
86
|
+
readonly path: import("toolcraft").StringSchema;
|
|
87
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
88
88
|
}>, undefined, import("../index.js").InspectorResult[]> & {
|
|
89
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
90
|
-
readonly path: import("toolcraft
|
|
91
|
-
readonly name: import("toolcraft
|
|
89
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
90
|
+
readonly path: import("toolcraft").StringSchema;
|
|
91
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
92
92
|
}>, import("../index.js").InspectorResult[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
93
93
|
}))[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
94
94
|
}) | (import("toolcraft").Command<{
|
|
95
95
|
[x: string]: never;
|
|
96
|
-
}, import("toolcraft
|
|
97
|
-
readonly path: import("toolcraft
|
|
98
|
-
readonly reason: import("toolcraft
|
|
96
|
+
}, import("toolcraft").ObjectSchema<{
|
|
97
|
+
readonly path: import("toolcraft").StringSchema;
|
|
98
|
+
readonly reason: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
99
99
|
}>, undefined, {
|
|
100
100
|
path: string;
|
|
101
101
|
state: "completed";
|
|
102
102
|
reason: string | undefined;
|
|
103
103
|
}> & {
|
|
104
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"complete", import("toolcraft
|
|
105
|
-
readonly path: import("toolcraft
|
|
106
|
-
readonly reason: import("toolcraft
|
|
104
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"complete", import("toolcraft").ObjectSchema<{
|
|
105
|
+
readonly path: import("toolcraft").StringSchema;
|
|
106
|
+
readonly reason: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
107
107
|
}>, {
|
|
108
108
|
path: string;
|
|
109
109
|
state: "completed";
|
|
@@ -111,43 +111,43 @@ export declare const superintendentGroup: import("toolcraft").Group<{
|
|
|
111
111
|
}, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
112
112
|
}) | (import("toolcraft").Command<{
|
|
113
113
|
[x: string]: never;
|
|
114
|
-
}, import("toolcraft
|
|
114
|
+
}, import("toolcraft").ObjectSchema<{}>, undefined, {
|
|
115
115
|
planDirectory: string;
|
|
116
116
|
}> & {
|
|
117
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"plan-path", import("toolcraft
|
|
117
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"plan-path", import("toolcraft").ObjectSchema<{}>, {
|
|
118
118
|
planDirectory: string;
|
|
119
119
|
}, ("cli" | "sdk")[], undefined>;
|
|
120
120
|
}) | (import("toolcraft").Command<{
|
|
121
121
|
[x: string]: never;
|
|
122
|
-
}, import("toolcraft
|
|
123
|
-
readonly doc: import("toolcraft
|
|
124
|
-
readonly agent: import("toolcraft
|
|
125
|
-
readonly runtime: import("toolcraft
|
|
126
|
-
readonly runtimeImage: import("toolcraft
|
|
127
|
-
readonly runtimeTemplate: import("toolcraft
|
|
128
|
-
readonly detach: import("toolcraft
|
|
129
|
-
readonly mountPoeCode: import("toolcraft
|
|
130
|
-
readonly runnerSync: import("toolcraft
|
|
131
|
-
readonly tui: import("toolcraft
|
|
122
|
+
}, import("toolcraft").ObjectSchema<{
|
|
123
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
124
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
125
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
126
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
127
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
128
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
129
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
130
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
131
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
132
132
|
}>, undefined, import("./run.js").SuperintendentRunCommandResult> & {
|
|
133
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
134
|
-
readonly doc: import("toolcraft
|
|
135
|
-
readonly agent: import("toolcraft
|
|
136
|
-
readonly runtime: import("toolcraft
|
|
137
|
-
readonly runtimeImage: import("toolcraft
|
|
138
|
-
readonly runtimeTemplate: import("toolcraft
|
|
139
|
-
readonly detach: import("toolcraft
|
|
140
|
-
readonly mountPoeCode: import("toolcraft
|
|
141
|
-
readonly runnerSync: import("toolcraft
|
|
142
|
-
readonly tui: import("toolcraft
|
|
133
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
134
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
135
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
136
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
137
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
138
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
139
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
140
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
141
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
142
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
143
143
|
}>, import("./run.js").SuperintendentRunCommandResult, ("cli" | "sdk")[], undefined>;
|
|
144
144
|
}) | (import("toolcraft").Command<{
|
|
145
145
|
[x: string]: never;
|
|
146
|
-
}, import("toolcraft
|
|
147
|
-
readonly path: import("toolcraft
|
|
146
|
+
}, import("toolcraft").ObjectSchema<{
|
|
147
|
+
readonly path: import("toolcraft").StringSchema;
|
|
148
148
|
}>, undefined, ValidationResult> & {
|
|
149
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"validate", import("toolcraft
|
|
150
|
-
readonly path: import("toolcraft
|
|
149
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"validate", import("toolcraft").ObjectSchema<{
|
|
150
|
+
readonly path: import("toolcraft").StringSchema;
|
|
151
151
|
}>, ValidationResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
152
152
|
}))[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
153
153
|
};
|
|
@@ -164,11 +164,11 @@ export declare function createSuperintendentMcpGroup(runners?: SuperintendentMcp
|
|
|
164
164
|
[x: string]: never;
|
|
165
165
|
}, "builder", (import("toolcraft").Command<{
|
|
166
166
|
[x: string]: never;
|
|
167
|
-
}, import("toolcraft
|
|
168
|
-
readonly path: import("toolcraft
|
|
167
|
+
}, import("toolcraft").ObjectSchema<{
|
|
168
|
+
readonly path: import("toolcraft").StringSchema;
|
|
169
169
|
}>, undefined, import("../index.js").BuilderResult> & {
|
|
170
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
171
|
-
readonly path: import("toolcraft
|
|
170
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
171
|
+
readonly path: import("toolcraft").StringSchema;
|
|
172
172
|
}>, import("../index.js").BuilderResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
173
173
|
})[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
174
174
|
}) | (import("toolcraft").Group<{
|
|
@@ -178,15 +178,15 @@ export declare function createSuperintendentMcpGroup(runners?: SuperintendentMcp
|
|
|
178
178
|
[x: string]: never;
|
|
179
179
|
}, "inspector", ((import("toolcraft").Command<{
|
|
180
180
|
[x: string]: never;
|
|
181
|
-
}, import("toolcraft
|
|
182
|
-
readonly path: import("toolcraft
|
|
181
|
+
}, import("toolcraft").ObjectSchema<{
|
|
182
|
+
readonly path: import("toolcraft").StringSchema;
|
|
183
183
|
}>, undefined, {
|
|
184
184
|
name: string;
|
|
185
185
|
agent: string;
|
|
186
186
|
mode: string | undefined;
|
|
187
187
|
}[]> & {
|
|
188
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft
|
|
189
|
-
readonly path: import("toolcraft
|
|
188
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft").ObjectSchema<{
|
|
189
|
+
readonly path: import("toolcraft").StringSchema;
|
|
190
190
|
}>, {
|
|
191
191
|
name: string;
|
|
192
192
|
agent: string;
|
|
@@ -194,28 +194,28 @@ export declare function createSuperintendentMcpGroup(runners?: SuperintendentMcp
|
|
|
194
194
|
}[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
195
195
|
}) | (import("toolcraft").Command<{
|
|
196
196
|
[x: string]: never;
|
|
197
|
-
}, import("toolcraft
|
|
198
|
-
readonly path: import("toolcraft
|
|
199
|
-
readonly name: import("toolcraft
|
|
197
|
+
}, import("toolcraft").ObjectSchema<{
|
|
198
|
+
readonly path: import("toolcraft").StringSchema;
|
|
199
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
200
200
|
}>, undefined, import("../index.js").InspectorResult[]> & {
|
|
201
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
202
|
-
readonly path: import("toolcraft
|
|
203
|
-
readonly name: import("toolcraft
|
|
201
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
202
|
+
readonly path: import("toolcraft").StringSchema;
|
|
203
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
204
204
|
}>, import("../index.js").InspectorResult[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
205
205
|
}))[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
206
206
|
}) | (import("toolcraft").Command<{
|
|
207
207
|
[x: string]: never;
|
|
208
|
-
}, import("toolcraft
|
|
209
|
-
readonly path: import("toolcraft
|
|
210
|
-
readonly reason: import("toolcraft
|
|
208
|
+
}, import("toolcraft").ObjectSchema<{
|
|
209
|
+
readonly path: import("toolcraft").StringSchema;
|
|
210
|
+
readonly reason: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
211
211
|
}>, undefined, {
|
|
212
212
|
path: string;
|
|
213
213
|
state: "completed";
|
|
214
214
|
reason: string | undefined;
|
|
215
215
|
}> & {
|
|
216
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"complete", import("toolcraft
|
|
217
|
-
readonly path: import("toolcraft
|
|
218
|
-
readonly reason: import("toolcraft
|
|
216
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"complete", import("toolcraft").ObjectSchema<{
|
|
217
|
+
readonly path: import("toolcraft").StringSchema;
|
|
218
|
+
readonly reason: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
219
219
|
}>, {
|
|
220
220
|
path: string;
|
|
221
221
|
state: "completed";
|
|
@@ -223,35 +223,35 @@ export declare function createSuperintendentMcpGroup(runners?: SuperintendentMcp
|
|
|
223
223
|
}, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
224
224
|
}) | (import("toolcraft").Command<{
|
|
225
225
|
[x: string]: never;
|
|
226
|
-
}, import("toolcraft
|
|
227
|
-
readonly doc: import("toolcraft
|
|
228
|
-
readonly agent: import("toolcraft
|
|
229
|
-
readonly runtime: import("toolcraft
|
|
230
|
-
readonly runtimeImage: import("toolcraft
|
|
231
|
-
readonly runtimeTemplate: import("toolcraft
|
|
232
|
-
readonly detach: import("toolcraft
|
|
233
|
-
readonly mountPoeCode: import("toolcraft
|
|
234
|
-
readonly runnerSync: import("toolcraft
|
|
235
|
-
readonly tui: import("toolcraft
|
|
226
|
+
}, import("toolcraft").ObjectSchema<{
|
|
227
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
228
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
229
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
230
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
231
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
232
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
233
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
234
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
235
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
236
236
|
}>, undefined, import("./run.js").SuperintendentRunCommandResult> & {
|
|
237
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
238
|
-
readonly doc: import("toolcraft
|
|
239
|
-
readonly agent: import("toolcraft
|
|
240
|
-
readonly runtime: import("toolcraft
|
|
241
|
-
readonly runtimeImage: import("toolcraft
|
|
242
|
-
readonly runtimeTemplate: import("toolcraft
|
|
243
|
-
readonly detach: import("toolcraft
|
|
244
|
-
readonly mountPoeCode: import("toolcraft
|
|
245
|
-
readonly runnerSync: import("toolcraft
|
|
246
|
-
readonly tui: import("toolcraft
|
|
237
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
238
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
239
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
240
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
241
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
242
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
243
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
244
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
245
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
246
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
247
247
|
}>, import("./run.js").SuperintendentRunCommandResult, "mcp"[], undefined>;
|
|
248
248
|
}) | (import("toolcraft").Command<{
|
|
249
249
|
[x: string]: never;
|
|
250
|
-
}, import("toolcraft
|
|
251
|
-
readonly path: import("toolcraft
|
|
250
|
+
}, import("toolcraft").ObjectSchema<{
|
|
251
|
+
readonly path: import("toolcraft").StringSchema;
|
|
252
252
|
}>, undefined, ValidationResult> & {
|
|
253
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"validate", import("toolcraft
|
|
254
|
-
readonly path: import("toolcraft
|
|
253
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"validate", import("toolcraft").ObjectSchema<{
|
|
254
|
+
readonly path: import("toolcraft").StringSchema;
|
|
255
255
|
}>, ValidationResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
256
256
|
}))[], "mcp"[], undefined>;
|
|
257
257
|
};
|
|
@@ -267,11 +267,11 @@ export declare const superintendentMcpGroup: import("toolcraft").Group<{
|
|
|
267
267
|
[x: string]: never;
|
|
268
268
|
}, "builder", (import("toolcraft").Command<{
|
|
269
269
|
[x: string]: never;
|
|
270
|
-
}, import("toolcraft
|
|
271
|
-
readonly path: import("toolcraft
|
|
270
|
+
}, import("toolcraft").ObjectSchema<{
|
|
271
|
+
readonly path: import("toolcraft").StringSchema;
|
|
272
272
|
}>, undefined, import("../index.js").BuilderResult> & {
|
|
273
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
274
|
-
readonly path: import("toolcraft
|
|
273
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
274
|
+
readonly path: import("toolcraft").StringSchema;
|
|
275
275
|
}>, import("../index.js").BuilderResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
276
276
|
})[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
277
277
|
}) | (import("toolcraft").Group<{
|
|
@@ -281,15 +281,15 @@ export declare const superintendentMcpGroup: import("toolcraft").Group<{
|
|
|
281
281
|
[x: string]: never;
|
|
282
282
|
}, "inspector", ((import("toolcraft").Command<{
|
|
283
283
|
[x: string]: never;
|
|
284
|
-
}, import("toolcraft
|
|
285
|
-
readonly path: import("toolcraft
|
|
284
|
+
}, import("toolcraft").ObjectSchema<{
|
|
285
|
+
readonly path: import("toolcraft").StringSchema;
|
|
286
286
|
}>, undefined, {
|
|
287
287
|
name: string;
|
|
288
288
|
agent: string;
|
|
289
289
|
mode: string | undefined;
|
|
290
290
|
}[]> & {
|
|
291
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft
|
|
292
|
-
readonly path: import("toolcraft
|
|
291
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft").ObjectSchema<{
|
|
292
|
+
readonly path: import("toolcraft").StringSchema;
|
|
293
293
|
}>, {
|
|
294
294
|
name: string;
|
|
295
295
|
agent: string;
|
|
@@ -297,28 +297,28 @@ export declare const superintendentMcpGroup: import("toolcraft").Group<{
|
|
|
297
297
|
}[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
298
298
|
}) | (import("toolcraft").Command<{
|
|
299
299
|
[x: string]: never;
|
|
300
|
-
}, import("toolcraft
|
|
301
|
-
readonly path: import("toolcraft
|
|
302
|
-
readonly name: import("toolcraft
|
|
300
|
+
}, import("toolcraft").ObjectSchema<{
|
|
301
|
+
readonly path: import("toolcraft").StringSchema;
|
|
302
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
303
303
|
}>, undefined, import("../index.js").InspectorResult[]> & {
|
|
304
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
305
|
-
readonly path: import("toolcraft
|
|
306
|
-
readonly name: import("toolcraft
|
|
304
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
305
|
+
readonly path: import("toolcraft").StringSchema;
|
|
306
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
307
307
|
}>, import("../index.js").InspectorResult[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
308
308
|
}))[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
309
309
|
}) | (import("toolcraft").Command<{
|
|
310
310
|
[x: string]: never;
|
|
311
|
-
}, import("toolcraft
|
|
312
|
-
readonly path: import("toolcraft
|
|
313
|
-
readonly reason: import("toolcraft
|
|
311
|
+
}, import("toolcraft").ObjectSchema<{
|
|
312
|
+
readonly path: import("toolcraft").StringSchema;
|
|
313
|
+
readonly reason: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
314
314
|
}>, undefined, {
|
|
315
315
|
path: string;
|
|
316
316
|
state: "completed";
|
|
317
317
|
reason: string | undefined;
|
|
318
318
|
}> & {
|
|
319
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"complete", import("toolcraft
|
|
320
|
-
readonly path: import("toolcraft
|
|
321
|
-
readonly reason: import("toolcraft
|
|
319
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"complete", import("toolcraft").ObjectSchema<{
|
|
320
|
+
readonly path: import("toolcraft").StringSchema;
|
|
321
|
+
readonly reason: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
322
322
|
}>, {
|
|
323
323
|
path: string;
|
|
324
324
|
state: "completed";
|
|
@@ -326,35 +326,35 @@ export declare const superintendentMcpGroup: import("toolcraft").Group<{
|
|
|
326
326
|
}, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
327
327
|
}) | (import("toolcraft").Command<{
|
|
328
328
|
[x: string]: never;
|
|
329
|
-
}, import("toolcraft
|
|
330
|
-
readonly doc: import("toolcraft
|
|
331
|
-
readonly agent: import("toolcraft
|
|
332
|
-
readonly runtime: import("toolcraft
|
|
333
|
-
readonly runtimeImage: import("toolcraft
|
|
334
|
-
readonly runtimeTemplate: import("toolcraft
|
|
335
|
-
readonly detach: import("toolcraft
|
|
336
|
-
readonly mountPoeCode: import("toolcraft
|
|
337
|
-
readonly runnerSync: import("toolcraft
|
|
338
|
-
readonly tui: import("toolcraft
|
|
329
|
+
}, import("toolcraft").ObjectSchema<{
|
|
330
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
331
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
332
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
333
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
334
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
335
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
336
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
337
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
338
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
339
339
|
}>, undefined, import("./run.js").SuperintendentRunCommandResult> & {
|
|
340
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
341
|
-
readonly doc: import("toolcraft
|
|
342
|
-
readonly agent: import("toolcraft
|
|
343
|
-
readonly runtime: import("toolcraft
|
|
344
|
-
readonly runtimeImage: import("toolcraft
|
|
345
|
-
readonly runtimeTemplate: import("toolcraft
|
|
346
|
-
readonly detach: import("toolcraft
|
|
347
|
-
readonly mountPoeCode: import("toolcraft
|
|
348
|
-
readonly runnerSync: import("toolcraft
|
|
349
|
-
readonly tui: import("toolcraft
|
|
340
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
341
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
342
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
343
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
344
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
345
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
346
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
347
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
348
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
349
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
350
350
|
}>, import("./run.js").SuperintendentRunCommandResult, "mcp"[], undefined>;
|
|
351
351
|
}) | (import("toolcraft").Command<{
|
|
352
352
|
[x: string]: never;
|
|
353
|
-
}, import("toolcraft
|
|
354
|
-
readonly path: import("toolcraft
|
|
353
|
+
}, import("toolcraft").ObjectSchema<{
|
|
354
|
+
readonly path: import("toolcraft").StringSchema;
|
|
355
355
|
}>, undefined, ValidationResult> & {
|
|
356
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"validate", import("toolcraft
|
|
357
|
-
readonly path: import("toolcraft
|
|
356
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"validate", import("toolcraft").ObjectSchema<{
|
|
357
|
+
readonly path: import("toolcraft").StringSchema;
|
|
358
358
|
}>, ValidationResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
359
359
|
}))[], "mcp"[], undefined>;
|
|
360
360
|
};
|