poe-code 3.0.216 → 3.0.218
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/dist/index.js +727 -372
- package/dist/index.js.map +4 -4
- package/dist/providers/claude-code.js +20 -11
- package/dist/providers/claude-code.js.map +4 -4
- package/dist/providers/codex.js +20 -11
- package/dist/providers/codex.js.map +4 -4
- package/dist/providers/goose.js +20 -11
- package/dist/providers/goose.js.map +4 -4
- package/dist/providers/kimi.js +20 -11
- package/dist/providers/kimi.js.map +4 -4
- package/dist/providers/opencode.js +20 -11
- package/dist/providers/opencode.js.map +4 -4
- package/dist/providers/poe-agent.js +569 -239
- package/dist/providers/poe-agent.js.map +4 -4
- package/package.json +3 -1
- package/packages/design-system/dist/dashboard/buffer.js +8 -1
- package/packages/design-system/dist/dashboard/keymap.d.ts +5 -0
- package/packages/design-system/dist/dashboard/keymap.js +146 -12
- package/packages/design-system/dist/dashboard/terminal.js +31 -0
- package/packages/design-system/dist/dashboard/types.d.ts +1 -0
- package/packages/design-system/dist/explorer/actions.d.ts +16 -0
- package/packages/design-system/dist/explorer/actions.js +39 -0
- package/packages/design-system/dist/explorer/demo.d.ts +13 -0
- package/packages/design-system/dist/explorer/demo.js +297 -0
- package/packages/design-system/dist/explorer/events.d.ts +61 -0
- package/packages/design-system/dist/explorer/events.js +1 -0
- package/packages/design-system/dist/explorer/filter.d.ts +10 -0
- package/packages/design-system/dist/explorer/filter.js +95 -0
- package/packages/design-system/dist/explorer/index.d.ts +8 -0
- package/packages/design-system/dist/explorer/index.js +8 -0
- package/packages/design-system/dist/explorer/jobs.d.ts +7 -0
- package/packages/design-system/dist/explorer/jobs.js +59 -0
- package/packages/design-system/dist/explorer/keymap.d.ts +21 -0
- package/packages/design-system/dist/explorer/keymap.js +363 -0
- package/packages/design-system/dist/explorer/layout.d.ts +20 -0
- package/packages/design-system/dist/explorer/layout.js +73 -0
- package/packages/design-system/dist/explorer/reducer.d.ts +9 -0
- package/packages/design-system/dist/explorer/reducer.js +704 -0
- package/packages/design-system/dist/explorer/render/detail.d.ts +4 -0
- package/packages/design-system/dist/explorer/render/detail.js +96 -0
- package/packages/design-system/dist/explorer/render/footer.d.ts +4 -0
- package/packages/design-system/dist/explorer/render/footer.js +49 -0
- package/packages/design-system/dist/explorer/render/header.d.ts +4 -0
- package/packages/design-system/dist/explorer/render/header.js +56 -0
- package/packages/design-system/dist/explorer/render/index.d.ts +8 -0
- package/packages/design-system/dist/explorer/render/index.js +61 -0
- package/packages/design-system/dist/explorer/render/list.d.ts +4 -0
- package/packages/design-system/dist/explorer/render/list.js +106 -0
- package/packages/design-system/dist/explorer/render/modal.d.ts +3 -0
- package/packages/design-system/dist/explorer/render/modal.js +91 -0
- package/packages/design-system/dist/explorer/render/test-fixtures.d.ts +8 -0
- package/packages/design-system/dist/explorer/render/test-fixtures.js +156 -0
- package/packages/design-system/dist/explorer/runtime.d.ts +2 -0
- package/packages/design-system/dist/explorer/runtime.js +282 -0
- package/packages/design-system/dist/explorer/runtime.test-helpers.d.ts +50 -0
- package/packages/design-system/dist/explorer/runtime.test-helpers.js +101 -0
- package/packages/design-system/dist/explorer/state.d.ts +130 -0
- package/packages/design-system/dist/explorer/state.js +87 -0
- package/packages/design-system/dist/explorer/theme.d.ts +27 -0
- package/packages/design-system/dist/explorer/theme.js +97 -0
- package/packages/design-system/dist/index.d.ts +3 -0
- package/packages/design-system/dist/index.js +3 -0
- package/packages/memory/dist/index.js +9 -0
- package/packages/memory/dist/index.js.map +3 -3
- 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/superintendent-group.d.ts +146 -146
|
@@ -4,20 +4,20 @@ export type BuilderGroupRunners = {
|
|
|
4
4
|
};
|
|
5
5
|
export declare function createBuilderRunCommand(runners?: BuilderGroupRunners): import("toolcraft").Command<{
|
|
6
6
|
[x: string]: never;
|
|
7
|
-
}, import("toolcraft
|
|
8
|
-
readonly path: import("toolcraft
|
|
7
|
+
}, import("toolcraft").ObjectSchema<{
|
|
8
|
+
readonly path: import("toolcraft").StringSchema;
|
|
9
9
|
}>, undefined, BuilderResult> & {
|
|
10
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
11
|
-
readonly path: import("toolcraft
|
|
10
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
11
|
+
readonly path: import("toolcraft").StringSchema;
|
|
12
12
|
}>, BuilderResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
13
13
|
};
|
|
14
14
|
export declare const builderRunCommand: import("toolcraft").Command<{
|
|
15
15
|
[x: string]: never;
|
|
16
|
-
}, import("toolcraft
|
|
17
|
-
readonly path: import("toolcraft
|
|
16
|
+
}, import("toolcraft").ObjectSchema<{
|
|
17
|
+
readonly path: import("toolcraft").StringSchema;
|
|
18
18
|
}>, undefined, BuilderResult> & {
|
|
19
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
20
|
-
readonly path: import("toolcraft
|
|
19
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
20
|
+
readonly path: import("toolcraft").StringSchema;
|
|
21
21
|
}>, BuilderResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
22
22
|
};
|
|
23
23
|
export declare function createBuilderGroup(runners?: BuilderGroupRunners): import("toolcraft").Group<{
|
|
@@ -27,11 +27,11 @@ export declare function createBuilderGroup(runners?: BuilderGroupRunners): impor
|
|
|
27
27
|
[x: string]: never;
|
|
28
28
|
}, "builder", (import("toolcraft").Command<{
|
|
29
29
|
[x: string]: never;
|
|
30
|
-
}, import("toolcraft
|
|
31
|
-
readonly path: import("toolcraft
|
|
30
|
+
}, import("toolcraft").ObjectSchema<{
|
|
31
|
+
readonly path: import("toolcraft").StringSchema;
|
|
32
32
|
}>, undefined, BuilderResult> & {
|
|
33
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
34
|
-
readonly path: import("toolcraft
|
|
33
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
34
|
+
readonly path: import("toolcraft").StringSchema;
|
|
35
35
|
}>, BuilderResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
36
36
|
})[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
37
37
|
};
|
|
@@ -42,11 +42,11 @@ export declare const builderGroup: import("toolcraft").Group<{
|
|
|
42
42
|
[x: string]: never;
|
|
43
43
|
}, "builder", (import("toolcraft").Command<{
|
|
44
44
|
[x: string]: never;
|
|
45
|
-
}, import("toolcraft
|
|
46
|
-
readonly path: import("toolcraft
|
|
45
|
+
}, import("toolcraft").ObjectSchema<{
|
|
46
|
+
readonly path: import("toolcraft").StringSchema;
|
|
47
47
|
}>, undefined, BuilderResult> & {
|
|
48
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
49
|
-
readonly path: import("toolcraft
|
|
48
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
49
|
+
readonly path: import("toolcraft").StringSchema;
|
|
50
50
|
}>, BuilderResult, ("mcp" | "cli" | "sdk")[], undefined>;
|
|
51
51
|
})[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
52
52
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export declare const completeCommand: import("toolcraft").Command<{
|
|
2
2
|
[x: string]: never;
|
|
3
|
-
}, import("toolcraft
|
|
4
|
-
readonly path: import("toolcraft
|
|
5
|
-
readonly reason: import("toolcraft
|
|
3
|
+
}, import("toolcraft").ObjectSchema<{
|
|
4
|
+
readonly path: import("toolcraft").StringSchema;
|
|
5
|
+
readonly reason: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
6
6
|
}>, undefined, {
|
|
7
7
|
path: string;
|
|
8
8
|
state: "completed";
|
|
9
9
|
reason: string | undefined;
|
|
10
10
|
}> & {
|
|
11
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"complete", import("toolcraft
|
|
12
|
-
readonly path: import("toolcraft
|
|
13
|
-
readonly reason: import("toolcraft
|
|
11
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"complete", import("toolcraft").ObjectSchema<{
|
|
12
|
+
readonly path: import("toolcraft").StringSchema;
|
|
13
|
+
readonly reason: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
14
14
|
}>, {
|
|
15
15
|
path: string;
|
|
16
16
|
state: "completed";
|
|
@@ -10,15 +10,15 @@ export type InspectorGroupRunners = {
|
|
|
10
10
|
};
|
|
11
11
|
export declare const inspectorListCommand: import("toolcraft").Command<{
|
|
12
12
|
[x: string]: never;
|
|
13
|
-
}, import("toolcraft
|
|
14
|
-
readonly path: import("toolcraft
|
|
13
|
+
}, import("toolcraft").ObjectSchema<{
|
|
14
|
+
readonly path: import("toolcraft").StringSchema;
|
|
15
15
|
}>, undefined, {
|
|
16
16
|
name: string;
|
|
17
17
|
agent: string;
|
|
18
18
|
mode: string | undefined;
|
|
19
19
|
}[]> & {
|
|
20
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft
|
|
21
|
-
readonly path: import("toolcraft
|
|
20
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft").ObjectSchema<{
|
|
21
|
+
readonly path: import("toolcraft").StringSchema;
|
|
22
22
|
}>, {
|
|
23
23
|
name: string;
|
|
24
24
|
agent: string;
|
|
@@ -27,24 +27,24 @@ export declare const inspectorListCommand: import("toolcraft").Command<{
|
|
|
27
27
|
};
|
|
28
28
|
export declare function createInspectorRunCommand(runners?: InspectorGroupRunners): import("toolcraft").Command<{
|
|
29
29
|
[x: string]: never;
|
|
30
|
-
}, import("toolcraft
|
|
31
|
-
readonly path: import("toolcraft
|
|
32
|
-
readonly name: import("toolcraft
|
|
30
|
+
}, import("toolcraft").ObjectSchema<{
|
|
31
|
+
readonly path: import("toolcraft").StringSchema;
|
|
32
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
33
33
|
}>, undefined, InspectorResult[]> & {
|
|
34
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
35
|
-
readonly path: import("toolcraft
|
|
36
|
-
readonly name: import("toolcraft
|
|
34
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
35
|
+
readonly path: import("toolcraft").StringSchema;
|
|
36
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
37
37
|
}>, InspectorResult[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
38
38
|
};
|
|
39
39
|
export declare const inspectorRunCommand: import("toolcraft").Command<{
|
|
40
40
|
[x: string]: never;
|
|
41
|
-
}, import("toolcraft
|
|
42
|
-
readonly path: import("toolcraft
|
|
43
|
-
readonly name: import("toolcraft
|
|
41
|
+
}, import("toolcraft").ObjectSchema<{
|
|
42
|
+
readonly path: import("toolcraft").StringSchema;
|
|
43
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
44
44
|
}>, undefined, InspectorResult[]> & {
|
|
45
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
46
|
-
readonly path: import("toolcraft
|
|
47
|
-
readonly name: import("toolcraft
|
|
45
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
46
|
+
readonly path: import("toolcraft").StringSchema;
|
|
47
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
48
48
|
}>, InspectorResult[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
49
49
|
};
|
|
50
50
|
export declare function createInspectorGroup(runners?: InspectorGroupRunners): import("toolcraft").Group<{
|
|
@@ -54,15 +54,15 @@ export declare function createInspectorGroup(runners?: InspectorGroupRunners): i
|
|
|
54
54
|
[x: string]: never;
|
|
55
55
|
}, "inspector", ((import("toolcraft").Command<{
|
|
56
56
|
[x: string]: never;
|
|
57
|
-
}, import("toolcraft
|
|
58
|
-
readonly path: import("toolcraft
|
|
57
|
+
}, import("toolcraft").ObjectSchema<{
|
|
58
|
+
readonly path: import("toolcraft").StringSchema;
|
|
59
59
|
}>, undefined, {
|
|
60
60
|
name: string;
|
|
61
61
|
agent: string;
|
|
62
62
|
mode: string | undefined;
|
|
63
63
|
}[]> & {
|
|
64
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft
|
|
65
|
-
readonly path: import("toolcraft
|
|
64
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft").ObjectSchema<{
|
|
65
|
+
readonly path: import("toolcraft").StringSchema;
|
|
66
66
|
}>, {
|
|
67
67
|
name: string;
|
|
68
68
|
agent: string;
|
|
@@ -70,13 +70,13 @@ export declare function createInspectorGroup(runners?: InspectorGroupRunners): i
|
|
|
70
70
|
}[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
71
71
|
}) | (import("toolcraft").Command<{
|
|
72
72
|
[x: string]: never;
|
|
73
|
-
}, import("toolcraft
|
|
74
|
-
readonly path: import("toolcraft
|
|
75
|
-
readonly name: import("toolcraft
|
|
73
|
+
}, import("toolcraft").ObjectSchema<{
|
|
74
|
+
readonly path: import("toolcraft").StringSchema;
|
|
75
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
76
76
|
}>, undefined, InspectorResult[]> & {
|
|
77
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
78
|
-
readonly path: import("toolcraft
|
|
79
|
-
readonly name: import("toolcraft
|
|
77
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
78
|
+
readonly path: import("toolcraft").StringSchema;
|
|
79
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
80
80
|
}>, InspectorResult[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
81
81
|
}))[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
82
82
|
};
|
|
@@ -87,15 +87,15 @@ export declare const inspectorGroup: import("toolcraft").Group<{
|
|
|
87
87
|
[x: string]: never;
|
|
88
88
|
}, "inspector", ((import("toolcraft").Command<{
|
|
89
89
|
[x: string]: never;
|
|
90
|
-
}, import("toolcraft
|
|
91
|
-
readonly path: import("toolcraft
|
|
90
|
+
}, import("toolcraft").ObjectSchema<{
|
|
91
|
+
readonly path: import("toolcraft").StringSchema;
|
|
92
92
|
}>, undefined, {
|
|
93
93
|
name: string;
|
|
94
94
|
agent: string;
|
|
95
95
|
mode: string | undefined;
|
|
96
96
|
}[]> & {
|
|
97
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft
|
|
98
|
-
readonly path: import("toolcraft
|
|
97
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"list", import("toolcraft").ObjectSchema<{
|
|
98
|
+
readonly path: import("toolcraft").StringSchema;
|
|
99
99
|
}>, {
|
|
100
100
|
name: string;
|
|
101
101
|
agent: string;
|
|
@@ -103,13 +103,13 @@ export declare const inspectorGroup: import("toolcraft").Group<{
|
|
|
103
103
|
}[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
104
104
|
}) | (import("toolcraft").Command<{
|
|
105
105
|
[x: string]: never;
|
|
106
|
-
}, import("toolcraft
|
|
107
|
-
readonly path: import("toolcraft
|
|
108
|
-
readonly name: import("toolcraft
|
|
106
|
+
}, import("toolcraft").ObjectSchema<{
|
|
107
|
+
readonly path: import("toolcraft").StringSchema;
|
|
108
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
109
109
|
}>, undefined, InspectorResult[]> & {
|
|
110
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
111
|
-
readonly path: import("toolcraft
|
|
112
|
-
readonly name: import("toolcraft
|
|
110
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
111
|
+
readonly path: import("toolcraft").StringSchema;
|
|
112
|
+
readonly name: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
113
113
|
}>, InspectorResult[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
114
114
|
}))[], ("mcp" | "cli" | "sdk")[], undefined>;
|
|
115
115
|
};
|
|
@@ -8,9 +8,9 @@ export type InstallResult = {
|
|
|
8
8
|
};
|
|
9
9
|
export declare const installCommand: import("toolcraft").Command<{
|
|
10
10
|
[x: string]: never;
|
|
11
|
-
}, import("toolcraft
|
|
12
|
-
readonly agent: import("toolcraft
|
|
13
|
-
readonly scope: import("toolcraft
|
|
11
|
+
}, import("toolcraft").ObjectSchema<{
|
|
12
|
+
readonly agent: import("toolcraft").StringSchema;
|
|
13
|
+
readonly scope: import("toolcraft").EnumSchema<readonly ["local", "global"]>;
|
|
14
14
|
}>, undefined, {
|
|
15
15
|
agent: string;
|
|
16
16
|
scope: SkillScope;
|
|
@@ -18,9 +18,9 @@ export declare const installCommand: import("toolcraft").Command<{
|
|
|
18
18
|
planDirectory: string;
|
|
19
19
|
planDirectoryCreated: boolean;
|
|
20
20
|
}> & {
|
|
21
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"install", import("toolcraft
|
|
22
|
-
readonly agent: import("toolcraft
|
|
23
|
-
readonly scope: import("toolcraft
|
|
21
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"install", import("toolcraft").ObjectSchema<{
|
|
22
|
+
readonly agent: import("toolcraft").StringSchema;
|
|
23
|
+
readonly scope: import("toolcraft").EnumSchema<readonly ["local", "global"]>;
|
|
24
24
|
}>, {
|
|
25
25
|
agent: string;
|
|
26
26
|
scope: SkillScope;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare const planPathCommand: import("toolcraft").Command<{
|
|
2
2
|
[x: string]: never;
|
|
3
|
-
}, import("toolcraft
|
|
3
|
+
}, import("toolcraft").ObjectSchema<{}>, undefined, {
|
|
4
4
|
planDirectory: string;
|
|
5
5
|
}> & {
|
|
6
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"plan-path", import("toolcraft
|
|
6
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"plan-path", import("toolcraft").ObjectSchema<{}>, {
|
|
7
7
|
planDirectory: string;
|
|
8
8
|
}, ("cli" | "sdk")[], undefined>;
|
|
9
9
|
};
|
|
@@ -52,27 +52,27 @@ export type RunCommandOptions = {
|
|
|
52
52
|
};
|
|
53
53
|
export declare const runCommand: import("toolcraft").Command<{
|
|
54
54
|
[x: string]: never;
|
|
55
|
-
}, import("toolcraft
|
|
56
|
-
readonly doc: import("toolcraft
|
|
57
|
-
readonly agent: import("toolcraft
|
|
58
|
-
readonly runtime: import("toolcraft
|
|
59
|
-
readonly runtimeImage: import("toolcraft
|
|
60
|
-
readonly runtimeTemplate: import("toolcraft
|
|
61
|
-
readonly detach: import("toolcraft
|
|
62
|
-
readonly mountPoeCode: import("toolcraft
|
|
63
|
-
readonly runnerSync: import("toolcraft
|
|
64
|
-
readonly tui: import("toolcraft
|
|
55
|
+
}, import("toolcraft").ObjectSchema<{
|
|
56
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
57
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
58
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
59
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
60
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
61
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
62
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
63
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
64
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
65
65
|
}>, undefined, SuperintendentRunCommandResult> & {
|
|
66
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
67
|
-
readonly doc: import("toolcraft
|
|
68
|
-
readonly agent: import("toolcraft
|
|
69
|
-
readonly runtime: import("toolcraft
|
|
70
|
-
readonly runtimeImage: import("toolcraft
|
|
71
|
-
readonly runtimeTemplate: import("toolcraft
|
|
72
|
-
readonly detach: import("toolcraft
|
|
73
|
-
readonly mountPoeCode: import("toolcraft
|
|
74
|
-
readonly runnerSync: import("toolcraft
|
|
75
|
-
readonly tui: import("toolcraft
|
|
66
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
67
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
68
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
69
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
70
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
71
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
72
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
73
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
74
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
75
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
76
76
|
}>, SuperintendentRunCommandResult, ("cli" | "sdk")[], undefined>;
|
|
77
77
|
};
|
|
78
78
|
export type RunMcpCommandRunners = {
|
|
@@ -80,52 +80,52 @@ export type RunMcpCommandRunners = {
|
|
|
80
80
|
};
|
|
81
81
|
export declare function createRunMcpCommand(runners?: RunMcpCommandRunners): import("toolcraft").Command<{
|
|
82
82
|
[x: string]: never;
|
|
83
|
-
}, import("toolcraft
|
|
84
|
-
readonly doc: import("toolcraft
|
|
85
|
-
readonly agent: import("toolcraft
|
|
86
|
-
readonly runtime: import("toolcraft
|
|
87
|
-
readonly runtimeImage: import("toolcraft
|
|
88
|
-
readonly runtimeTemplate: import("toolcraft
|
|
89
|
-
readonly detach: import("toolcraft
|
|
90
|
-
readonly mountPoeCode: import("toolcraft
|
|
91
|
-
readonly runnerSync: import("toolcraft
|
|
92
|
-
readonly tui: import("toolcraft
|
|
83
|
+
}, import("toolcraft").ObjectSchema<{
|
|
84
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
85
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
86
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
87
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
88
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
89
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
90
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
91
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
92
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
93
93
|
}>, undefined, SuperintendentRunCommandResult> & {
|
|
94
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
95
|
-
readonly doc: import("toolcraft
|
|
96
|
-
readonly agent: import("toolcraft
|
|
97
|
-
readonly runtime: import("toolcraft
|
|
98
|
-
readonly runtimeImage: import("toolcraft
|
|
99
|
-
readonly runtimeTemplate: import("toolcraft
|
|
100
|
-
readonly detach: import("toolcraft
|
|
101
|
-
readonly mountPoeCode: import("toolcraft
|
|
102
|
-
readonly runnerSync: import("toolcraft
|
|
103
|
-
readonly tui: import("toolcraft
|
|
94
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
95
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
96
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
97
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
98
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
99
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
100
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
101
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
102
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
103
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
104
104
|
}>, SuperintendentRunCommandResult, "mcp"[], undefined>;
|
|
105
105
|
};
|
|
106
106
|
export declare const runMcpCommand: import("toolcraft").Command<{
|
|
107
107
|
[x: string]: never;
|
|
108
|
-
}, import("toolcraft
|
|
109
|
-
readonly doc: import("toolcraft
|
|
110
|
-
readonly agent: import("toolcraft
|
|
111
|
-
readonly runtime: import("toolcraft
|
|
112
|
-
readonly runtimeImage: import("toolcraft
|
|
113
|
-
readonly runtimeTemplate: import("toolcraft
|
|
114
|
-
readonly detach: import("toolcraft
|
|
115
|
-
readonly mountPoeCode: import("toolcraft
|
|
116
|
-
readonly runnerSync: import("toolcraft
|
|
117
|
-
readonly tui: import("toolcraft
|
|
108
|
+
}, import("toolcraft").ObjectSchema<{
|
|
109
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
110
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
111
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
112
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
113
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
114
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
115
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
116
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
117
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
118
118
|
}>, undefined, SuperintendentRunCommandResult> & {
|
|
119
|
-
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft
|
|
120
|
-
readonly doc: import("toolcraft
|
|
121
|
-
readonly agent: import("toolcraft
|
|
122
|
-
readonly runtime: import("toolcraft
|
|
123
|
-
readonly runtimeImage: import("toolcraft
|
|
124
|
-
readonly runtimeTemplate: import("toolcraft
|
|
125
|
-
readonly detach: import("toolcraft
|
|
126
|
-
readonly mountPoeCode: import("toolcraft
|
|
127
|
-
readonly runnerSync: import("toolcraft
|
|
128
|
-
readonly tui: import("toolcraft
|
|
119
|
+
readonly __agentKitCommandTypeInfo: import("toolcraft").CommandTypeInfo<"run", import("toolcraft").ObjectSchema<{
|
|
120
|
+
readonly doc: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
121
|
+
readonly agent: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
122
|
+
readonly runtime: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["host", "docker", "e2b"]>>;
|
|
123
|
+
readonly runtimeImage: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
124
|
+
readonly runtimeTemplate: import("toolcraft").OptionalSchema<import("toolcraft").StringSchema>;
|
|
125
|
+
readonly detach: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
126
|
+
readonly mountPoeCode: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
127
|
+
readonly runnerSync: import("toolcraft").OptionalSchema<import("toolcraft").EnumSchema<readonly ["both", "upload", "none"]>>;
|
|
128
|
+
readonly tui: import("toolcraft").OptionalSchema<import("toolcraft").BooleanSchema>;
|
|
129
129
|
}>, SuperintendentRunCommandResult, "mcp"[], undefined>;
|
|
130
130
|
};
|
|
131
131
|
export declare function runSuperintendentCommand(options: RunCommandOptions): Promise<SuperintendentRunCommandResult>;
|