@skastr0/prism-linux-arm64 0.2.2 → 0.3.0
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/bin/prism +0 -0
- package/package.json +2 -1
- package/types/content-hash.d.ts +14 -0
- package/types/index.d.ts +1 -9
- package/types/lowerer-capabilities.d.ts +34 -0
- package/types/workflow-bun-runtime.d.ts +21 -0
- package/types/workflow-errors.d.ts +9 -2
- package/types/workflow-harness-detection.d.ts +85 -0
- package/types/workflow-identity.d.ts +48 -0
- package/types/workflow-runner.d.ts +4 -1
- package/types/workflow-runtime.d.ts +24 -0
- package/types/workflow-session.d.ts +0 -1
- package/types/workflow-store.d.ts +7 -51
- package/types/workflow-worker-contract.d.ts +2 -1
- package/types/workflows.d.ts +27 -0
- package/types/compile/authoring-runtime.d.ts +0 -27
- package/types/compile/bundle-utils.d.ts +0 -16
- package/types/compile/cache.d.ts +0 -49
- package/types/compile/compile-manifest.d.ts +0 -48
- package/types/compile/compose.d.ts +0 -35
- package/types/compile/errors.d.ts +0 -124
- package/types/compile/generated-plugin.d.ts +0 -10
- package/types/compile/load.d.ts +0 -52
- package/types/compile/paths.d.ts +0 -2
- package/types/compile/protocol-tools.d.ts +0 -47
- package/types/compile/refs.d.ts +0 -7
- package/types/compile/registry.d.ts +0 -32
- package/types/compile/resolve.d.ts +0 -63
- package/types/compile/runtime-deps.d.ts +0 -6
- package/types/compile/sources.d.ts +0 -2782
- package/types/errors.d.ts +0 -116
- package/types/harnesses.d.ts +0 -18
- package/types/manifest.d.ts +0 -106
- package/types/prism-home.d.ts +0 -26
- package/types/services/prism-env.d.ts +0 -45
- package/types/source-selection.d.ts +0 -38
- package/types/state/lock.d.ts +0 -14
- package/types/workflow-amp-worker.d.ts +0 -28
- package/types/workflow-antigravity-pty.d.ts +0 -22
- package/types/workflow-antigravity-worker.d.ts +0 -75
- package/types/workflow-claude-worker.d.ts +0 -32
- package/types/workflow-codex-worker.d.ts +0 -24
- package/types/workflow-grok-worker.d.ts +0 -27
- package/types/workflow-hermes-worker.d.ts +0 -22
- package/types/workflow-kimi-worker.d.ts +0 -24
- package/types/workflow-loader.d.ts +0 -64
- package/types/workflow-opencode-worker.d.ts +0 -22
- package/types/workflow-output-schema.d.ts +0 -7
- package/types/workflow-permissions.d.ts +0 -10
- package/types/workflow-tsconfig.d.ts +0 -98
- package/types/workflow-worker-process.d.ts +0 -24
- package/types/workflow-workers.d.ts +0 -43
|
@@ -1,2782 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Source types for the current structured compile language.
|
|
3
|
-
*
|
|
4
|
-
* Canonical structured artifacts are TypeScript-authored:
|
|
5
|
-
* - Agent : agents/*.agent.ts
|
|
6
|
-
* - Trait : traits/*.trait.ts
|
|
7
|
-
* - Orbit : orbits/*.orbit.ts
|
|
8
|
-
* - Toolspace : toolspaces/*.toolspace.ts
|
|
9
|
-
* - Modelspace : modelspaces/*.modelspace.ts
|
|
10
|
-
* - Skillspace : skillspaces/*.skillspace.ts
|
|
11
|
-
*
|
|
12
|
-
* Prose artifacts remain markdown-authored:
|
|
13
|
-
* - Identity : identities/*.identity.md
|
|
14
|
-
* - Personality : personalities/*.personality.md
|
|
15
|
-
*/
|
|
16
|
-
import { Schema } from "effect";
|
|
17
|
-
export declare const TargetId: typeof Schema.String;
|
|
18
|
-
export type TargetId = typeof TargetId.Type;
|
|
19
|
-
export declare const TraitRefInputSchema: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
20
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
21
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
22
|
-
name: typeof Schema.String;
|
|
23
|
-
}>]>;
|
|
24
|
-
export type TraitRefInput = typeof TraitRefInputSchema.Type;
|
|
25
|
-
export declare const AgentRefInputSchema: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
26
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
27
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
28
|
-
name: typeof Schema.String;
|
|
29
|
-
}>]>;
|
|
30
|
-
export type AgentRefInput = typeof AgentRefInputSchema.Type;
|
|
31
|
-
export declare const OrbitRefInputSchema: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
32
|
-
kind: Schema.Literal<["orbit-ref"]>;
|
|
33
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
34
|
-
name: typeof Schema.String;
|
|
35
|
-
}>]>;
|
|
36
|
-
export type OrbitRefInput = typeof OrbitRefInputSchema.Type;
|
|
37
|
-
export declare const ToolRefInputSchema: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
38
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
39
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
40
|
-
toolspace: typeof Schema.String;
|
|
41
|
-
name: typeof Schema.String;
|
|
42
|
-
}>]>;
|
|
43
|
-
export type ToolRefInput = typeof ToolRefInputSchema.Type;
|
|
44
|
-
export declare const ToolGroupRefInputSchema: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
45
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
46
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
47
|
-
toolspace: typeof Schema.String;
|
|
48
|
-
name: typeof Schema.String;
|
|
49
|
-
}>]>;
|
|
50
|
-
export type ToolGroupRefInput = typeof ToolGroupRefInputSchema.Type;
|
|
51
|
-
export declare const ModelProfileRefInputSchema: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
52
|
-
kind: Schema.Literal<["model-profile-ref"]>;
|
|
53
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
54
|
-
modelspace: typeof Schema.String;
|
|
55
|
-
name: typeof Schema.String;
|
|
56
|
-
}>]>;
|
|
57
|
-
export type ModelProfileRefInput = typeof ModelProfileRefInputSchema.Type;
|
|
58
|
-
export declare const SkillRefInputSchema: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
59
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
60
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
61
|
-
name: typeof Schema.String;
|
|
62
|
-
}>, Schema.Struct<{
|
|
63
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
64
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
65
|
-
skillspace: typeof Schema.String;
|
|
66
|
-
name: typeof Schema.String;
|
|
67
|
-
}>]>;
|
|
68
|
-
export type SkillRefInput = typeof SkillRefInputSchema.Type;
|
|
69
|
-
export declare const HookEventSchema: Schema.Literal<["tool.before", "tool.after", "prompt.submit", "permission.request", "session.start", "session.end"]>;
|
|
70
|
-
export type HookEvent = typeof HookEventSchema.Type;
|
|
71
|
-
export declare const HookToolMatcherInputSchema: Schema.Union<[Schema.Struct<{
|
|
72
|
-
kind: Schema.Literal<["hook-any-tool"]>;
|
|
73
|
-
}>, Schema.Struct<{
|
|
74
|
-
kind: Schema.Literal<["hook-toolspace-tool"]>;
|
|
75
|
-
tool: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
76
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
77
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
78
|
-
toolspace: typeof Schema.String;
|
|
79
|
-
name: typeof Schema.String;
|
|
80
|
-
}>]>;
|
|
81
|
-
}>, Schema.Struct<{
|
|
82
|
-
kind: Schema.Literal<["hook-toolspace-group"]>;
|
|
83
|
-
group: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
84
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
85
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
86
|
-
toolspace: typeof Schema.String;
|
|
87
|
-
name: typeof Schema.String;
|
|
88
|
-
}>]>;
|
|
89
|
-
}>, Schema.Struct<{
|
|
90
|
-
kind: Schema.Literal<["hook-canonical-tool"]>;
|
|
91
|
-
ref: typeof Schema.String;
|
|
92
|
-
}>]>;
|
|
93
|
-
export type HookToolMatcherInput = typeof HookToolMatcherInputSchema.Type;
|
|
94
|
-
export declare const HookMatchInputSchema: Schema.Struct<{
|
|
95
|
-
tool: Schema.optional<Schema.Union<[Schema.Struct<{
|
|
96
|
-
kind: Schema.Literal<["hook-any-tool"]>;
|
|
97
|
-
}>, Schema.Struct<{
|
|
98
|
-
kind: Schema.Literal<["hook-toolspace-tool"]>;
|
|
99
|
-
tool: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
100
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
101
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
102
|
-
toolspace: typeof Schema.String;
|
|
103
|
-
name: typeof Schema.String;
|
|
104
|
-
}>]>;
|
|
105
|
-
}>, Schema.Struct<{
|
|
106
|
-
kind: Schema.Literal<["hook-toolspace-group"]>;
|
|
107
|
-
group: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
108
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
109
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
110
|
-
toolspace: typeof Schema.String;
|
|
111
|
-
name: typeof Schema.String;
|
|
112
|
-
}>]>;
|
|
113
|
-
}>, Schema.Struct<{
|
|
114
|
-
kind: Schema.Literal<["hook-canonical-tool"]>;
|
|
115
|
-
ref: typeof Schema.String;
|
|
116
|
-
}>]>>;
|
|
117
|
-
}>;
|
|
118
|
-
export type HookMatchInput = typeof HookMatchInputSchema.Type;
|
|
119
|
-
export declare const NormalizedHookToolMatcherSchema: Schema.Union<[Schema.Struct<{
|
|
120
|
-
kind: Schema.Literal<["any"]>;
|
|
121
|
-
}>, Schema.Struct<{
|
|
122
|
-
kind: Schema.Literal<["toolspace-tool"]>;
|
|
123
|
-
ref: typeof Schema.String;
|
|
124
|
-
}>, Schema.Struct<{
|
|
125
|
-
kind: Schema.Literal<["toolspace-group"]>;
|
|
126
|
-
ref: typeof Schema.String;
|
|
127
|
-
}>, Schema.Struct<{
|
|
128
|
-
kind: Schema.Literal<["canonical-tool"]>;
|
|
129
|
-
ref: typeof Schema.String;
|
|
130
|
-
}>]>;
|
|
131
|
-
export type NormalizedHookToolMatcher = typeof NormalizedHookToolMatcherSchema.Type;
|
|
132
|
-
export declare const NormalizedHookMatchSchema: Schema.Struct<{
|
|
133
|
-
tool: Schema.optional<Schema.Union<[Schema.Struct<{
|
|
134
|
-
kind: Schema.Literal<["any"]>;
|
|
135
|
-
}>, Schema.Struct<{
|
|
136
|
-
kind: Schema.Literal<["toolspace-tool"]>;
|
|
137
|
-
ref: typeof Schema.String;
|
|
138
|
-
}>, Schema.Struct<{
|
|
139
|
-
kind: Schema.Literal<["toolspace-group"]>;
|
|
140
|
-
ref: typeof Schema.String;
|
|
141
|
-
}>, Schema.Struct<{
|
|
142
|
-
kind: Schema.Literal<["canonical-tool"]>;
|
|
143
|
-
ref: typeof Schema.String;
|
|
144
|
-
}>]>>;
|
|
145
|
-
}>;
|
|
146
|
-
export type NormalizedHookMatch = typeof NormalizedHookMatchSchema.Type;
|
|
147
|
-
export declare const HookDefinitionSchema: Schema.Struct<{
|
|
148
|
-
name: typeof Schema.String;
|
|
149
|
-
description: Schema.optional<typeof Schema.String>;
|
|
150
|
-
event: Schema.Literal<["tool.before", "tool.after", "prompt.submit", "permission.request", "session.start", "session.end"]>;
|
|
151
|
-
targets: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
152
|
-
match: Schema.optional<Schema.Struct<{
|
|
153
|
-
tool: Schema.optional<Schema.Union<[Schema.Struct<{
|
|
154
|
-
kind: Schema.Literal<["hook-any-tool"]>;
|
|
155
|
-
}>, Schema.Struct<{
|
|
156
|
-
kind: Schema.Literal<["hook-toolspace-tool"]>;
|
|
157
|
-
tool: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
158
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
159
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
160
|
-
toolspace: typeof Schema.String;
|
|
161
|
-
name: typeof Schema.String;
|
|
162
|
-
}>]>;
|
|
163
|
-
}>, Schema.Struct<{
|
|
164
|
-
kind: Schema.Literal<["hook-toolspace-group"]>;
|
|
165
|
-
group: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
166
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
167
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
168
|
-
toolspace: typeof Schema.String;
|
|
169
|
-
name: typeof Schema.String;
|
|
170
|
-
}>]>;
|
|
171
|
-
}>, Schema.Struct<{
|
|
172
|
-
kind: Schema.Literal<["hook-canonical-tool"]>;
|
|
173
|
-
ref: typeof Schema.String;
|
|
174
|
-
}>]>>;
|
|
175
|
-
}>>;
|
|
176
|
-
handle: typeof Schema.Any;
|
|
177
|
-
}>;
|
|
178
|
-
export type HookDefinition = typeof HookDefinitionSchema.Type;
|
|
179
|
-
export declare const HookSourceSchema: Schema.Struct<{
|
|
180
|
-
name: typeof Schema.String;
|
|
181
|
-
description: Schema.optional<typeof Schema.String>;
|
|
182
|
-
event: Schema.Literal<["tool.before", "tool.after", "prompt.submit", "permission.request", "session.start", "session.end"]>;
|
|
183
|
-
targets: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
184
|
-
match: Schema.optional<Schema.Struct<{
|
|
185
|
-
tool: Schema.optional<Schema.Union<[Schema.Struct<{
|
|
186
|
-
kind: Schema.Literal<["hook-any-tool"]>;
|
|
187
|
-
}>, Schema.Struct<{
|
|
188
|
-
kind: Schema.Literal<["hook-toolspace-tool"]>;
|
|
189
|
-
tool: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
190
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
191
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
192
|
-
toolspace: typeof Schema.String;
|
|
193
|
-
name: typeof Schema.String;
|
|
194
|
-
}>]>;
|
|
195
|
-
}>, Schema.Struct<{
|
|
196
|
-
kind: Schema.Literal<["hook-toolspace-group"]>;
|
|
197
|
-
group: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
198
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
199
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
200
|
-
toolspace: typeof Schema.String;
|
|
201
|
-
name: typeof Schema.String;
|
|
202
|
-
}>]>;
|
|
203
|
-
}>, Schema.Struct<{
|
|
204
|
-
kind: Schema.Literal<["hook-canonical-tool"]>;
|
|
205
|
-
ref: typeof Schema.String;
|
|
206
|
-
}>]>>;
|
|
207
|
-
}>>;
|
|
208
|
-
handle: typeof Schema.Any;
|
|
209
|
-
}>;
|
|
210
|
-
export type HookSource = typeof HookSourceSchema.Type;
|
|
211
|
-
export declare const HookTargetContextSchema: Schema.Struct<{
|
|
212
|
-
harness: typeof Schema.String;
|
|
213
|
-
nativeEvent: typeof Schema.String;
|
|
214
|
-
}>;
|
|
215
|
-
export type HookTargetContext = typeof HookTargetContextSchema.Type;
|
|
216
|
-
export declare const HookSessionContextSchema: Schema.Struct<{
|
|
217
|
-
id: Schema.optional<typeof Schema.String>;
|
|
218
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
219
|
-
}>;
|
|
220
|
-
export type HookSessionContext = typeof HookSessionContextSchema.Type;
|
|
221
|
-
export declare const HookNativeContextSchema: Schema.Record$<typeof Schema.String, typeof Schema.Unknown>;
|
|
222
|
-
export type HookNativeContext = typeof HookNativeContextSchema.Type;
|
|
223
|
-
export declare const HookToolContextSchema: Schema.Struct<{
|
|
224
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
225
|
-
nativeName: typeof Schema.String;
|
|
226
|
-
input: typeof Schema.Unknown;
|
|
227
|
-
}>;
|
|
228
|
-
export type HookToolContext = typeof HookToolContextSchema.Type;
|
|
229
|
-
export declare const ToolBeforeEventPayloadSchema: Schema.Struct<{
|
|
230
|
-
event: Schema.Literal<["tool.before"]>;
|
|
231
|
-
target: Schema.Struct<{
|
|
232
|
-
harness: typeof Schema.String;
|
|
233
|
-
nativeEvent: typeof Schema.String;
|
|
234
|
-
}>;
|
|
235
|
-
tool: Schema.Struct<{
|
|
236
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
237
|
-
nativeName: typeof Schema.String;
|
|
238
|
-
input: typeof Schema.Unknown;
|
|
239
|
-
}>;
|
|
240
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
241
|
-
session: Schema.optional<Schema.Struct<{
|
|
242
|
-
id: Schema.optional<typeof Schema.String>;
|
|
243
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
244
|
-
}>>;
|
|
245
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
246
|
-
}>;
|
|
247
|
-
export type ToolBeforeEventPayload = typeof ToolBeforeEventPayloadSchema.Type;
|
|
248
|
-
export declare const ToolAfterEventPayloadSchema: Schema.Struct<{
|
|
249
|
-
event: Schema.Literal<["tool.after"]>;
|
|
250
|
-
target: Schema.Struct<{
|
|
251
|
-
harness: typeof Schema.String;
|
|
252
|
-
nativeEvent: typeof Schema.String;
|
|
253
|
-
}>;
|
|
254
|
-
tool: Schema.extend<Schema.Struct<{
|
|
255
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
256
|
-
nativeName: typeof Schema.String;
|
|
257
|
-
input: typeof Schema.Unknown;
|
|
258
|
-
}>, Schema.Struct<{
|
|
259
|
-
output: typeof Schema.Unknown;
|
|
260
|
-
success: Schema.optional<typeof Schema.Boolean>;
|
|
261
|
-
}>>;
|
|
262
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
263
|
-
session: Schema.optional<Schema.Struct<{
|
|
264
|
-
id: Schema.optional<typeof Schema.String>;
|
|
265
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
266
|
-
}>>;
|
|
267
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
268
|
-
}>;
|
|
269
|
-
export type ToolAfterEventPayload = typeof ToolAfterEventPayloadSchema.Type;
|
|
270
|
-
export declare const SessionStartEventPayloadSchema: Schema.Struct<{
|
|
271
|
-
event: Schema.Literal<["session.start"]>;
|
|
272
|
-
target: Schema.Struct<{
|
|
273
|
-
harness: typeof Schema.String;
|
|
274
|
-
nativeEvent: typeof Schema.String;
|
|
275
|
-
}>;
|
|
276
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
277
|
-
session: Schema.Struct<{
|
|
278
|
-
id: Schema.optional<typeof Schema.String>;
|
|
279
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
280
|
-
}>;
|
|
281
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
282
|
-
}>;
|
|
283
|
-
export type SessionStartEventPayload = typeof SessionStartEventPayloadSchema.Type;
|
|
284
|
-
export declare const PromptSubmitEventPayloadSchema: Schema.Struct<{
|
|
285
|
-
event: Schema.Literal<["prompt.submit"]>;
|
|
286
|
-
target: Schema.Struct<{
|
|
287
|
-
harness: typeof Schema.String;
|
|
288
|
-
nativeEvent: typeof Schema.String;
|
|
289
|
-
}>;
|
|
290
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
291
|
-
session: Schema.optional<Schema.Struct<{
|
|
292
|
-
id: Schema.optional<typeof Schema.String>;
|
|
293
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
294
|
-
}>>;
|
|
295
|
-
prompt: typeof Schema.String;
|
|
296
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
297
|
-
}>;
|
|
298
|
-
export type PromptSubmitEventPayload = typeof PromptSubmitEventPayloadSchema.Type;
|
|
299
|
-
export declare const PermissionRequestEventPayloadSchema: Schema.Struct<{
|
|
300
|
-
event: Schema.Literal<["permission.request"]>;
|
|
301
|
-
target: Schema.Struct<{
|
|
302
|
-
harness: typeof Schema.String;
|
|
303
|
-
nativeEvent: typeof Schema.String;
|
|
304
|
-
}>;
|
|
305
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
306
|
-
session: Schema.optional<Schema.Struct<{
|
|
307
|
-
id: Schema.optional<typeof Schema.String>;
|
|
308
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
309
|
-
}>>;
|
|
310
|
-
tool: Schema.optional<Schema.Struct<{
|
|
311
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
312
|
-
nativeName: typeof Schema.String;
|
|
313
|
-
input: typeof Schema.Unknown;
|
|
314
|
-
}>>;
|
|
315
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
316
|
-
}>;
|
|
317
|
-
export type PermissionRequestEventPayload = typeof PermissionRequestEventPayloadSchema.Type;
|
|
318
|
-
export declare const SessionEndEventPayloadSchema: Schema.Struct<{
|
|
319
|
-
event: Schema.Literal<["session.end"]>;
|
|
320
|
-
target: Schema.Struct<{
|
|
321
|
-
harness: typeof Schema.String;
|
|
322
|
-
nativeEvent: typeof Schema.String;
|
|
323
|
-
}>;
|
|
324
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
325
|
-
session: Schema.Struct<{
|
|
326
|
-
id: Schema.optional<typeof Schema.String>;
|
|
327
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
328
|
-
}>;
|
|
329
|
-
reason: Schema.optional<typeof Schema.String>;
|
|
330
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
331
|
-
}>;
|
|
332
|
-
export type SessionEndEventPayload = typeof SessionEndEventPayloadSchema.Type;
|
|
333
|
-
export declare const HookEventPayloadSchema: Schema.Union<[Schema.Struct<{
|
|
334
|
-
event: Schema.Literal<["tool.before"]>;
|
|
335
|
-
target: Schema.Struct<{
|
|
336
|
-
harness: typeof Schema.String;
|
|
337
|
-
nativeEvent: typeof Schema.String;
|
|
338
|
-
}>;
|
|
339
|
-
tool: Schema.Struct<{
|
|
340
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
341
|
-
nativeName: typeof Schema.String;
|
|
342
|
-
input: typeof Schema.Unknown;
|
|
343
|
-
}>;
|
|
344
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
345
|
-
session: Schema.optional<Schema.Struct<{
|
|
346
|
-
id: Schema.optional<typeof Schema.String>;
|
|
347
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
348
|
-
}>>;
|
|
349
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
350
|
-
}>, Schema.Struct<{
|
|
351
|
-
event: Schema.Literal<["tool.after"]>;
|
|
352
|
-
target: Schema.Struct<{
|
|
353
|
-
harness: typeof Schema.String;
|
|
354
|
-
nativeEvent: typeof Schema.String;
|
|
355
|
-
}>;
|
|
356
|
-
tool: Schema.extend<Schema.Struct<{
|
|
357
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
358
|
-
nativeName: typeof Schema.String;
|
|
359
|
-
input: typeof Schema.Unknown;
|
|
360
|
-
}>, Schema.Struct<{
|
|
361
|
-
output: typeof Schema.Unknown;
|
|
362
|
-
success: Schema.optional<typeof Schema.Boolean>;
|
|
363
|
-
}>>;
|
|
364
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
365
|
-
session: Schema.optional<Schema.Struct<{
|
|
366
|
-
id: Schema.optional<typeof Schema.String>;
|
|
367
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
368
|
-
}>>;
|
|
369
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
370
|
-
}>, Schema.Struct<{
|
|
371
|
-
event: Schema.Literal<["prompt.submit"]>;
|
|
372
|
-
target: Schema.Struct<{
|
|
373
|
-
harness: typeof Schema.String;
|
|
374
|
-
nativeEvent: typeof Schema.String;
|
|
375
|
-
}>;
|
|
376
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
377
|
-
session: Schema.optional<Schema.Struct<{
|
|
378
|
-
id: Schema.optional<typeof Schema.String>;
|
|
379
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
380
|
-
}>>;
|
|
381
|
-
prompt: typeof Schema.String;
|
|
382
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
383
|
-
}>, Schema.Struct<{
|
|
384
|
-
event: Schema.Literal<["permission.request"]>;
|
|
385
|
-
target: Schema.Struct<{
|
|
386
|
-
harness: typeof Schema.String;
|
|
387
|
-
nativeEvent: typeof Schema.String;
|
|
388
|
-
}>;
|
|
389
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
390
|
-
session: Schema.optional<Schema.Struct<{
|
|
391
|
-
id: Schema.optional<typeof Schema.String>;
|
|
392
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
393
|
-
}>>;
|
|
394
|
-
tool: Schema.optional<Schema.Struct<{
|
|
395
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
396
|
-
nativeName: typeof Schema.String;
|
|
397
|
-
input: typeof Schema.Unknown;
|
|
398
|
-
}>>;
|
|
399
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
400
|
-
}>, Schema.Struct<{
|
|
401
|
-
event: Schema.Literal<["session.start"]>;
|
|
402
|
-
target: Schema.Struct<{
|
|
403
|
-
harness: typeof Schema.String;
|
|
404
|
-
nativeEvent: typeof Schema.String;
|
|
405
|
-
}>;
|
|
406
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
407
|
-
session: Schema.Struct<{
|
|
408
|
-
id: Schema.optional<typeof Schema.String>;
|
|
409
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
410
|
-
}>;
|
|
411
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
412
|
-
}>, Schema.Struct<{
|
|
413
|
-
event: Schema.Literal<["session.end"]>;
|
|
414
|
-
target: Schema.Struct<{
|
|
415
|
-
harness: typeof Schema.String;
|
|
416
|
-
nativeEvent: typeof Schema.String;
|
|
417
|
-
}>;
|
|
418
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
419
|
-
session: Schema.Struct<{
|
|
420
|
-
id: Schema.optional<typeof Schema.String>;
|
|
421
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
422
|
-
}>;
|
|
423
|
-
reason: Schema.optional<typeof Schema.String>;
|
|
424
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
425
|
-
}>]>;
|
|
426
|
-
export type HookEventPayload = typeof HookEventPayloadSchema.Type;
|
|
427
|
-
export declare const NativeToolBeforeHookPayloadSchema: Schema.transform<Schema.Struct<{
|
|
428
|
-
target: Schema.Struct<{
|
|
429
|
-
harness: typeof Schema.String;
|
|
430
|
-
nativeEvent: typeof Schema.String;
|
|
431
|
-
}>;
|
|
432
|
-
tool: Schema.Struct<{
|
|
433
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
434
|
-
name: typeof Schema.String;
|
|
435
|
-
input: typeof Schema.Unknown;
|
|
436
|
-
}>;
|
|
437
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
438
|
-
session: Schema.optional<Schema.Struct<{
|
|
439
|
-
id: Schema.optional<typeof Schema.String>;
|
|
440
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
441
|
-
}>>;
|
|
442
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
443
|
-
}>, Schema.Struct<{
|
|
444
|
-
event: Schema.Literal<["tool.before"]>;
|
|
445
|
-
target: Schema.Struct<{
|
|
446
|
-
harness: typeof Schema.String;
|
|
447
|
-
nativeEvent: typeof Schema.String;
|
|
448
|
-
}>;
|
|
449
|
-
tool: Schema.Struct<{
|
|
450
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
451
|
-
nativeName: typeof Schema.String;
|
|
452
|
-
input: typeof Schema.Unknown;
|
|
453
|
-
}>;
|
|
454
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
455
|
-
session: Schema.optional<Schema.Struct<{
|
|
456
|
-
id: Schema.optional<typeof Schema.String>;
|
|
457
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
458
|
-
}>>;
|
|
459
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
460
|
-
}>>;
|
|
461
|
-
export type NativeToolBeforeHookPayload = typeof NativeToolBeforeHookPayloadSchema.Type;
|
|
462
|
-
export declare const NativeToolAfterHookPayloadSchema: Schema.transform<Schema.Struct<{
|
|
463
|
-
target: Schema.Struct<{
|
|
464
|
-
harness: typeof Schema.String;
|
|
465
|
-
nativeEvent: typeof Schema.String;
|
|
466
|
-
}>;
|
|
467
|
-
tool: Schema.Struct<{
|
|
468
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
469
|
-
name: typeof Schema.String;
|
|
470
|
-
input: typeof Schema.Unknown;
|
|
471
|
-
output: typeof Schema.Unknown;
|
|
472
|
-
success: Schema.optional<typeof Schema.Boolean>;
|
|
473
|
-
}>;
|
|
474
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
475
|
-
session: Schema.optional<Schema.Struct<{
|
|
476
|
-
id: Schema.optional<typeof Schema.String>;
|
|
477
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
478
|
-
}>>;
|
|
479
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
480
|
-
}>, Schema.Struct<{
|
|
481
|
-
event: Schema.Literal<["tool.after"]>;
|
|
482
|
-
target: Schema.Struct<{
|
|
483
|
-
harness: typeof Schema.String;
|
|
484
|
-
nativeEvent: typeof Schema.String;
|
|
485
|
-
}>;
|
|
486
|
-
tool: Schema.extend<Schema.Struct<{
|
|
487
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
488
|
-
nativeName: typeof Schema.String;
|
|
489
|
-
input: typeof Schema.Unknown;
|
|
490
|
-
}>, Schema.Struct<{
|
|
491
|
-
output: typeof Schema.Unknown;
|
|
492
|
-
success: Schema.optional<typeof Schema.Boolean>;
|
|
493
|
-
}>>;
|
|
494
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
495
|
-
session: Schema.optional<Schema.Struct<{
|
|
496
|
-
id: Schema.optional<typeof Schema.String>;
|
|
497
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
498
|
-
}>>;
|
|
499
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
500
|
-
}>>;
|
|
501
|
-
export type NativeToolAfterHookPayload = typeof NativeToolAfterHookPayloadSchema.Type;
|
|
502
|
-
export declare const NativeSessionStartHookPayloadSchema: Schema.transform<Schema.Struct<{
|
|
503
|
-
target: Schema.Struct<{
|
|
504
|
-
harness: typeof Schema.String;
|
|
505
|
-
nativeEvent: typeof Schema.String;
|
|
506
|
-
}>;
|
|
507
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
508
|
-
session: Schema.Struct<{
|
|
509
|
-
id: Schema.optional<typeof Schema.String>;
|
|
510
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
511
|
-
}>;
|
|
512
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
513
|
-
}>, Schema.Struct<{
|
|
514
|
-
event: Schema.Literal<["session.start"]>;
|
|
515
|
-
target: Schema.Struct<{
|
|
516
|
-
harness: typeof Schema.String;
|
|
517
|
-
nativeEvent: typeof Schema.String;
|
|
518
|
-
}>;
|
|
519
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
520
|
-
session: Schema.Struct<{
|
|
521
|
-
id: Schema.optional<typeof Schema.String>;
|
|
522
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
523
|
-
}>;
|
|
524
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
525
|
-
}>>;
|
|
526
|
-
export type NativeSessionStartHookPayload = typeof NativeSessionStartHookPayloadSchema.Type;
|
|
527
|
-
export declare const NativePromptSubmitHookPayloadSchema: Schema.transform<Schema.Struct<{
|
|
528
|
-
target: Schema.Struct<{
|
|
529
|
-
harness: typeof Schema.String;
|
|
530
|
-
nativeEvent: typeof Schema.String;
|
|
531
|
-
}>;
|
|
532
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
533
|
-
session: Schema.optional<Schema.Struct<{
|
|
534
|
-
id: Schema.optional<typeof Schema.String>;
|
|
535
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
536
|
-
}>>;
|
|
537
|
-
prompt: typeof Schema.String;
|
|
538
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
539
|
-
}>, Schema.Struct<{
|
|
540
|
-
event: Schema.Literal<["prompt.submit"]>;
|
|
541
|
-
target: Schema.Struct<{
|
|
542
|
-
harness: typeof Schema.String;
|
|
543
|
-
nativeEvent: typeof Schema.String;
|
|
544
|
-
}>;
|
|
545
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
546
|
-
session: Schema.optional<Schema.Struct<{
|
|
547
|
-
id: Schema.optional<typeof Schema.String>;
|
|
548
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
549
|
-
}>>;
|
|
550
|
-
prompt: typeof Schema.String;
|
|
551
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
552
|
-
}>>;
|
|
553
|
-
export type NativePromptSubmitHookPayload = typeof NativePromptSubmitHookPayloadSchema.Type;
|
|
554
|
-
export declare const NativePermissionRequestHookPayloadSchema: Schema.transform<Schema.Struct<{
|
|
555
|
-
target: Schema.Struct<{
|
|
556
|
-
harness: typeof Schema.String;
|
|
557
|
-
nativeEvent: typeof Schema.String;
|
|
558
|
-
}>;
|
|
559
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
560
|
-
session: Schema.optional<Schema.Struct<{
|
|
561
|
-
id: Schema.optional<typeof Schema.String>;
|
|
562
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
563
|
-
}>>;
|
|
564
|
-
tool: Schema.optional<Schema.Struct<{
|
|
565
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
566
|
-
name: typeof Schema.String;
|
|
567
|
-
input: typeof Schema.Unknown;
|
|
568
|
-
}>>;
|
|
569
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
570
|
-
}>, Schema.Struct<{
|
|
571
|
-
event: Schema.Literal<["permission.request"]>;
|
|
572
|
-
target: Schema.Struct<{
|
|
573
|
-
harness: typeof Schema.String;
|
|
574
|
-
nativeEvent: typeof Schema.String;
|
|
575
|
-
}>;
|
|
576
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
577
|
-
session: Schema.optional<Schema.Struct<{
|
|
578
|
-
id: Schema.optional<typeof Schema.String>;
|
|
579
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
580
|
-
}>>;
|
|
581
|
-
tool: Schema.optional<Schema.Struct<{
|
|
582
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
583
|
-
nativeName: typeof Schema.String;
|
|
584
|
-
input: typeof Schema.Unknown;
|
|
585
|
-
}>>;
|
|
586
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
587
|
-
}>>;
|
|
588
|
-
export type NativePermissionRequestHookPayload = typeof NativePermissionRequestHookPayloadSchema.Type;
|
|
589
|
-
export declare const NativeSessionEndHookPayloadSchema: Schema.transform<Schema.Struct<{
|
|
590
|
-
target: Schema.Struct<{
|
|
591
|
-
harness: typeof Schema.String;
|
|
592
|
-
nativeEvent: typeof Schema.String;
|
|
593
|
-
}>;
|
|
594
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
595
|
-
session: Schema.Struct<{
|
|
596
|
-
id: Schema.optional<typeof Schema.String>;
|
|
597
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
598
|
-
}>;
|
|
599
|
-
reason: Schema.optional<typeof Schema.String>;
|
|
600
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
601
|
-
}>, Schema.Struct<{
|
|
602
|
-
event: Schema.Literal<["session.end"]>;
|
|
603
|
-
target: Schema.Struct<{
|
|
604
|
-
harness: typeof Schema.String;
|
|
605
|
-
nativeEvent: typeof Schema.String;
|
|
606
|
-
}>;
|
|
607
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
608
|
-
session: Schema.Struct<{
|
|
609
|
-
id: Schema.optional<typeof Schema.String>;
|
|
610
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
611
|
-
}>;
|
|
612
|
-
reason: Schema.optional<typeof Schema.String>;
|
|
613
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
614
|
-
}>>;
|
|
615
|
-
export type NativeSessionEndHookPayload = typeof NativeSessionEndHookPayloadSchema.Type;
|
|
616
|
-
export declare const NativeHookPayloadSchema: Schema.Union<[Schema.transform<Schema.Struct<{
|
|
617
|
-
target: Schema.Struct<{
|
|
618
|
-
harness: typeof Schema.String;
|
|
619
|
-
nativeEvent: typeof Schema.String;
|
|
620
|
-
}>;
|
|
621
|
-
tool: Schema.Struct<{
|
|
622
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
623
|
-
name: typeof Schema.String;
|
|
624
|
-
input: typeof Schema.Unknown;
|
|
625
|
-
}>;
|
|
626
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
627
|
-
session: Schema.optional<Schema.Struct<{
|
|
628
|
-
id: Schema.optional<typeof Schema.String>;
|
|
629
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
630
|
-
}>>;
|
|
631
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
632
|
-
}>, Schema.Struct<{
|
|
633
|
-
event: Schema.Literal<["tool.before"]>;
|
|
634
|
-
target: Schema.Struct<{
|
|
635
|
-
harness: typeof Schema.String;
|
|
636
|
-
nativeEvent: typeof Schema.String;
|
|
637
|
-
}>;
|
|
638
|
-
tool: Schema.Struct<{
|
|
639
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
640
|
-
nativeName: typeof Schema.String;
|
|
641
|
-
input: typeof Schema.Unknown;
|
|
642
|
-
}>;
|
|
643
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
644
|
-
session: Schema.optional<Schema.Struct<{
|
|
645
|
-
id: Schema.optional<typeof Schema.String>;
|
|
646
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
647
|
-
}>>;
|
|
648
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
649
|
-
}>>, Schema.transform<Schema.Struct<{
|
|
650
|
-
target: Schema.Struct<{
|
|
651
|
-
harness: typeof Schema.String;
|
|
652
|
-
nativeEvent: typeof Schema.String;
|
|
653
|
-
}>;
|
|
654
|
-
tool: Schema.Struct<{
|
|
655
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
656
|
-
name: typeof Schema.String;
|
|
657
|
-
input: typeof Schema.Unknown;
|
|
658
|
-
output: typeof Schema.Unknown;
|
|
659
|
-
success: Schema.optional<typeof Schema.Boolean>;
|
|
660
|
-
}>;
|
|
661
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
662
|
-
session: Schema.optional<Schema.Struct<{
|
|
663
|
-
id: Schema.optional<typeof Schema.String>;
|
|
664
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
665
|
-
}>>;
|
|
666
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
667
|
-
}>, Schema.Struct<{
|
|
668
|
-
event: Schema.Literal<["tool.after"]>;
|
|
669
|
-
target: Schema.Struct<{
|
|
670
|
-
harness: typeof Schema.String;
|
|
671
|
-
nativeEvent: typeof Schema.String;
|
|
672
|
-
}>;
|
|
673
|
-
tool: Schema.extend<Schema.Struct<{
|
|
674
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
675
|
-
nativeName: typeof Schema.String;
|
|
676
|
-
input: typeof Schema.Unknown;
|
|
677
|
-
}>, Schema.Struct<{
|
|
678
|
-
output: typeof Schema.Unknown;
|
|
679
|
-
success: Schema.optional<typeof Schema.Boolean>;
|
|
680
|
-
}>>;
|
|
681
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
682
|
-
session: Schema.optional<Schema.Struct<{
|
|
683
|
-
id: Schema.optional<typeof Schema.String>;
|
|
684
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
685
|
-
}>>;
|
|
686
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
687
|
-
}>>, Schema.transform<Schema.Struct<{
|
|
688
|
-
target: Schema.Struct<{
|
|
689
|
-
harness: typeof Schema.String;
|
|
690
|
-
nativeEvent: typeof Schema.String;
|
|
691
|
-
}>;
|
|
692
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
693
|
-
session: Schema.optional<Schema.Struct<{
|
|
694
|
-
id: Schema.optional<typeof Schema.String>;
|
|
695
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
696
|
-
}>>;
|
|
697
|
-
prompt: typeof Schema.String;
|
|
698
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
699
|
-
}>, Schema.Struct<{
|
|
700
|
-
event: Schema.Literal<["prompt.submit"]>;
|
|
701
|
-
target: Schema.Struct<{
|
|
702
|
-
harness: typeof Schema.String;
|
|
703
|
-
nativeEvent: typeof Schema.String;
|
|
704
|
-
}>;
|
|
705
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
706
|
-
session: Schema.optional<Schema.Struct<{
|
|
707
|
-
id: Schema.optional<typeof Schema.String>;
|
|
708
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
709
|
-
}>>;
|
|
710
|
-
prompt: typeof Schema.String;
|
|
711
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
712
|
-
}>>, Schema.transform<Schema.Struct<{
|
|
713
|
-
target: Schema.Struct<{
|
|
714
|
-
harness: typeof Schema.String;
|
|
715
|
-
nativeEvent: typeof Schema.String;
|
|
716
|
-
}>;
|
|
717
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
718
|
-
session: Schema.optional<Schema.Struct<{
|
|
719
|
-
id: Schema.optional<typeof Schema.String>;
|
|
720
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
721
|
-
}>>;
|
|
722
|
-
tool: Schema.optional<Schema.Struct<{
|
|
723
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
724
|
-
name: typeof Schema.String;
|
|
725
|
-
input: typeof Schema.Unknown;
|
|
726
|
-
}>>;
|
|
727
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
728
|
-
}>, Schema.Struct<{
|
|
729
|
-
event: Schema.Literal<["permission.request"]>;
|
|
730
|
-
target: Schema.Struct<{
|
|
731
|
-
harness: typeof Schema.String;
|
|
732
|
-
nativeEvent: typeof Schema.String;
|
|
733
|
-
}>;
|
|
734
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
735
|
-
session: Schema.optional<Schema.Struct<{
|
|
736
|
-
id: Schema.optional<typeof Schema.String>;
|
|
737
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
738
|
-
}>>;
|
|
739
|
-
tool: Schema.optional<Schema.Struct<{
|
|
740
|
-
logical: Schema.optional<typeof Schema.String>;
|
|
741
|
-
nativeName: typeof Schema.String;
|
|
742
|
-
input: typeof Schema.Unknown;
|
|
743
|
-
}>>;
|
|
744
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
745
|
-
}>>, Schema.transform<Schema.Struct<{
|
|
746
|
-
target: Schema.Struct<{
|
|
747
|
-
harness: typeof Schema.String;
|
|
748
|
-
nativeEvent: typeof Schema.String;
|
|
749
|
-
}>;
|
|
750
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
751
|
-
session: Schema.Struct<{
|
|
752
|
-
id: Schema.optional<typeof Schema.String>;
|
|
753
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
754
|
-
}>;
|
|
755
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
756
|
-
}>, Schema.Struct<{
|
|
757
|
-
event: Schema.Literal<["session.start"]>;
|
|
758
|
-
target: Schema.Struct<{
|
|
759
|
-
harness: typeof Schema.String;
|
|
760
|
-
nativeEvent: typeof Schema.String;
|
|
761
|
-
}>;
|
|
762
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
763
|
-
session: Schema.Struct<{
|
|
764
|
-
id: Schema.optional<typeof Schema.String>;
|
|
765
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
766
|
-
}>;
|
|
767
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
768
|
-
}>>, Schema.transform<Schema.Struct<{
|
|
769
|
-
target: Schema.Struct<{
|
|
770
|
-
harness: typeof Schema.String;
|
|
771
|
-
nativeEvent: typeof Schema.String;
|
|
772
|
-
}>;
|
|
773
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
774
|
-
session: Schema.Struct<{
|
|
775
|
-
id: Schema.optional<typeof Schema.String>;
|
|
776
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
777
|
-
}>;
|
|
778
|
-
reason: Schema.optional<typeof Schema.String>;
|
|
779
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
780
|
-
}>, Schema.Struct<{
|
|
781
|
-
event: Schema.Literal<["session.end"]>;
|
|
782
|
-
target: Schema.Struct<{
|
|
783
|
-
harness: typeof Schema.String;
|
|
784
|
-
nativeEvent: typeof Schema.String;
|
|
785
|
-
}>;
|
|
786
|
-
cwd: Schema.optional<typeof Schema.String>;
|
|
787
|
-
session: Schema.Struct<{
|
|
788
|
-
id: Schema.optional<typeof Schema.String>;
|
|
789
|
-
transcriptPath: Schema.optional<typeof Schema.String>;
|
|
790
|
-
}>;
|
|
791
|
-
reason: Schema.optional<typeof Schema.String>;
|
|
792
|
-
native: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
793
|
-
}>>]>;
|
|
794
|
-
export type NativeHookPayload = typeof NativeHookPayloadSchema.Type;
|
|
795
|
-
export declare const ToolBeforeHookResultSchema: Schema.Union<[Schema.Struct<{
|
|
796
|
-
decision: Schema.Literal<["continue"]>;
|
|
797
|
-
}>, Schema.Struct<{
|
|
798
|
-
decision: Schema.Literal<["block"]>;
|
|
799
|
-
message: typeof Schema.String;
|
|
800
|
-
}>]>;
|
|
801
|
-
export type ToolBeforeHookResult = typeof ToolBeforeHookResultSchema.Type;
|
|
802
|
-
export declare const ContinueHookResultSchema: Schema.Struct<{
|
|
803
|
-
decision: Schema.Literal<["continue"]>;
|
|
804
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
805
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
806
|
-
}>;
|
|
807
|
-
export type ContinueHookResult = typeof ContinueHookResultSchema.Type;
|
|
808
|
-
export declare const ObservationalHookResultSchema: Schema.Struct<{
|
|
809
|
-
decision: Schema.Literal<["continue"]>;
|
|
810
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
811
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
812
|
-
}>;
|
|
813
|
-
export type ObservationalHookResult = ContinueHookResult;
|
|
814
|
-
export declare const PermissionAllowHookResultSchema: Schema.Struct<{
|
|
815
|
-
decision: Schema.Literal<["allow"]>;
|
|
816
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
817
|
-
}>;
|
|
818
|
-
export type PermissionAllowHookResult = typeof PermissionAllowHookResultSchema.Type;
|
|
819
|
-
export declare const PermissionRequestHookResultSchema: Schema.Union<[Schema.Struct<{
|
|
820
|
-
decision: Schema.Literal<["continue"]>;
|
|
821
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
822
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
823
|
-
}>, Schema.Struct<{
|
|
824
|
-
decision: Schema.Literal<["allow"]>;
|
|
825
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
826
|
-
}>, Schema.Struct<{
|
|
827
|
-
decision: Schema.Literal<["block"]>;
|
|
828
|
-
message: typeof Schema.String;
|
|
829
|
-
}>]>;
|
|
830
|
-
export type PermissionRequestHookResult = typeof PermissionRequestHookResultSchema.Type;
|
|
831
|
-
export declare const HookEventResultSchema: Schema.Union<[Schema.Struct<{
|
|
832
|
-
event: Schema.Literal<["tool.before"]>;
|
|
833
|
-
result: Schema.Union<[Schema.Struct<{
|
|
834
|
-
decision: Schema.Literal<["continue"]>;
|
|
835
|
-
}>, Schema.Struct<{
|
|
836
|
-
decision: Schema.Literal<["block"]>;
|
|
837
|
-
message: typeof Schema.String;
|
|
838
|
-
}>]>;
|
|
839
|
-
}>, Schema.Struct<{
|
|
840
|
-
event: Schema.Literal<["tool.after"]>;
|
|
841
|
-
result: Schema.Struct<{
|
|
842
|
-
decision: Schema.Literal<["continue"]>;
|
|
843
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
844
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
845
|
-
}>;
|
|
846
|
-
}>, Schema.Struct<{
|
|
847
|
-
event: Schema.Literal<["prompt.submit"]>;
|
|
848
|
-
result: Schema.Struct<{
|
|
849
|
-
decision: Schema.Literal<["continue"]>;
|
|
850
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
851
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
852
|
-
}>;
|
|
853
|
-
}>, Schema.Struct<{
|
|
854
|
-
event: Schema.Literal<["permission.request"]>;
|
|
855
|
-
result: Schema.Union<[Schema.Struct<{
|
|
856
|
-
decision: Schema.Literal<["continue"]>;
|
|
857
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
858
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
859
|
-
}>, Schema.Struct<{
|
|
860
|
-
decision: Schema.Literal<["allow"]>;
|
|
861
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
862
|
-
}>, Schema.Struct<{
|
|
863
|
-
decision: Schema.Literal<["block"]>;
|
|
864
|
-
message: typeof Schema.String;
|
|
865
|
-
}>]>;
|
|
866
|
-
}>, Schema.Struct<{
|
|
867
|
-
event: Schema.Literal<["session.start"]>;
|
|
868
|
-
result: Schema.Struct<{
|
|
869
|
-
decision: Schema.Literal<["continue"]>;
|
|
870
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
871
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
872
|
-
}>;
|
|
873
|
-
}>, Schema.Struct<{
|
|
874
|
-
event: Schema.Literal<["session.end"]>;
|
|
875
|
-
result: Schema.Struct<{
|
|
876
|
-
decision: Schema.Literal<["continue"]>;
|
|
877
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
878
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
879
|
-
}>;
|
|
880
|
-
}>]>;
|
|
881
|
-
export type HookEventResult = typeof HookEventResultSchema.Type;
|
|
882
|
-
export declare const HookResultSchema: Schema.Union<[Schema.Union<[Schema.Struct<{
|
|
883
|
-
decision: Schema.Literal<["continue"]>;
|
|
884
|
-
}>, Schema.Struct<{
|
|
885
|
-
decision: Schema.Literal<["block"]>;
|
|
886
|
-
message: typeof Schema.String;
|
|
887
|
-
}>]>, Schema.Union<[Schema.Struct<{
|
|
888
|
-
decision: Schema.Literal<["continue"]>;
|
|
889
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
890
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
891
|
-
}>, Schema.Struct<{
|
|
892
|
-
decision: Schema.Literal<["allow"]>;
|
|
893
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
894
|
-
}>, Schema.Struct<{
|
|
895
|
-
decision: Schema.Literal<["block"]>;
|
|
896
|
-
message: typeof Schema.String;
|
|
897
|
-
}>]>, Schema.Struct<{
|
|
898
|
-
decision: Schema.Literal<["continue"]>;
|
|
899
|
-
systemMessage: Schema.optional<typeof Schema.String>;
|
|
900
|
-
additionalContext: Schema.optional<typeof Schema.String>;
|
|
901
|
-
}>]>;
|
|
902
|
-
export type HookResult = typeof HookResultSchema.Type;
|
|
903
|
-
export declare const hookResultSchemaForEvent: (event: HookEvent) => Schema.Schema.AnyNoContext;
|
|
904
|
-
export declare const decodeHookResultForEvent: (event: HookEvent, result: unknown) => import("effect/Either").Either<any, import("effect/ParseResult").ParseError>;
|
|
905
|
-
export declare const nativeHookPayloadSchemaForEvent: (event: HookEvent) => Schema.Schema.AnyNoContext;
|
|
906
|
-
export declare const decodeNativeHookPayloadForEvent: (event: HookEvent, payload: unknown) => import("effect/Either").Either<any, import("effect/ParseResult").ParseError>;
|
|
907
|
-
declare const Hook_base: Schema.Class<Hook, {
|
|
908
|
-
name: typeof Schema.String;
|
|
909
|
-
sourcePath: typeof Schema.String;
|
|
910
|
-
description: Schema.optional<typeof Schema.String>;
|
|
911
|
-
event: Schema.Literal<["tool.before", "tool.after", "prompt.submit", "permission.request", "session.start", "session.end"]>;
|
|
912
|
-
targets: Schema.Array$<typeof Schema.String>;
|
|
913
|
-
match: Schema.Struct<{
|
|
914
|
-
tool: Schema.optional<Schema.Union<[Schema.Struct<{
|
|
915
|
-
kind: Schema.Literal<["any"]>;
|
|
916
|
-
}>, Schema.Struct<{
|
|
917
|
-
kind: Schema.Literal<["toolspace-tool"]>;
|
|
918
|
-
ref: typeof Schema.String;
|
|
919
|
-
}>, Schema.Struct<{
|
|
920
|
-
kind: Schema.Literal<["toolspace-group"]>;
|
|
921
|
-
ref: typeof Schema.String;
|
|
922
|
-
}>, Schema.Struct<{
|
|
923
|
-
kind: Schema.Literal<["canonical-tool"]>;
|
|
924
|
-
ref: typeof Schema.String;
|
|
925
|
-
}>]>>;
|
|
926
|
-
}>;
|
|
927
|
-
handle: typeof Schema.Any;
|
|
928
|
-
}, Schema.Struct.Encoded<{
|
|
929
|
-
name: typeof Schema.String;
|
|
930
|
-
sourcePath: typeof Schema.String;
|
|
931
|
-
description: Schema.optional<typeof Schema.String>;
|
|
932
|
-
event: Schema.Literal<["tool.before", "tool.after", "prompt.submit", "permission.request", "session.start", "session.end"]>;
|
|
933
|
-
targets: Schema.Array$<typeof Schema.String>;
|
|
934
|
-
match: Schema.Struct<{
|
|
935
|
-
tool: Schema.optional<Schema.Union<[Schema.Struct<{
|
|
936
|
-
kind: Schema.Literal<["any"]>;
|
|
937
|
-
}>, Schema.Struct<{
|
|
938
|
-
kind: Schema.Literal<["toolspace-tool"]>;
|
|
939
|
-
ref: typeof Schema.String;
|
|
940
|
-
}>, Schema.Struct<{
|
|
941
|
-
kind: Schema.Literal<["toolspace-group"]>;
|
|
942
|
-
ref: typeof Schema.String;
|
|
943
|
-
}>, Schema.Struct<{
|
|
944
|
-
kind: Schema.Literal<["canonical-tool"]>;
|
|
945
|
-
ref: typeof Schema.String;
|
|
946
|
-
}>]>>;
|
|
947
|
-
}>;
|
|
948
|
-
handle: typeof Schema.Any;
|
|
949
|
-
}>, never, {
|
|
950
|
-
readonly match: {
|
|
951
|
-
readonly tool?: {
|
|
952
|
-
readonly kind: "any";
|
|
953
|
-
} | {
|
|
954
|
-
readonly kind: "toolspace-tool";
|
|
955
|
-
readonly ref: string;
|
|
956
|
-
} | {
|
|
957
|
-
readonly kind: "toolspace-group";
|
|
958
|
-
readonly ref: string;
|
|
959
|
-
} | {
|
|
960
|
-
readonly kind: "canonical-tool";
|
|
961
|
-
readonly ref: string;
|
|
962
|
-
} | undefined;
|
|
963
|
-
};
|
|
964
|
-
} & {
|
|
965
|
-
readonly name: string;
|
|
966
|
-
} & {
|
|
967
|
-
readonly description?: string | undefined;
|
|
968
|
-
} & {
|
|
969
|
-
readonly event: "tool.before" | "tool.after" | "prompt.submit" | "permission.request" | "session.start" | "session.end";
|
|
970
|
-
} & {
|
|
971
|
-
readonly targets: readonly string[];
|
|
972
|
-
} & {
|
|
973
|
-
readonly handle: any;
|
|
974
|
-
} & {
|
|
975
|
-
readonly sourcePath: string;
|
|
976
|
-
}, {}, {}>;
|
|
977
|
-
export declare class Hook extends Hook_base {
|
|
978
|
-
}
|
|
979
|
-
export interface RefNormalizationError {
|
|
980
|
-
readonly field: string;
|
|
981
|
-
readonly message: string;
|
|
982
|
-
}
|
|
983
|
-
export declare const normalizeTraitRefInput: (field: string, value: TraitRefInput) => string | RefNormalizationError;
|
|
984
|
-
export declare const normalizeAgentRefInput: (field: string, value: AgentRefInput) => string | RefNormalizationError;
|
|
985
|
-
export declare const normalizeOrbitRefInput: (field: string, value: OrbitRefInput) => string | RefNormalizationError;
|
|
986
|
-
export declare const normalizeToolRefInput: (field: string, value: ToolRefInput) => string | RefNormalizationError;
|
|
987
|
-
export declare const normalizeToolGroupRefInput: (field: string, value: ToolGroupRefInput) => string | RefNormalizationError;
|
|
988
|
-
export declare const normalizeModelProfileRefInput: (field: string, value: ModelProfileRefInput) => string | RefNormalizationError;
|
|
989
|
-
export declare const normalizeSkillRefInput: (field: string, value: SkillRefInput) => string | RefNormalizationError;
|
|
990
|
-
export declare const IdentityFrontmatter: Schema.Struct<{
|
|
991
|
-
description: typeof Schema.String;
|
|
992
|
-
}>;
|
|
993
|
-
export type IdentityFrontmatter = typeof IdentityFrontmatter.Type;
|
|
994
|
-
declare const Identity_base: Schema.Class<Identity, {
|
|
995
|
-
name: typeof Schema.String;
|
|
996
|
-
sourcePath: typeof Schema.String;
|
|
997
|
-
description: typeof Schema.String;
|
|
998
|
-
body: typeof Schema.String;
|
|
999
|
-
}, Schema.Struct.Encoded<{
|
|
1000
|
-
name: typeof Schema.String;
|
|
1001
|
-
sourcePath: typeof Schema.String;
|
|
1002
|
-
description: typeof Schema.String;
|
|
1003
|
-
body: typeof Schema.String;
|
|
1004
|
-
}>, never, {
|
|
1005
|
-
readonly name: string;
|
|
1006
|
-
} & {
|
|
1007
|
-
readonly description: string;
|
|
1008
|
-
} & {
|
|
1009
|
-
readonly sourcePath: string;
|
|
1010
|
-
} & {
|
|
1011
|
-
readonly body: string;
|
|
1012
|
-
}, {}, {}>;
|
|
1013
|
-
export declare class Identity extends Identity_base {
|
|
1014
|
-
}
|
|
1015
|
-
export declare const PersonalityFrontmatter: Schema.Struct<{
|
|
1016
|
-
name: typeof Schema.String;
|
|
1017
|
-
description: typeof Schema.String;
|
|
1018
|
-
temperament: Schema.optional<typeof Schema.String>;
|
|
1019
|
-
orientation: Schema.optional<typeof Schema.String>;
|
|
1020
|
-
virtues: Schema.optional<typeof Schema.String>;
|
|
1021
|
-
integration: Schema.optional<typeof Schema.String>;
|
|
1022
|
-
communication: Schema.optional<typeof Schema.String>;
|
|
1023
|
-
}>;
|
|
1024
|
-
export type PersonalityFrontmatter = typeof PersonalityFrontmatter.Type;
|
|
1025
|
-
declare const Personality_base: Schema.Class<Personality, {
|
|
1026
|
-
name: typeof Schema.String;
|
|
1027
|
-
sourcePath: typeof Schema.String;
|
|
1028
|
-
description: typeof Schema.String;
|
|
1029
|
-
temperament: Schema.optional<typeof Schema.String>;
|
|
1030
|
-
orientation: Schema.optional<typeof Schema.String>;
|
|
1031
|
-
virtues: Schema.optional<typeof Schema.String>;
|
|
1032
|
-
integration: Schema.optional<typeof Schema.String>;
|
|
1033
|
-
communication: Schema.optional<typeof Schema.String>;
|
|
1034
|
-
body: typeof Schema.String;
|
|
1035
|
-
}, Schema.Struct.Encoded<{
|
|
1036
|
-
name: typeof Schema.String;
|
|
1037
|
-
sourcePath: typeof Schema.String;
|
|
1038
|
-
description: typeof Schema.String;
|
|
1039
|
-
temperament: Schema.optional<typeof Schema.String>;
|
|
1040
|
-
orientation: Schema.optional<typeof Schema.String>;
|
|
1041
|
-
virtues: Schema.optional<typeof Schema.String>;
|
|
1042
|
-
integration: Schema.optional<typeof Schema.String>;
|
|
1043
|
-
communication: Schema.optional<typeof Schema.String>;
|
|
1044
|
-
body: typeof Schema.String;
|
|
1045
|
-
}>, never, {
|
|
1046
|
-
readonly name: string;
|
|
1047
|
-
} & {
|
|
1048
|
-
readonly description: string;
|
|
1049
|
-
} & {
|
|
1050
|
-
readonly sourcePath: string;
|
|
1051
|
-
} & {
|
|
1052
|
-
readonly body: string;
|
|
1053
|
-
} & {
|
|
1054
|
-
readonly temperament?: string | undefined;
|
|
1055
|
-
} & {
|
|
1056
|
-
readonly orientation?: string | undefined;
|
|
1057
|
-
} & {
|
|
1058
|
-
readonly virtues?: string | undefined;
|
|
1059
|
-
} & {
|
|
1060
|
-
readonly integration?: string | undefined;
|
|
1061
|
-
} & {
|
|
1062
|
-
readonly communication?: string | undefined;
|
|
1063
|
-
}, {}, {}>;
|
|
1064
|
-
export declare class Personality extends Personality_base {
|
|
1065
|
-
}
|
|
1066
|
-
export declare const OpenCodeModelTarget: Schema.Struct<{
|
|
1067
|
-
model: typeof Schema.String;
|
|
1068
|
-
variant: Schema.optional<typeof Schema.String>;
|
|
1069
|
-
temperature: Schema.optional<typeof Schema.Number>;
|
|
1070
|
-
top_p: Schema.optional<typeof Schema.Number>;
|
|
1071
|
-
}>;
|
|
1072
|
-
export declare const OpenCodeModelPoolTarget: Schema.Struct<{
|
|
1073
|
-
strategy: Schema.Literal<["any-of", "round-robin", "ordered"]>;
|
|
1074
|
-
models: Schema.Array$<Schema.Struct<{
|
|
1075
|
-
model: typeof Schema.String;
|
|
1076
|
-
variant: Schema.optional<typeof Schema.String>;
|
|
1077
|
-
temperature: Schema.optional<typeof Schema.Number>;
|
|
1078
|
-
top_p: Schema.optional<typeof Schema.Number>;
|
|
1079
|
-
}>>;
|
|
1080
|
-
}>;
|
|
1081
|
-
export declare const OpenCodeModelTargetBlock: Schema.Union<[Schema.Struct<{
|
|
1082
|
-
model: typeof Schema.String;
|
|
1083
|
-
variant: Schema.optional<typeof Schema.String>;
|
|
1084
|
-
temperature: Schema.optional<typeof Schema.Number>;
|
|
1085
|
-
top_p: Schema.optional<typeof Schema.Number>;
|
|
1086
|
-
}>, Schema.Struct<{
|
|
1087
|
-
strategy: Schema.Literal<["any-of", "round-robin", "ordered"]>;
|
|
1088
|
-
models: Schema.Array$<Schema.Struct<{
|
|
1089
|
-
model: typeof Schema.String;
|
|
1090
|
-
variant: Schema.optional<typeof Schema.String>;
|
|
1091
|
-
temperature: Schema.optional<typeof Schema.Number>;
|
|
1092
|
-
top_p: Schema.optional<typeof Schema.Number>;
|
|
1093
|
-
}>>;
|
|
1094
|
-
}>]>;
|
|
1095
|
-
export type OpenCodeModelTarget = typeof OpenCodeModelTargetBlock.Type;
|
|
1096
|
-
export declare const ClaudeCodeModelTarget: Schema.Struct<{
|
|
1097
|
-
model: Schema.optional<typeof Schema.String>;
|
|
1098
|
-
temperature: Schema.optional<typeof Schema.Number>;
|
|
1099
|
-
top_p: Schema.optional<typeof Schema.Number>;
|
|
1100
|
-
}>;
|
|
1101
|
-
export type ClaudeCodeModelTarget = typeof ClaudeCodeModelTarget.Type;
|
|
1102
|
-
export declare const AccessSchema: Schema.Struct<{
|
|
1103
|
-
tools: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1104
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
1105
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1106
|
-
toolspace: typeof Schema.String;
|
|
1107
|
-
name: typeof Schema.String;
|
|
1108
|
-
}>]>>>;
|
|
1109
|
-
toolGroups: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1110
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
1111
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1112
|
-
toolspace: typeof Schema.String;
|
|
1113
|
-
name: typeof Schema.String;
|
|
1114
|
-
}>]>>>;
|
|
1115
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1116
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1117
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1118
|
-
name: typeof Schema.String;
|
|
1119
|
-
}>, Schema.Struct<{
|
|
1120
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1121
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1122
|
-
skillspace: typeof Schema.String;
|
|
1123
|
-
name: typeof Schema.String;
|
|
1124
|
-
}>]>>>;
|
|
1125
|
-
}>;
|
|
1126
|
-
export type Access = typeof AccessSchema.Type;
|
|
1127
|
-
export declare const NormalizedAccessSchema: Schema.Struct<{
|
|
1128
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1129
|
-
toolGroups: Schema.Array$<typeof Schema.String>;
|
|
1130
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1131
|
-
}>;
|
|
1132
|
-
export type NormalizedAccess = typeof NormalizedAccessSchema.Type;
|
|
1133
|
-
export declare const SchemaSourceRefSchema: Schema.Struct<{
|
|
1134
|
-
sourcePath: typeof Schema.String;
|
|
1135
|
-
exportName: typeof Schema.String;
|
|
1136
|
-
}>;
|
|
1137
|
-
export type SchemaSourceRef = typeof SchemaSourceRefSchema.Type;
|
|
1138
|
-
export declare const TraitInjectSchema: Schema.Struct<{
|
|
1139
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1140
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1141
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1142
|
-
name: typeof Schema.String;
|
|
1143
|
-
}>, Schema.Struct<{
|
|
1144
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1145
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1146
|
-
skillspace: typeof Schema.String;
|
|
1147
|
-
name: typeof Schema.String;
|
|
1148
|
-
}>]>>>;
|
|
1149
|
-
}>;
|
|
1150
|
-
export type TraitInject = typeof TraitInjectSchema.Type;
|
|
1151
|
-
export declare const ToolSchemaSlotSchema: Schema.Struct<{
|
|
1152
|
-
kind: Schema.Literal<["schema"]>;
|
|
1153
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1154
|
-
}>;
|
|
1155
|
-
export type ToolSchemaSlot = typeof ToolSchemaSlotSchema.Type;
|
|
1156
|
-
export declare const ToolSlotSchema: Schema.Struct<{
|
|
1157
|
-
kind: Schema.Literal<["schema"]>;
|
|
1158
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1159
|
-
}>;
|
|
1160
|
-
export type ToolSlot = typeof ToolSlotSchema.Type;
|
|
1161
|
-
export declare const TraitToolAttachmentSchema: Schema.Struct<{
|
|
1162
|
-
ref: typeof Schema.String;
|
|
1163
|
-
}>;
|
|
1164
|
-
export type TraitToolAttachment = typeof TraitToolAttachmentSchema.Type;
|
|
1165
|
-
export declare const TraitRequireSchema: Schema.Struct<{
|
|
1166
|
-
tools: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
1167
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1168
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1169
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1170
|
-
name: typeof Schema.String;
|
|
1171
|
-
}>, Schema.Struct<{
|
|
1172
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1173
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1174
|
-
skillspace: typeof Schema.String;
|
|
1175
|
-
name: typeof Schema.String;
|
|
1176
|
-
}>]>>>;
|
|
1177
|
-
}>;
|
|
1178
|
-
export type TraitRequire = typeof TraitRequireSchema.Type;
|
|
1179
|
-
export declare const TraitInstructionsInputSchema: Schema.Union<[typeof Schema.String, Schema.Array$<typeof Schema.String>]>;
|
|
1180
|
-
export type TraitInstructionsInput = typeof TraitInstructionsInputSchema.Type;
|
|
1181
|
-
export declare const TraitSchema: Schema.Struct<{
|
|
1182
|
-
name: typeof Schema.String;
|
|
1183
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1184
|
-
instructions: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Array$<typeof Schema.String>]>>;
|
|
1185
|
-
access: Schema.optional<Schema.Struct<{
|
|
1186
|
-
tools: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1187
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
1188
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1189
|
-
toolspace: typeof Schema.String;
|
|
1190
|
-
name: typeof Schema.String;
|
|
1191
|
-
}>]>>>;
|
|
1192
|
-
toolGroups: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1193
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
1194
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1195
|
-
toolspace: typeof Schema.String;
|
|
1196
|
-
name: typeof Schema.String;
|
|
1197
|
-
}>]>>>;
|
|
1198
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1199
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1200
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1201
|
-
name: typeof Schema.String;
|
|
1202
|
-
}>, Schema.Struct<{
|
|
1203
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1204
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1205
|
-
skillspace: typeof Schema.String;
|
|
1206
|
-
name: typeof Schema.String;
|
|
1207
|
-
}>]>>>;
|
|
1208
|
-
}>>;
|
|
1209
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1210
|
-
ref: typeof Schema.String;
|
|
1211
|
-
}>>>;
|
|
1212
|
-
inject: Schema.optional<Schema.Struct<{
|
|
1213
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1214
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1215
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1216
|
-
name: typeof Schema.String;
|
|
1217
|
-
}>, Schema.Struct<{
|
|
1218
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1219
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1220
|
-
skillspace: typeof Schema.String;
|
|
1221
|
-
name: typeof Schema.String;
|
|
1222
|
-
}>]>>>;
|
|
1223
|
-
}>>;
|
|
1224
|
-
require: Schema.optional<Schema.Struct<{
|
|
1225
|
-
tools: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
1226
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1227
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1228
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1229
|
-
name: typeof Schema.String;
|
|
1230
|
-
}>, Schema.Struct<{
|
|
1231
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1232
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1233
|
-
skillspace: typeof Schema.String;
|
|
1234
|
-
name: typeof Schema.String;
|
|
1235
|
-
}>]>>>;
|
|
1236
|
-
}>>;
|
|
1237
|
-
}>;
|
|
1238
|
-
export declare const TraitSourceSchema: Schema.Struct<{
|
|
1239
|
-
name: typeof Schema.String;
|
|
1240
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1241
|
-
instructions: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Array$<typeof Schema.String>]>>;
|
|
1242
|
-
access: Schema.optional<Schema.Struct<{
|
|
1243
|
-
tools: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1244
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
1245
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1246
|
-
toolspace: typeof Schema.String;
|
|
1247
|
-
name: typeof Schema.String;
|
|
1248
|
-
}>]>>>;
|
|
1249
|
-
toolGroups: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1250
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
1251
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1252
|
-
toolspace: typeof Schema.String;
|
|
1253
|
-
name: typeof Schema.String;
|
|
1254
|
-
}>]>>>;
|
|
1255
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1256
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1257
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1258
|
-
name: typeof Schema.String;
|
|
1259
|
-
}>, Schema.Struct<{
|
|
1260
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1261
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1262
|
-
skillspace: typeof Schema.String;
|
|
1263
|
-
name: typeof Schema.String;
|
|
1264
|
-
}>]>>>;
|
|
1265
|
-
}>>;
|
|
1266
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1267
|
-
ref: typeof Schema.String;
|
|
1268
|
-
}>>>;
|
|
1269
|
-
inject: Schema.optional<Schema.Struct<{
|
|
1270
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1271
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1272
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1273
|
-
name: typeof Schema.String;
|
|
1274
|
-
}>, Schema.Struct<{
|
|
1275
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1276
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1277
|
-
skillspace: typeof Schema.String;
|
|
1278
|
-
name: typeof Schema.String;
|
|
1279
|
-
}>]>>>;
|
|
1280
|
-
}>>;
|
|
1281
|
-
require: Schema.optional<Schema.Struct<{
|
|
1282
|
-
tools: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
1283
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1284
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1285
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1286
|
-
name: typeof Schema.String;
|
|
1287
|
-
}>, Schema.Struct<{
|
|
1288
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1289
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1290
|
-
skillspace: typeof Schema.String;
|
|
1291
|
-
name: typeof Schema.String;
|
|
1292
|
-
}>]>>>;
|
|
1293
|
-
}>>;
|
|
1294
|
-
}>;
|
|
1295
|
-
export type TraitSource = typeof TraitSourceSchema.Type;
|
|
1296
|
-
export declare const NormalizedTraitToolAttachmentSchema: Schema.Struct<{
|
|
1297
|
-
ref: typeof Schema.String;
|
|
1298
|
-
}>;
|
|
1299
|
-
export type NormalizedTraitToolAttachment = typeof NormalizedTraitToolAttachmentSchema.Type;
|
|
1300
|
-
declare const Trait_base: Schema.Class<Trait, {
|
|
1301
|
-
name: typeof Schema.String;
|
|
1302
|
-
sourcePath: typeof Schema.String;
|
|
1303
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1304
|
-
instructions: Schema.Array$<typeof Schema.String>;
|
|
1305
|
-
access: Schema.Struct<{
|
|
1306
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1307
|
-
toolGroups: Schema.Array$<typeof Schema.String>;
|
|
1308
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1309
|
-
}>;
|
|
1310
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1311
|
-
ref: typeof Schema.String;
|
|
1312
|
-
}>>;
|
|
1313
|
-
inject: Schema.Struct<{
|
|
1314
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1315
|
-
}>;
|
|
1316
|
-
require: Schema.Struct<{
|
|
1317
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1318
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1319
|
-
}>;
|
|
1320
|
-
}, Schema.Struct.Encoded<{
|
|
1321
|
-
name: typeof Schema.String;
|
|
1322
|
-
sourcePath: typeof Schema.String;
|
|
1323
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1324
|
-
instructions: Schema.Array$<typeof Schema.String>;
|
|
1325
|
-
access: Schema.Struct<{
|
|
1326
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1327
|
-
toolGroups: Schema.Array$<typeof Schema.String>;
|
|
1328
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1329
|
-
}>;
|
|
1330
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1331
|
-
ref: typeof Schema.String;
|
|
1332
|
-
}>>;
|
|
1333
|
-
inject: Schema.Struct<{
|
|
1334
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1335
|
-
}>;
|
|
1336
|
-
require: Schema.Struct<{
|
|
1337
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1338
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1339
|
-
}>;
|
|
1340
|
-
}>, never, {
|
|
1341
|
-
readonly tools: {
|
|
1342
|
-
readonly [x: string]: {
|
|
1343
|
-
readonly ref: string;
|
|
1344
|
-
};
|
|
1345
|
-
};
|
|
1346
|
-
} & {
|
|
1347
|
-
readonly name: string;
|
|
1348
|
-
} & {
|
|
1349
|
-
readonly description?: string | undefined;
|
|
1350
|
-
} & {
|
|
1351
|
-
readonly sourcePath: string;
|
|
1352
|
-
} & {
|
|
1353
|
-
readonly instructions: readonly string[];
|
|
1354
|
-
} & {
|
|
1355
|
-
readonly access: {
|
|
1356
|
-
readonly skills: readonly string[];
|
|
1357
|
-
readonly tools: readonly string[];
|
|
1358
|
-
readonly toolGroups: readonly string[];
|
|
1359
|
-
};
|
|
1360
|
-
} & {
|
|
1361
|
-
readonly inject: {
|
|
1362
|
-
readonly skills: readonly string[];
|
|
1363
|
-
};
|
|
1364
|
-
} & {
|
|
1365
|
-
readonly require: {
|
|
1366
|
-
readonly skills: readonly string[];
|
|
1367
|
-
readonly tools: readonly string[];
|
|
1368
|
-
};
|
|
1369
|
-
}, {}, {}>;
|
|
1370
|
-
export declare class Trait extends Trait_base {
|
|
1371
|
-
}
|
|
1372
|
-
export declare const CanonicalToolSchema: Schema.Struct<{
|
|
1373
|
-
name: typeof Schema.String;
|
|
1374
|
-
description: typeof Schema.String;
|
|
1375
|
-
input: typeof Schema.Unknown;
|
|
1376
|
-
output: typeof Schema.Unknown;
|
|
1377
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1378
|
-
kind: Schema.Literal<["schema"]>;
|
|
1379
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1380
|
-
}>>>;
|
|
1381
|
-
handle: typeof Schema.Any;
|
|
1382
|
-
}>;
|
|
1383
|
-
export type CanonicalToolInput = typeof CanonicalToolSchema.Type;
|
|
1384
|
-
export declare const ToolSourceSchema: Schema.Struct<{
|
|
1385
|
-
name: typeof Schema.String;
|
|
1386
|
-
description: typeof Schema.String;
|
|
1387
|
-
input: typeof Schema.Unknown;
|
|
1388
|
-
output: typeof Schema.Unknown;
|
|
1389
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1390
|
-
kind: Schema.Literal<["schema"]>;
|
|
1391
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1392
|
-
}>>>;
|
|
1393
|
-
handle: typeof Schema.Any;
|
|
1394
|
-
}>;
|
|
1395
|
-
export type ToolSource = typeof ToolSourceSchema.Type;
|
|
1396
|
-
declare const CanonicalTool_base: Schema.Class<CanonicalTool, {
|
|
1397
|
-
name: typeof Schema.String;
|
|
1398
|
-
sourcePath: typeof Schema.String;
|
|
1399
|
-
description: typeof Schema.String;
|
|
1400
|
-
input: typeof Schema.Unknown;
|
|
1401
|
-
output: typeof Schema.Unknown;
|
|
1402
|
-
slots: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1403
|
-
kind: Schema.Literal<["schema"]>;
|
|
1404
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1405
|
-
}>>;
|
|
1406
|
-
handle: typeof Schema.Any;
|
|
1407
|
-
}, Schema.Struct.Encoded<{
|
|
1408
|
-
name: typeof Schema.String;
|
|
1409
|
-
sourcePath: typeof Schema.String;
|
|
1410
|
-
description: typeof Schema.String;
|
|
1411
|
-
input: typeof Schema.Unknown;
|
|
1412
|
-
output: typeof Schema.Unknown;
|
|
1413
|
-
slots: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1414
|
-
kind: Schema.Literal<["schema"]>;
|
|
1415
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1416
|
-
}>>;
|
|
1417
|
-
handle: typeof Schema.Any;
|
|
1418
|
-
}>, never, {
|
|
1419
|
-
readonly output: unknown;
|
|
1420
|
-
} & {
|
|
1421
|
-
readonly name: string;
|
|
1422
|
-
} & {
|
|
1423
|
-
readonly description: string;
|
|
1424
|
-
} & {
|
|
1425
|
-
readonly handle: any;
|
|
1426
|
-
} & {
|
|
1427
|
-
readonly input: unknown;
|
|
1428
|
-
} & {
|
|
1429
|
-
readonly sourcePath: string;
|
|
1430
|
-
} & {
|
|
1431
|
-
readonly slots: {
|
|
1432
|
-
readonly [x: string]: {
|
|
1433
|
-
readonly kind: "schema";
|
|
1434
|
-
readonly description?: string | undefined;
|
|
1435
|
-
};
|
|
1436
|
-
};
|
|
1437
|
-
}, {}, {}>;
|
|
1438
|
-
export declare class CanonicalTool extends CanonicalTool_base {
|
|
1439
|
-
}
|
|
1440
|
-
export declare const KindedTraitBindingInputSchema: Schema.Struct<{
|
|
1441
|
-
kind: Schema.Literal<["trait-binding"]>;
|
|
1442
|
-
trait: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1443
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1444
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1445
|
-
name: typeof Schema.String;
|
|
1446
|
-
}>]>;
|
|
1447
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1448
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
1449
|
-
}>>>;
|
|
1450
|
-
}>;
|
|
1451
|
-
export declare const PlainTraitBindingInputSchema: Schema.Struct<{
|
|
1452
|
-
trait: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1453
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1454
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1455
|
-
name: typeof Schema.String;
|
|
1456
|
-
}>]>;
|
|
1457
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1458
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
1459
|
-
}>>>;
|
|
1460
|
-
}>;
|
|
1461
|
-
export declare const TraitBindingInputSchema: Schema.Union<[Schema.Struct<{
|
|
1462
|
-
kind: Schema.Literal<["trait-binding"]>;
|
|
1463
|
-
trait: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1464
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1465
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1466
|
-
name: typeof Schema.String;
|
|
1467
|
-
}>]>;
|
|
1468
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1469
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
1470
|
-
}>>>;
|
|
1471
|
-
}>, Schema.Struct<{
|
|
1472
|
-
trait: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1473
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1474
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1475
|
-
name: typeof Schema.String;
|
|
1476
|
-
}>]>;
|
|
1477
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1478
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
1479
|
-
}>>>;
|
|
1480
|
-
}>]>;
|
|
1481
|
-
export type TraitBindingInput = typeof TraitBindingInputSchema.Type;
|
|
1482
|
-
export declare const NormalizedTraitBindingToolSlotSchema: Schema.Struct<{
|
|
1483
|
-
schema: typeof Schema.Unknown;
|
|
1484
|
-
source: Schema.Struct<{
|
|
1485
|
-
sourcePath: typeof Schema.String;
|
|
1486
|
-
exportName: typeof Schema.String;
|
|
1487
|
-
}>;
|
|
1488
|
-
}>;
|
|
1489
|
-
export type NormalizedTraitBindingToolSlot = typeof NormalizedTraitBindingToolSlotSchema.Type;
|
|
1490
|
-
export declare const NormalizedTraitBindingToolSchema: Schema.Struct<{
|
|
1491
|
-
slots: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1492
|
-
schema: typeof Schema.Unknown;
|
|
1493
|
-
source: Schema.Struct<{
|
|
1494
|
-
sourcePath: typeof Schema.String;
|
|
1495
|
-
exportName: typeof Schema.String;
|
|
1496
|
-
}>;
|
|
1497
|
-
}>>;
|
|
1498
|
-
}>;
|
|
1499
|
-
export type NormalizedTraitBindingTool = typeof NormalizedTraitBindingToolSchema.Type;
|
|
1500
|
-
export declare const NormalizedTraitBindingSchema: Schema.Struct<{
|
|
1501
|
-
ref: typeof Schema.String;
|
|
1502
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1503
|
-
slots: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1504
|
-
schema: typeof Schema.Unknown;
|
|
1505
|
-
source: Schema.Struct<{
|
|
1506
|
-
sourcePath: typeof Schema.String;
|
|
1507
|
-
exportName: typeof Schema.String;
|
|
1508
|
-
}>;
|
|
1509
|
-
}>>;
|
|
1510
|
-
}>>;
|
|
1511
|
-
}>;
|
|
1512
|
-
export type NormalizedTraitBinding = typeof NormalizedTraitBindingSchema.Type;
|
|
1513
|
-
export declare const AgentSchema: Schema.Struct<{
|
|
1514
|
-
name: typeof Schema.String;
|
|
1515
|
-
description: typeof Schema.String;
|
|
1516
|
-
identity: typeof Schema.String;
|
|
1517
|
-
personality: Schema.optional<typeof Schema.String>;
|
|
1518
|
-
model: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1519
|
-
kind: Schema.Literal<["model-profile-ref"]>;
|
|
1520
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1521
|
-
modelspace: typeof Schema.String;
|
|
1522
|
-
name: typeof Schema.String;
|
|
1523
|
-
}>]>>;
|
|
1524
|
-
traits: Schema.optional<Schema.Array$<Schema.Union<[Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1525
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1526
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1527
|
-
name: typeof Schema.String;
|
|
1528
|
-
}>]>, Schema.Union<[Schema.Struct<{
|
|
1529
|
-
kind: Schema.Literal<["trait-binding"]>;
|
|
1530
|
-
trait: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1531
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1532
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1533
|
-
name: typeof Schema.String;
|
|
1534
|
-
}>]>;
|
|
1535
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1536
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
1537
|
-
}>>>;
|
|
1538
|
-
}>, Schema.Struct<{
|
|
1539
|
-
trait: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1540
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1541
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1542
|
-
name: typeof Schema.String;
|
|
1543
|
-
}>]>;
|
|
1544
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1545
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
1546
|
-
}>>>;
|
|
1547
|
-
}>]>]>>>;
|
|
1548
|
-
access: Schema.optional<Schema.Struct<{
|
|
1549
|
-
tools: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1550
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
1551
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1552
|
-
toolspace: typeof Schema.String;
|
|
1553
|
-
name: typeof Schema.String;
|
|
1554
|
-
}>]>>>;
|
|
1555
|
-
toolGroups: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1556
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
1557
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1558
|
-
toolspace: typeof Schema.String;
|
|
1559
|
-
name: typeof Schema.String;
|
|
1560
|
-
}>]>>>;
|
|
1561
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1562
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1563
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1564
|
-
name: typeof Schema.String;
|
|
1565
|
-
}>, Schema.Struct<{
|
|
1566
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1567
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1568
|
-
skillspace: typeof Schema.String;
|
|
1569
|
-
name: typeof Schema.String;
|
|
1570
|
-
}>]>>>;
|
|
1571
|
-
}>>;
|
|
1572
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1573
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1574
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1575
|
-
name: typeof Schema.String;
|
|
1576
|
-
}>, Schema.Struct<{
|
|
1577
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1578
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1579
|
-
skillspace: typeof Schema.String;
|
|
1580
|
-
name: typeof Schema.String;
|
|
1581
|
-
}>]>>>;
|
|
1582
|
-
color: Schema.optional<typeof Schema.String>;
|
|
1583
|
-
targets: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Object>>;
|
|
1584
|
-
}>;
|
|
1585
|
-
export declare const AgentSourceSchema: Schema.Struct<{
|
|
1586
|
-
name: typeof Schema.String;
|
|
1587
|
-
description: typeof Schema.String;
|
|
1588
|
-
identity: typeof Schema.String;
|
|
1589
|
-
personality: Schema.optional<typeof Schema.String>;
|
|
1590
|
-
model: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1591
|
-
kind: Schema.Literal<["model-profile-ref"]>;
|
|
1592
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1593
|
-
modelspace: typeof Schema.String;
|
|
1594
|
-
name: typeof Schema.String;
|
|
1595
|
-
}>]>>;
|
|
1596
|
-
traits: Schema.optional<Schema.Array$<Schema.Union<[Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1597
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1598
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1599
|
-
name: typeof Schema.String;
|
|
1600
|
-
}>]>, Schema.Union<[Schema.Struct<{
|
|
1601
|
-
kind: Schema.Literal<["trait-binding"]>;
|
|
1602
|
-
trait: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1603
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1604
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1605
|
-
name: typeof Schema.String;
|
|
1606
|
-
}>]>;
|
|
1607
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1608
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
1609
|
-
}>>>;
|
|
1610
|
-
}>, Schema.Struct<{
|
|
1611
|
-
trait: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1612
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
1613
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1614
|
-
name: typeof Schema.String;
|
|
1615
|
-
}>]>;
|
|
1616
|
-
tools: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1617
|
-
slots: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Unknown>>;
|
|
1618
|
-
}>>>;
|
|
1619
|
-
}>]>]>>>;
|
|
1620
|
-
access: Schema.optional<Schema.Struct<{
|
|
1621
|
-
tools: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1622
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
1623
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1624
|
-
toolspace: typeof Schema.String;
|
|
1625
|
-
name: typeof Schema.String;
|
|
1626
|
-
}>]>>>;
|
|
1627
|
-
toolGroups: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1628
|
-
kind: Schema.Literal<["tool-group-ref"]>;
|
|
1629
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1630
|
-
toolspace: typeof Schema.String;
|
|
1631
|
-
name: typeof Schema.String;
|
|
1632
|
-
}>]>>>;
|
|
1633
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1634
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1635
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1636
|
-
name: typeof Schema.String;
|
|
1637
|
-
}>, Schema.Struct<{
|
|
1638
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1639
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1640
|
-
skillspace: typeof Schema.String;
|
|
1641
|
-
name: typeof Schema.String;
|
|
1642
|
-
}>]>>>;
|
|
1643
|
-
}>>;
|
|
1644
|
-
skills: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1645
|
-
kind: Schema.Literal<["skill-ref"]>;
|
|
1646
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1647
|
-
name: typeof Schema.String;
|
|
1648
|
-
}>, Schema.Struct<{
|
|
1649
|
-
kind: Schema.Literal<["skillspace-ref"]>;
|
|
1650
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1651
|
-
skillspace: typeof Schema.String;
|
|
1652
|
-
name: typeof Schema.String;
|
|
1653
|
-
}>]>>>;
|
|
1654
|
-
color: Schema.optional<typeof Schema.String>;
|
|
1655
|
-
targets: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.Object>>;
|
|
1656
|
-
}>;
|
|
1657
|
-
export type AgentSource = typeof AgentSourceSchema.Type;
|
|
1658
|
-
declare const Agent_base: Schema.Class<Agent, {
|
|
1659
|
-
name: typeof Schema.String;
|
|
1660
|
-
sourcePath: typeof Schema.String;
|
|
1661
|
-
description: typeof Schema.String;
|
|
1662
|
-
identity: typeof Schema.String;
|
|
1663
|
-
personality: Schema.optional<typeof Schema.String>;
|
|
1664
|
-
model: Schema.optional<typeof Schema.String>;
|
|
1665
|
-
traits: Schema.Array$<Schema.Struct<{
|
|
1666
|
-
ref: typeof Schema.String;
|
|
1667
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1668
|
-
slots: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1669
|
-
schema: typeof Schema.Unknown;
|
|
1670
|
-
source: Schema.Struct<{
|
|
1671
|
-
sourcePath: typeof Schema.String;
|
|
1672
|
-
exportName: typeof Schema.String;
|
|
1673
|
-
}>;
|
|
1674
|
-
}>>;
|
|
1675
|
-
}>>;
|
|
1676
|
-
}>>;
|
|
1677
|
-
access: Schema.Struct<{
|
|
1678
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1679
|
-
toolGroups: Schema.Array$<typeof Schema.String>;
|
|
1680
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1681
|
-
}>;
|
|
1682
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1683
|
-
color: Schema.optional<typeof Schema.String>;
|
|
1684
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.Object>;
|
|
1685
|
-
}, Schema.Struct.Encoded<{
|
|
1686
|
-
name: typeof Schema.String;
|
|
1687
|
-
sourcePath: typeof Schema.String;
|
|
1688
|
-
description: typeof Schema.String;
|
|
1689
|
-
identity: typeof Schema.String;
|
|
1690
|
-
personality: Schema.optional<typeof Schema.String>;
|
|
1691
|
-
model: Schema.optional<typeof Schema.String>;
|
|
1692
|
-
traits: Schema.Array$<Schema.Struct<{
|
|
1693
|
-
ref: typeof Schema.String;
|
|
1694
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1695
|
-
slots: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1696
|
-
schema: typeof Schema.Unknown;
|
|
1697
|
-
source: Schema.Struct<{
|
|
1698
|
-
sourcePath: typeof Schema.String;
|
|
1699
|
-
exportName: typeof Schema.String;
|
|
1700
|
-
}>;
|
|
1701
|
-
}>>;
|
|
1702
|
-
}>>;
|
|
1703
|
-
}>>;
|
|
1704
|
-
access: Schema.Struct<{
|
|
1705
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1706
|
-
toolGroups: Schema.Array$<typeof Schema.String>;
|
|
1707
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1708
|
-
}>;
|
|
1709
|
-
skills: Schema.Array$<typeof Schema.String>;
|
|
1710
|
-
color: Schema.optional<typeof Schema.String>;
|
|
1711
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.Object>;
|
|
1712
|
-
}>, never, {
|
|
1713
|
-
readonly model?: string | undefined;
|
|
1714
|
-
} & {
|
|
1715
|
-
readonly skills: readonly string[];
|
|
1716
|
-
} & {
|
|
1717
|
-
readonly traits: readonly {
|
|
1718
|
-
readonly tools: {
|
|
1719
|
-
readonly [x: string]: {
|
|
1720
|
-
readonly slots: {
|
|
1721
|
-
readonly [x: string]: {
|
|
1722
|
-
readonly schema: unknown;
|
|
1723
|
-
readonly source: {
|
|
1724
|
-
readonly sourcePath: string;
|
|
1725
|
-
readonly exportName: string;
|
|
1726
|
-
};
|
|
1727
|
-
};
|
|
1728
|
-
};
|
|
1729
|
-
};
|
|
1730
|
-
};
|
|
1731
|
-
readonly ref: string;
|
|
1732
|
-
}[];
|
|
1733
|
-
} & {
|
|
1734
|
-
readonly name: string;
|
|
1735
|
-
} & {
|
|
1736
|
-
readonly identity: string;
|
|
1737
|
-
} & {
|
|
1738
|
-
readonly description: string;
|
|
1739
|
-
} & {
|
|
1740
|
-
readonly targets: {
|
|
1741
|
-
readonly [x: string]: object;
|
|
1742
|
-
};
|
|
1743
|
-
} & {
|
|
1744
|
-
readonly sourcePath: string;
|
|
1745
|
-
} & {
|
|
1746
|
-
readonly access: {
|
|
1747
|
-
readonly skills: readonly string[];
|
|
1748
|
-
readonly tools: readonly string[];
|
|
1749
|
-
readonly toolGroups: readonly string[];
|
|
1750
|
-
};
|
|
1751
|
-
} & {
|
|
1752
|
-
readonly personality?: string | undefined;
|
|
1753
|
-
} & {
|
|
1754
|
-
readonly color?: string | undefined;
|
|
1755
|
-
}, {}, {}>;
|
|
1756
|
-
export declare class Agent extends Agent_base {
|
|
1757
|
-
}
|
|
1758
|
-
export declare const GeneratedContractFileSchema: Schema.Struct<{
|
|
1759
|
-
relativePath: typeof Schema.String;
|
|
1760
|
-
content: typeof Schema.String;
|
|
1761
|
-
}>;
|
|
1762
|
-
export type GeneratedContractFile = typeof GeneratedContractFileSchema.Type;
|
|
1763
|
-
declare const Contract_base: Schema.Class<Contract, {
|
|
1764
|
-
name: typeof Schema.String;
|
|
1765
|
-
sourcePath: typeof Schema.String;
|
|
1766
|
-
pluginName: typeof Schema.String;
|
|
1767
|
-
generatedFiles: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
1768
|
-
relativePath: typeof Schema.String;
|
|
1769
|
-
content: typeof Schema.String;
|
|
1770
|
-
}>>>;
|
|
1771
|
-
}, Schema.Struct.Encoded<{
|
|
1772
|
-
name: typeof Schema.String;
|
|
1773
|
-
sourcePath: typeof Schema.String;
|
|
1774
|
-
pluginName: typeof Schema.String;
|
|
1775
|
-
generatedFiles: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
1776
|
-
relativePath: typeof Schema.String;
|
|
1777
|
-
content: typeof Schema.String;
|
|
1778
|
-
}>>>;
|
|
1779
|
-
}>, never, {
|
|
1780
|
-
readonly name: string;
|
|
1781
|
-
} & {
|
|
1782
|
-
readonly sourcePath: string;
|
|
1783
|
-
} & {
|
|
1784
|
-
readonly pluginName: string;
|
|
1785
|
-
} & {
|
|
1786
|
-
readonly generatedFiles?: readonly {
|
|
1787
|
-
readonly relativePath: string;
|
|
1788
|
-
readonly content: string;
|
|
1789
|
-
}[] | undefined;
|
|
1790
|
-
}, {}, {}>;
|
|
1791
|
-
export declare class Contract extends Contract_base {
|
|
1792
|
-
}
|
|
1793
|
-
export declare const ToolTargetBindingSchema: Schema.Struct<{
|
|
1794
|
-
name: typeof Schema.String;
|
|
1795
|
-
}>;
|
|
1796
|
-
export type ToolTargetBinding = typeof ToolTargetBindingSchema.Type;
|
|
1797
|
-
export declare const ToolDefinitionSchema: Schema.Struct<{
|
|
1798
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1799
|
-
targets: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1800
|
-
name: typeof Schema.String;
|
|
1801
|
-
}>>;
|
|
1802
|
-
}>;
|
|
1803
|
-
export type ToolDefinition = typeof ToolDefinitionSchema.Type;
|
|
1804
|
-
export declare const ToolGroupSchema: Schema.Struct<{
|
|
1805
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1806
|
-
tools: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1807
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
1808
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1809
|
-
toolspace: typeof Schema.String;
|
|
1810
|
-
name: typeof Schema.String;
|
|
1811
|
-
}>]>>;
|
|
1812
|
-
}>;
|
|
1813
|
-
export type ToolGroup = typeof ToolGroupSchema.Type;
|
|
1814
|
-
export declare const ToolspaceSchema: Schema.Struct<{
|
|
1815
|
-
name: typeof Schema.String;
|
|
1816
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1817
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1818
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1819
|
-
targets: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1820
|
-
name: typeof Schema.String;
|
|
1821
|
-
}>>;
|
|
1822
|
-
}>>;
|
|
1823
|
-
groups: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1824
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1825
|
-
tools: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1826
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
1827
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1828
|
-
toolspace: typeof Schema.String;
|
|
1829
|
-
name: typeof Schema.String;
|
|
1830
|
-
}>]>>;
|
|
1831
|
-
}>>>;
|
|
1832
|
-
}>;
|
|
1833
|
-
export declare const ToolspaceSourceSchema: Schema.Struct<{
|
|
1834
|
-
name: typeof Schema.String;
|
|
1835
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1836
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1837
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1838
|
-
targets: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1839
|
-
name: typeof Schema.String;
|
|
1840
|
-
}>>;
|
|
1841
|
-
}>>;
|
|
1842
|
-
groups: Schema.optional<Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1843
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1844
|
-
tools: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
1845
|
-
kind: Schema.Literal<["tool-ref"]>;
|
|
1846
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
1847
|
-
toolspace: typeof Schema.String;
|
|
1848
|
-
name: typeof Schema.String;
|
|
1849
|
-
}>]>>;
|
|
1850
|
-
}>>>;
|
|
1851
|
-
}>;
|
|
1852
|
-
export type ToolspaceSource = typeof ToolspaceSourceSchema.Type;
|
|
1853
|
-
export declare const NormalizedToolDefinitionSchema: Schema.Struct<{
|
|
1854
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1855
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.String>;
|
|
1856
|
-
}>;
|
|
1857
|
-
export type NormalizedToolDefinition = typeof NormalizedToolDefinitionSchema.Type;
|
|
1858
|
-
export declare const NormalizedToolGroupSchema: Schema.Struct<{
|
|
1859
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1860
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1861
|
-
}>;
|
|
1862
|
-
export type NormalizedToolGroup = typeof NormalizedToolGroupSchema.Type;
|
|
1863
|
-
declare const Toolspace_base: Schema.Class<Toolspace, {
|
|
1864
|
-
name: typeof Schema.String;
|
|
1865
|
-
sourcePath: typeof Schema.String;
|
|
1866
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1867
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1868
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1869
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.String>;
|
|
1870
|
-
}>>;
|
|
1871
|
-
groups: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1872
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1873
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1874
|
-
}>>;
|
|
1875
|
-
}, Schema.Struct.Encoded<{
|
|
1876
|
-
name: typeof Schema.String;
|
|
1877
|
-
sourcePath: typeof Schema.String;
|
|
1878
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1879
|
-
tools: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1880
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1881
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.String>;
|
|
1882
|
-
}>>;
|
|
1883
|
-
groups: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1884
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1885
|
-
tools: Schema.Array$<typeof Schema.String>;
|
|
1886
|
-
}>>;
|
|
1887
|
-
}>, never, {
|
|
1888
|
-
readonly tools: {
|
|
1889
|
-
readonly [x: string]: {
|
|
1890
|
-
readonly description?: string | undefined;
|
|
1891
|
-
readonly targets: {
|
|
1892
|
-
readonly [x: string]: string;
|
|
1893
|
-
};
|
|
1894
|
-
};
|
|
1895
|
-
};
|
|
1896
|
-
} & {
|
|
1897
|
-
readonly name: string;
|
|
1898
|
-
} & {
|
|
1899
|
-
readonly description?: string | undefined;
|
|
1900
|
-
} & {
|
|
1901
|
-
readonly sourcePath: string;
|
|
1902
|
-
} & {
|
|
1903
|
-
readonly groups: {
|
|
1904
|
-
readonly [x: string]: {
|
|
1905
|
-
readonly tools: readonly string[];
|
|
1906
|
-
readonly description?: string | undefined;
|
|
1907
|
-
};
|
|
1908
|
-
};
|
|
1909
|
-
}, {}, {}>;
|
|
1910
|
-
export declare class Toolspace extends Toolspace_base {
|
|
1911
|
-
}
|
|
1912
|
-
export declare const ModelProfileSchema: Schema.Struct<{
|
|
1913
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1914
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.Object>;
|
|
1915
|
-
}>;
|
|
1916
|
-
export type ModelProfile = typeof ModelProfileSchema.Type;
|
|
1917
|
-
export declare const ModelspaceSchema: Schema.Struct<{
|
|
1918
|
-
name: typeof Schema.String;
|
|
1919
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1920
|
-
profiles: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1921
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1922
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.Object>;
|
|
1923
|
-
}>>;
|
|
1924
|
-
}>;
|
|
1925
|
-
export declare const ModelspaceSourceSchema: Schema.Struct<{
|
|
1926
|
-
name: typeof Schema.String;
|
|
1927
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1928
|
-
profiles: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1929
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1930
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.Object>;
|
|
1931
|
-
}>>;
|
|
1932
|
-
}>;
|
|
1933
|
-
export type ModelspaceSource = typeof ModelspaceSourceSchema.Type;
|
|
1934
|
-
declare const Modelspace_base: Schema.Class<Modelspace, {
|
|
1935
|
-
name: typeof Schema.String;
|
|
1936
|
-
sourcePath: typeof Schema.String;
|
|
1937
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1938
|
-
profiles: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1939
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1940
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.Object>;
|
|
1941
|
-
}>>;
|
|
1942
|
-
}, Schema.Struct.Encoded<{
|
|
1943
|
-
name: typeof Schema.String;
|
|
1944
|
-
sourcePath: typeof Schema.String;
|
|
1945
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1946
|
-
profiles: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1947
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1948
|
-
targets: Schema.Record$<typeof Schema.String, typeof Schema.Object>;
|
|
1949
|
-
}>>;
|
|
1950
|
-
}>, never, {
|
|
1951
|
-
readonly name: string;
|
|
1952
|
-
} & {
|
|
1953
|
-
readonly description?: string | undefined;
|
|
1954
|
-
} & {
|
|
1955
|
-
readonly sourcePath: string;
|
|
1956
|
-
} & {
|
|
1957
|
-
readonly profiles: {
|
|
1958
|
-
readonly [x: string]: {
|
|
1959
|
-
readonly description?: string | undefined;
|
|
1960
|
-
readonly targets: {
|
|
1961
|
-
readonly [x: string]: object;
|
|
1962
|
-
};
|
|
1963
|
-
};
|
|
1964
|
-
};
|
|
1965
|
-
}, {}, {}>;
|
|
1966
|
-
export declare class Modelspace extends Modelspace_base {
|
|
1967
|
-
}
|
|
1968
|
-
declare const Skill_base: Schema.Class<Skill, {
|
|
1969
|
-
name: typeof Schema.String;
|
|
1970
|
-
sourcePath: typeof Schema.String;
|
|
1971
|
-
}, Schema.Struct.Encoded<{
|
|
1972
|
-
name: typeof Schema.String;
|
|
1973
|
-
sourcePath: typeof Schema.String;
|
|
1974
|
-
}>, never, {
|
|
1975
|
-
readonly name: string;
|
|
1976
|
-
} & {
|
|
1977
|
-
readonly sourcePath: string;
|
|
1978
|
-
}, {}, {}>;
|
|
1979
|
-
export declare class Skill extends Skill_base {
|
|
1980
|
-
}
|
|
1981
|
-
export declare const SkillTargetBindingSchema: Schema.Struct<{
|
|
1982
|
-
name: typeof Schema.String;
|
|
1983
|
-
}>;
|
|
1984
|
-
export type SkillTargetBinding = typeof SkillTargetBindingSchema.Type;
|
|
1985
|
-
export declare const SkillDefinitionSchema: Schema.Struct<{
|
|
1986
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1987
|
-
targets: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1988
|
-
name: typeof Schema.String;
|
|
1989
|
-
}>>;
|
|
1990
|
-
}>;
|
|
1991
|
-
export type SkillDefinition = typeof SkillDefinitionSchema.Type;
|
|
1992
|
-
export declare const SkillspaceSchema: Schema.Struct<{
|
|
1993
|
-
name: typeof Schema.String;
|
|
1994
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1995
|
-
skills: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1996
|
-
description: Schema.optional<typeof Schema.String>;
|
|
1997
|
-
targets: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
1998
|
-
name: typeof Schema.String;
|
|
1999
|
-
}>>;
|
|
2000
|
-
}>>;
|
|
2001
|
-
}>;
|
|
2002
|
-
export type SkillspaceInput = typeof SkillspaceSchema.Type;
|
|
2003
|
-
export declare const SkillspaceSourceSchema: Schema.Struct<{
|
|
2004
|
-
name: typeof Schema.String;
|
|
2005
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2006
|
-
skills: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
2007
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2008
|
-
targets: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
2009
|
-
name: typeof Schema.String;
|
|
2010
|
-
}>>;
|
|
2011
|
-
}>>;
|
|
2012
|
-
}>;
|
|
2013
|
-
export type SkillspaceSource = typeof SkillspaceSourceSchema.Type;
|
|
2014
|
-
declare const Skillspace_base: Schema.Class<Skillspace, {
|
|
2015
|
-
name: typeof Schema.String;
|
|
2016
|
-
sourcePath: typeof Schema.String;
|
|
2017
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2018
|
-
skills: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
2019
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2020
|
-
targets: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
2021
|
-
name: typeof Schema.String;
|
|
2022
|
-
}>>;
|
|
2023
|
-
}>>;
|
|
2024
|
-
}, Schema.Struct.Encoded<{
|
|
2025
|
-
name: typeof Schema.String;
|
|
2026
|
-
sourcePath: typeof Schema.String;
|
|
2027
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2028
|
-
skills: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
2029
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2030
|
-
targets: Schema.Record$<typeof Schema.String, Schema.Struct<{
|
|
2031
|
-
name: typeof Schema.String;
|
|
2032
|
-
}>>;
|
|
2033
|
-
}>>;
|
|
2034
|
-
}>, never, {
|
|
2035
|
-
readonly skills: {
|
|
2036
|
-
readonly [x: string]: {
|
|
2037
|
-
readonly description?: string | undefined;
|
|
2038
|
-
readonly targets: {
|
|
2039
|
-
readonly [x: string]: {
|
|
2040
|
-
readonly name: string;
|
|
2041
|
-
};
|
|
2042
|
-
};
|
|
2043
|
-
};
|
|
2044
|
-
};
|
|
2045
|
-
} & {
|
|
2046
|
-
readonly name: string;
|
|
2047
|
-
} & {
|
|
2048
|
-
readonly description?: string | undefined;
|
|
2049
|
-
} & {
|
|
2050
|
-
readonly sourcePath: string;
|
|
2051
|
-
}, {}, {}>;
|
|
2052
|
-
export declare class Skillspace extends Skillspace_base {
|
|
2053
|
-
}
|
|
2054
|
-
export declare const OrbitParameterSchema: Schema.Struct<{
|
|
2055
|
-
name: typeof Schema.String;
|
|
2056
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2057
|
-
required: Schema.optional<typeof Schema.Boolean>;
|
|
2058
|
-
}>;
|
|
2059
|
-
export type OrbitParameter = typeof OrbitParameterSchema.Type;
|
|
2060
|
-
export declare const OrbitBindingSchema: Schema.Struct<{
|
|
2061
|
-
orbit: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2062
|
-
kind: Schema.Literal<["orbit-ref"]>;
|
|
2063
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2064
|
-
name: typeof Schema.String;
|
|
2065
|
-
}>]>;
|
|
2066
|
-
bindings: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2067
|
-
}>;
|
|
2068
|
-
export type OrbitBinding = typeof OrbitBindingSchema.Type;
|
|
2069
|
-
export declare const OrbitPhaseTraitRequirementSchema: Schema.Struct<{
|
|
2070
|
-
all: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2071
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
2072
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2073
|
-
name: typeof Schema.String;
|
|
2074
|
-
}>]>>;
|
|
2075
|
-
min: Schema.optional<typeof Schema.Number>;
|
|
2076
|
-
}>;
|
|
2077
|
-
export type OrbitPhaseTraitRequirement = typeof OrbitPhaseTraitRequirementSchema.Type;
|
|
2078
|
-
export declare const OrbitToolPermissionToolSchema: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2079
|
-
ref: typeof Schema.String;
|
|
2080
|
-
as: Schema.optional<typeof Schema.String>;
|
|
2081
|
-
}>]>;
|
|
2082
|
-
export type OrbitToolPermissionTool = typeof OrbitToolPermissionToolSchema.Type;
|
|
2083
|
-
export declare const OrbitOrchestratorSchema: Schema.Struct<{
|
|
2084
|
-
agent: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2085
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2086
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2087
|
-
name: typeof Schema.String;
|
|
2088
|
-
}>]>;
|
|
2089
|
-
tools: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2090
|
-
ref: typeof Schema.String;
|
|
2091
|
-
as: Schema.optional<typeof Schema.String>;
|
|
2092
|
-
}>]>>;
|
|
2093
|
-
}>;
|
|
2094
|
-
export type OrbitOrchestrator = typeof OrbitOrchestratorSchema.Type;
|
|
2095
|
-
export declare const OrbitPhaseWorkflowSchema: Schema.Struct<{
|
|
2096
|
-
when: Schema.optional<typeof Schema.String>;
|
|
2097
|
-
inputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2098
|
-
outputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2099
|
-
sequence: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2100
|
-
coordination: Schema.optional<typeof Schema.String>;
|
|
2101
|
-
finish_criteria: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2102
|
-
escalation: Schema.optional<typeof Schema.String>;
|
|
2103
|
-
}>;
|
|
2104
|
-
export type OrbitPhaseWorkflow = typeof OrbitPhaseWorkflowSchema.Type;
|
|
2105
|
-
export declare const OrbitPhaseSchema: Schema.Struct<{
|
|
2106
|
-
name: typeof Schema.String;
|
|
2107
|
-
orbit: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2108
|
-
kind: Schema.Literal<["orbit-ref"]>;
|
|
2109
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2110
|
-
name: typeof Schema.String;
|
|
2111
|
-
}>]>>;
|
|
2112
|
-
orbit_binding: Schema.optional<Schema.Struct<{
|
|
2113
|
-
orbit: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2114
|
-
kind: Schema.Literal<["orbit-ref"]>;
|
|
2115
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2116
|
-
name: typeof Schema.String;
|
|
2117
|
-
}>]>;
|
|
2118
|
-
bindings: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2119
|
-
}>>;
|
|
2120
|
-
agents: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2121
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2122
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2123
|
-
name: typeof Schema.String;
|
|
2124
|
-
}>]>>>;
|
|
2125
|
-
agent: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2126
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2127
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2128
|
-
name: typeof Schema.String;
|
|
2129
|
-
}>]>>;
|
|
2130
|
-
requires: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2131
|
-
all: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2132
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
2133
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2134
|
-
name: typeof Schema.String;
|
|
2135
|
-
}>]>>;
|
|
2136
|
-
min: Schema.optional<typeof Schema.Number>;
|
|
2137
|
-
}>>>;
|
|
2138
|
-
notes: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2139
|
-
telos: Schema.optional<typeof Schema.String>;
|
|
2140
|
-
real_world_change: Schema.optional<typeof Schema.String>;
|
|
2141
|
-
cold_pickup_test: Schema.optional<typeof Schema.String>;
|
|
2142
|
-
workflow: Schema.optional<Schema.Struct<{
|
|
2143
|
-
when: Schema.optional<typeof Schema.String>;
|
|
2144
|
-
inputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2145
|
-
outputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2146
|
-
sequence: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2147
|
-
coordination: Schema.optional<typeof Schema.String>;
|
|
2148
|
-
finish_criteria: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2149
|
-
escalation: Schema.optional<typeof Schema.String>;
|
|
2150
|
-
}>>;
|
|
2151
|
-
body: Schema.optional<typeof Schema.String>;
|
|
2152
|
-
}>;
|
|
2153
|
-
export type OrbitPhase = typeof OrbitPhaseSchema.Type;
|
|
2154
|
-
export declare const NormalizedOrbitBindingSchema: Schema.Struct<{
|
|
2155
|
-
orbit: typeof Schema.String;
|
|
2156
|
-
bindings: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2157
|
-
}>;
|
|
2158
|
-
export declare const NormalizedOrbitPhaseTraitRequirementSchema: Schema.Struct<{
|
|
2159
|
-
all: Schema.Array$<typeof Schema.String>;
|
|
2160
|
-
min: Schema.optional<typeof Schema.Number>;
|
|
2161
|
-
}>;
|
|
2162
|
-
export type NormalizedOrbitPhaseTraitRequirement = typeof NormalizedOrbitPhaseTraitRequirementSchema.Type;
|
|
2163
|
-
export declare const NormalizedOrbitPhaseSchema: Schema.Struct<{
|
|
2164
|
-
name: typeof Schema.String;
|
|
2165
|
-
orbit: Schema.optional<typeof Schema.String>;
|
|
2166
|
-
orbit_binding: Schema.optional<Schema.Struct<{
|
|
2167
|
-
orbit: typeof Schema.String;
|
|
2168
|
-
bindings: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2169
|
-
}>>;
|
|
2170
|
-
agent: Schema.optional<typeof Schema.String>;
|
|
2171
|
-
agents: Schema.Array$<typeof Schema.String>;
|
|
2172
|
-
requires: Schema.Array$<Schema.Struct<{
|
|
2173
|
-
all: Schema.Array$<typeof Schema.String>;
|
|
2174
|
-
min: Schema.optional<typeof Schema.Number>;
|
|
2175
|
-
}>>;
|
|
2176
|
-
notes: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2177
|
-
telos: Schema.optional<typeof Schema.String>;
|
|
2178
|
-
real_world_change: Schema.optional<typeof Schema.String>;
|
|
2179
|
-
cold_pickup_test: Schema.optional<typeof Schema.String>;
|
|
2180
|
-
workflow: Schema.optional<Schema.Struct<{
|
|
2181
|
-
when: Schema.optional<typeof Schema.String>;
|
|
2182
|
-
inputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2183
|
-
outputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2184
|
-
sequence: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2185
|
-
coordination: Schema.optional<typeof Schema.String>;
|
|
2186
|
-
finish_criteria: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2187
|
-
escalation: Schema.optional<typeof Schema.String>;
|
|
2188
|
-
}>>;
|
|
2189
|
-
body: Schema.optional<typeof Schema.String>;
|
|
2190
|
-
}>;
|
|
2191
|
-
export type NormalizedOrbitPhase = typeof NormalizedOrbitPhaseSchema.Type;
|
|
2192
|
-
export declare const NormalizedOrbitToolPermissionToolSchema: Schema.Struct<{
|
|
2193
|
-
ref: typeof Schema.String;
|
|
2194
|
-
logicalName: typeof Schema.String;
|
|
2195
|
-
}>;
|
|
2196
|
-
export type NormalizedOrbitToolPermissionTool = typeof NormalizedOrbitToolPermissionToolSchema.Type;
|
|
2197
|
-
export declare const NormalizedOrbitOrchestratorSchema: Schema.Struct<{
|
|
2198
|
-
agent: typeof Schema.String;
|
|
2199
|
-
tools: Schema.Array$<Schema.Struct<{
|
|
2200
|
-
ref: typeof Schema.String;
|
|
2201
|
-
logicalName: typeof Schema.String;
|
|
2202
|
-
}>>;
|
|
2203
|
-
}>;
|
|
2204
|
-
export type NormalizedOrbitOrchestrator = typeof NormalizedOrbitOrchestratorSchema.Type;
|
|
2205
|
-
export declare const OrbitPulsarCheckpointSchema: Schema.Struct<{
|
|
2206
|
-
after: Schema.optional<typeof Schema.String>;
|
|
2207
|
-
before: Schema.optional<typeof Schema.String>;
|
|
2208
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2209
|
-
}>;
|
|
2210
|
-
export type OrbitPulsarCheckpoint = typeof OrbitPulsarCheckpointSchema.Type;
|
|
2211
|
-
export declare const OrbitSignalEmitterPrioritySchema: Schema.Literal<["low", "normal", "high", "urgent"]>;
|
|
2212
|
-
export type OrbitSignalEmitterPriority = typeof OrbitSignalEmitterPrioritySchema.Type;
|
|
2213
|
-
export declare const OrbitSignalEmitterDestinationSchema: Schema.Struct<{
|
|
2214
|
-
project_key: typeof Schema.String;
|
|
2215
|
-
orbit: typeof Schema.String;
|
|
2216
|
-
default_priority: Schema.optional<Schema.Literal<["low", "normal", "high", "urgent"]>>;
|
|
2217
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2218
|
-
}>;
|
|
2219
|
-
export type OrbitSignalEmitterDestination = typeof OrbitSignalEmitterDestinationSchema.Type;
|
|
2220
|
-
export declare const OrbitSignalEmitterSchema: Schema.Struct<{
|
|
2221
|
-
destinations: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2222
|
-
project_key: typeof Schema.String;
|
|
2223
|
-
orbit: typeof Schema.String;
|
|
2224
|
-
default_priority: Schema.optional<Schema.Literal<["low", "normal", "high", "urgent"]>>;
|
|
2225
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2226
|
-
}>>>;
|
|
2227
|
-
}>;
|
|
2228
|
-
export type OrbitSignalEmitter = typeof OrbitSignalEmitterSchema.Type;
|
|
2229
|
-
export declare const OrbitDefinitionEntrySchema: Schema.Struct<{
|
|
2230
|
-
purpose: typeof Schema.String;
|
|
2231
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2232
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2233
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2234
|
-
}>;
|
|
2235
|
-
export type OrbitDefinitionEntry = typeof OrbitDefinitionEntrySchema.Type;
|
|
2236
|
-
export declare const OrbitDefinitionsSchema: Schema.Struct<{
|
|
2237
|
-
glyphs: Schema.optional<Schema.Struct<{
|
|
2238
|
-
purpose: typeof Schema.String;
|
|
2239
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2240
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2241
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2242
|
-
}>>;
|
|
2243
|
-
dispatches: Schema.optional<Schema.Struct<{
|
|
2244
|
-
purpose: typeof Schema.String;
|
|
2245
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2246
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2247
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2248
|
-
}>>;
|
|
2249
|
-
chatter: Schema.optional<Schema.Struct<{
|
|
2250
|
-
purpose: typeof Schema.String;
|
|
2251
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2252
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2253
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2254
|
-
}>>;
|
|
2255
|
-
signals: Schema.optional<Schema.Struct<{
|
|
2256
|
-
purpose: typeof Schema.String;
|
|
2257
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2258
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2259
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2260
|
-
}>>;
|
|
2261
|
-
}>;
|
|
2262
|
-
export type OrbitDefinitions = typeof OrbitDefinitionsSchema.Type;
|
|
2263
|
-
export declare const OrbitDefinitionSchema: Schema.Struct<{
|
|
2264
|
-
name: typeof Schema.String;
|
|
2265
|
-
description: typeof Schema.String;
|
|
2266
|
-
produces: Schema.optional<typeof Schema.String>;
|
|
2267
|
-
definitions: Schema.optional<Schema.Struct<{
|
|
2268
|
-
glyphs: Schema.optional<Schema.Struct<{
|
|
2269
|
-
purpose: typeof Schema.String;
|
|
2270
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2271
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2272
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2273
|
-
}>>;
|
|
2274
|
-
dispatches: Schema.optional<Schema.Struct<{
|
|
2275
|
-
purpose: typeof Schema.String;
|
|
2276
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2277
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2278
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2279
|
-
}>>;
|
|
2280
|
-
chatter: Schema.optional<Schema.Struct<{
|
|
2281
|
-
purpose: typeof Schema.String;
|
|
2282
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2283
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2284
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2285
|
-
}>>;
|
|
2286
|
-
signals: Schema.optional<Schema.Struct<{
|
|
2287
|
-
purpose: typeof Schema.String;
|
|
2288
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2289
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2290
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2291
|
-
}>>;
|
|
2292
|
-
}>>;
|
|
2293
|
-
parameters: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2294
|
-
name: typeof Schema.String;
|
|
2295
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2296
|
-
required: Schema.optional<typeof Schema.Boolean>;
|
|
2297
|
-
}>>>;
|
|
2298
|
-
phases: Schema.Array$<Schema.Struct<{
|
|
2299
|
-
name: typeof Schema.String;
|
|
2300
|
-
orbit: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2301
|
-
kind: Schema.Literal<["orbit-ref"]>;
|
|
2302
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2303
|
-
name: typeof Schema.String;
|
|
2304
|
-
}>]>>;
|
|
2305
|
-
orbit_binding: Schema.optional<Schema.Struct<{
|
|
2306
|
-
orbit: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2307
|
-
kind: Schema.Literal<["orbit-ref"]>;
|
|
2308
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2309
|
-
name: typeof Schema.String;
|
|
2310
|
-
}>]>;
|
|
2311
|
-
bindings: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2312
|
-
}>>;
|
|
2313
|
-
agents: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2314
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2315
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2316
|
-
name: typeof Schema.String;
|
|
2317
|
-
}>]>>>;
|
|
2318
|
-
agent: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2319
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2320
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2321
|
-
name: typeof Schema.String;
|
|
2322
|
-
}>]>>;
|
|
2323
|
-
requires: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2324
|
-
all: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2325
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
2326
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2327
|
-
name: typeof Schema.String;
|
|
2328
|
-
}>]>>;
|
|
2329
|
-
min: Schema.optional<typeof Schema.Number>;
|
|
2330
|
-
}>>>;
|
|
2331
|
-
notes: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2332
|
-
telos: Schema.optional<typeof Schema.String>;
|
|
2333
|
-
real_world_change: Schema.optional<typeof Schema.String>;
|
|
2334
|
-
cold_pickup_test: Schema.optional<typeof Schema.String>;
|
|
2335
|
-
workflow: Schema.optional<Schema.Struct<{
|
|
2336
|
-
when: Schema.optional<typeof Schema.String>;
|
|
2337
|
-
inputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2338
|
-
outputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2339
|
-
sequence: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2340
|
-
coordination: Schema.optional<typeof Schema.String>;
|
|
2341
|
-
finish_criteria: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2342
|
-
escalation: Schema.optional<typeof Schema.String>;
|
|
2343
|
-
}>>;
|
|
2344
|
-
body: Schema.optional<typeof Schema.String>;
|
|
2345
|
-
}>>;
|
|
2346
|
-
orchestrator: Schema.optional<Schema.Struct<{
|
|
2347
|
-
agent: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2348
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2349
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2350
|
-
name: typeof Schema.String;
|
|
2351
|
-
}>]>;
|
|
2352
|
-
tools: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2353
|
-
ref: typeof Schema.String;
|
|
2354
|
-
as: Schema.optional<typeof Schema.String>;
|
|
2355
|
-
}>]>>;
|
|
2356
|
-
}>>;
|
|
2357
|
-
tool_permissions: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2358
|
-
ref: typeof Schema.String;
|
|
2359
|
-
as: Schema.optional<typeof Schema.String>;
|
|
2360
|
-
}>]>>>;
|
|
2361
|
-
pulsar_checkpoints: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2362
|
-
after: Schema.optional<typeof Schema.String>;
|
|
2363
|
-
before: Schema.optional<typeof Schema.String>;
|
|
2364
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2365
|
-
}>>>;
|
|
2366
|
-
evolution: Schema.optional<typeof Schema.String>;
|
|
2367
|
-
body: Schema.optional<typeof Schema.String>;
|
|
2368
|
-
signal_emitter: Schema.optional<Schema.Struct<{
|
|
2369
|
-
destinations: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2370
|
-
project_key: typeof Schema.String;
|
|
2371
|
-
orbit: typeof Schema.String;
|
|
2372
|
-
default_priority: Schema.optional<Schema.Literal<["low", "normal", "high", "urgent"]>>;
|
|
2373
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2374
|
-
}>>>;
|
|
2375
|
-
}>>;
|
|
2376
|
-
}>;
|
|
2377
|
-
export type OrbitDefinition = typeof OrbitDefinitionSchema.Type;
|
|
2378
|
-
export declare const OrbitSourceSchema: Schema.Struct<{
|
|
2379
|
-
name: typeof Schema.String;
|
|
2380
|
-
description: typeof Schema.String;
|
|
2381
|
-
produces: Schema.optional<typeof Schema.String>;
|
|
2382
|
-
definitions: Schema.optional<Schema.Struct<{
|
|
2383
|
-
glyphs: Schema.optional<Schema.Struct<{
|
|
2384
|
-
purpose: typeof Schema.String;
|
|
2385
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2386
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2387
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2388
|
-
}>>;
|
|
2389
|
-
dispatches: Schema.optional<Schema.Struct<{
|
|
2390
|
-
purpose: typeof Schema.String;
|
|
2391
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2392
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2393
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2394
|
-
}>>;
|
|
2395
|
-
chatter: Schema.optional<Schema.Struct<{
|
|
2396
|
-
purpose: typeof Schema.String;
|
|
2397
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2398
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2399
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2400
|
-
}>>;
|
|
2401
|
-
signals: Schema.optional<Schema.Struct<{
|
|
2402
|
-
purpose: typeof Schema.String;
|
|
2403
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2404
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2405
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2406
|
-
}>>;
|
|
2407
|
-
}>>;
|
|
2408
|
-
parameters: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2409
|
-
name: typeof Schema.String;
|
|
2410
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2411
|
-
required: Schema.optional<typeof Schema.Boolean>;
|
|
2412
|
-
}>>>;
|
|
2413
|
-
phases: Schema.Array$<Schema.Struct<{
|
|
2414
|
-
name: typeof Schema.String;
|
|
2415
|
-
orbit: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2416
|
-
kind: Schema.Literal<["orbit-ref"]>;
|
|
2417
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2418
|
-
name: typeof Schema.String;
|
|
2419
|
-
}>]>>;
|
|
2420
|
-
orbit_binding: Schema.optional<Schema.Struct<{
|
|
2421
|
-
orbit: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2422
|
-
kind: Schema.Literal<["orbit-ref"]>;
|
|
2423
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2424
|
-
name: typeof Schema.String;
|
|
2425
|
-
}>]>;
|
|
2426
|
-
bindings: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2427
|
-
}>>;
|
|
2428
|
-
agents: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2429
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2430
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2431
|
-
name: typeof Schema.String;
|
|
2432
|
-
}>]>>>;
|
|
2433
|
-
agent: Schema.optional<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2434
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2435
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2436
|
-
name: typeof Schema.String;
|
|
2437
|
-
}>]>>;
|
|
2438
|
-
requires: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2439
|
-
all: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2440
|
-
kind: Schema.Literal<["trait-ref"]>;
|
|
2441
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2442
|
-
name: typeof Schema.String;
|
|
2443
|
-
}>]>>;
|
|
2444
|
-
min: Schema.optional<typeof Schema.Number>;
|
|
2445
|
-
}>>>;
|
|
2446
|
-
notes: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2447
|
-
telos: Schema.optional<typeof Schema.String>;
|
|
2448
|
-
real_world_change: Schema.optional<typeof Schema.String>;
|
|
2449
|
-
cold_pickup_test: Schema.optional<typeof Schema.String>;
|
|
2450
|
-
workflow: Schema.optional<Schema.Struct<{
|
|
2451
|
-
when: Schema.optional<typeof Schema.String>;
|
|
2452
|
-
inputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2453
|
-
outputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2454
|
-
sequence: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2455
|
-
coordination: Schema.optional<typeof Schema.String>;
|
|
2456
|
-
finish_criteria: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2457
|
-
escalation: Schema.optional<typeof Schema.String>;
|
|
2458
|
-
}>>;
|
|
2459
|
-
body: Schema.optional<typeof Schema.String>;
|
|
2460
|
-
}>>;
|
|
2461
|
-
orchestrator: Schema.optional<Schema.Struct<{
|
|
2462
|
-
agent: Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2463
|
-
kind: Schema.Literal<["agent-ref"]>;
|
|
2464
|
-
plugin: Schema.optional<typeof Schema.String>;
|
|
2465
|
-
name: typeof Schema.String;
|
|
2466
|
-
}>]>;
|
|
2467
|
-
tools: Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2468
|
-
ref: typeof Schema.String;
|
|
2469
|
-
as: Schema.optional<typeof Schema.String>;
|
|
2470
|
-
}>]>>;
|
|
2471
|
-
}>>;
|
|
2472
|
-
tool_permissions: Schema.optional<Schema.Array$<Schema.Union<[typeof Schema.String, Schema.Struct<{
|
|
2473
|
-
ref: typeof Schema.String;
|
|
2474
|
-
as: Schema.optional<typeof Schema.String>;
|
|
2475
|
-
}>]>>>;
|
|
2476
|
-
pulsar_checkpoints: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2477
|
-
after: Schema.optional<typeof Schema.String>;
|
|
2478
|
-
before: Schema.optional<typeof Schema.String>;
|
|
2479
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2480
|
-
}>>>;
|
|
2481
|
-
evolution: Schema.optional<typeof Schema.String>;
|
|
2482
|
-
body: Schema.optional<typeof Schema.String>;
|
|
2483
|
-
signal_emitter: Schema.optional<Schema.Struct<{
|
|
2484
|
-
destinations: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2485
|
-
project_key: typeof Schema.String;
|
|
2486
|
-
orbit: typeof Schema.String;
|
|
2487
|
-
default_priority: Schema.optional<Schema.Literal<["low", "normal", "high", "urgent"]>>;
|
|
2488
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2489
|
-
}>>>;
|
|
2490
|
-
}>>;
|
|
2491
|
-
}>;
|
|
2492
|
-
export type OrbitSource = typeof OrbitSourceSchema.Type;
|
|
2493
|
-
declare const Orbit_base: Schema.Class<Orbit, {
|
|
2494
|
-
name: typeof Schema.String;
|
|
2495
|
-
sourcePath: typeof Schema.String;
|
|
2496
|
-
description: typeof Schema.String;
|
|
2497
|
-
produces: Schema.optional<typeof Schema.String>;
|
|
2498
|
-
definitions: Schema.optional<Schema.Struct<{
|
|
2499
|
-
glyphs: Schema.optional<Schema.Struct<{
|
|
2500
|
-
purpose: typeof Schema.String;
|
|
2501
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2502
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2503
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2504
|
-
}>>;
|
|
2505
|
-
dispatches: Schema.optional<Schema.Struct<{
|
|
2506
|
-
purpose: typeof Schema.String;
|
|
2507
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2508
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2509
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2510
|
-
}>>;
|
|
2511
|
-
chatter: Schema.optional<Schema.Struct<{
|
|
2512
|
-
purpose: typeof Schema.String;
|
|
2513
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2514
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2515
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2516
|
-
}>>;
|
|
2517
|
-
signals: Schema.optional<Schema.Struct<{
|
|
2518
|
-
purpose: typeof Schema.String;
|
|
2519
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2520
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2521
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2522
|
-
}>>;
|
|
2523
|
-
}>>;
|
|
2524
|
-
parameters: Schema.Array$<Schema.Struct<{
|
|
2525
|
-
name: typeof Schema.String;
|
|
2526
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2527
|
-
required: Schema.optional<typeof Schema.Boolean>;
|
|
2528
|
-
}>>;
|
|
2529
|
-
phases: Schema.Array$<Schema.Struct<{
|
|
2530
|
-
name: typeof Schema.String;
|
|
2531
|
-
orbit: Schema.optional<typeof Schema.String>;
|
|
2532
|
-
orbit_binding: Schema.optional<Schema.Struct<{
|
|
2533
|
-
orbit: typeof Schema.String;
|
|
2534
|
-
bindings: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2535
|
-
}>>;
|
|
2536
|
-
agent: Schema.optional<typeof Schema.String>;
|
|
2537
|
-
agents: Schema.Array$<typeof Schema.String>;
|
|
2538
|
-
requires: Schema.Array$<Schema.Struct<{
|
|
2539
|
-
all: Schema.Array$<typeof Schema.String>;
|
|
2540
|
-
min: Schema.optional<typeof Schema.Number>;
|
|
2541
|
-
}>>;
|
|
2542
|
-
notes: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2543
|
-
telos: Schema.optional<typeof Schema.String>;
|
|
2544
|
-
real_world_change: Schema.optional<typeof Schema.String>;
|
|
2545
|
-
cold_pickup_test: Schema.optional<typeof Schema.String>;
|
|
2546
|
-
workflow: Schema.optional<Schema.Struct<{
|
|
2547
|
-
when: Schema.optional<typeof Schema.String>;
|
|
2548
|
-
inputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2549
|
-
outputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2550
|
-
sequence: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2551
|
-
coordination: Schema.optional<typeof Schema.String>;
|
|
2552
|
-
finish_criteria: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2553
|
-
escalation: Schema.optional<typeof Schema.String>;
|
|
2554
|
-
}>>;
|
|
2555
|
-
body: Schema.optional<typeof Schema.String>;
|
|
2556
|
-
}>>;
|
|
2557
|
-
orchestrator: Schema.optional<Schema.Struct<{
|
|
2558
|
-
agent: typeof Schema.String;
|
|
2559
|
-
tools: Schema.Array$<Schema.Struct<{
|
|
2560
|
-
ref: typeof Schema.String;
|
|
2561
|
-
logicalName: typeof Schema.String;
|
|
2562
|
-
}>>;
|
|
2563
|
-
}>>;
|
|
2564
|
-
tool_permissions: Schema.Array$<Schema.Struct<{
|
|
2565
|
-
ref: typeof Schema.String;
|
|
2566
|
-
logicalName: typeof Schema.String;
|
|
2567
|
-
}>>;
|
|
2568
|
-
pulsar_checkpoints: Schema.Array$<Schema.Struct<{
|
|
2569
|
-
after: Schema.optional<typeof Schema.String>;
|
|
2570
|
-
before: Schema.optional<typeof Schema.String>;
|
|
2571
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2572
|
-
}>>;
|
|
2573
|
-
evolution: Schema.optional<typeof Schema.String>;
|
|
2574
|
-
body: typeof Schema.String;
|
|
2575
|
-
signal_emitter: Schema.optional<Schema.Struct<{
|
|
2576
|
-
destinations: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2577
|
-
project_key: typeof Schema.String;
|
|
2578
|
-
orbit: typeof Schema.String;
|
|
2579
|
-
default_priority: Schema.optional<Schema.Literal<["low", "normal", "high", "urgent"]>>;
|
|
2580
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2581
|
-
}>>>;
|
|
2582
|
-
}>>;
|
|
2583
|
-
}, Schema.Struct.Encoded<{
|
|
2584
|
-
name: typeof Schema.String;
|
|
2585
|
-
sourcePath: typeof Schema.String;
|
|
2586
|
-
description: typeof Schema.String;
|
|
2587
|
-
produces: Schema.optional<typeof Schema.String>;
|
|
2588
|
-
definitions: Schema.optional<Schema.Struct<{
|
|
2589
|
-
glyphs: Schema.optional<Schema.Struct<{
|
|
2590
|
-
purpose: typeof Schema.String;
|
|
2591
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2592
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2593
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2594
|
-
}>>;
|
|
2595
|
-
dispatches: Schema.optional<Schema.Struct<{
|
|
2596
|
-
purpose: typeof Schema.String;
|
|
2597
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2598
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2599
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2600
|
-
}>>;
|
|
2601
|
-
chatter: Schema.optional<Schema.Struct<{
|
|
2602
|
-
purpose: typeof Schema.String;
|
|
2603
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2604
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2605
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2606
|
-
}>>;
|
|
2607
|
-
signals: Schema.optional<Schema.Struct<{
|
|
2608
|
-
purpose: typeof Schema.String;
|
|
2609
|
-
contains: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2610
|
-
boundaries: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2611
|
-
avoid: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2612
|
-
}>>;
|
|
2613
|
-
}>>;
|
|
2614
|
-
parameters: Schema.Array$<Schema.Struct<{
|
|
2615
|
-
name: typeof Schema.String;
|
|
2616
|
-
description: Schema.optional<typeof Schema.String>;
|
|
2617
|
-
required: Schema.optional<typeof Schema.Boolean>;
|
|
2618
|
-
}>>;
|
|
2619
|
-
phases: Schema.Array$<Schema.Struct<{
|
|
2620
|
-
name: typeof Schema.String;
|
|
2621
|
-
orbit: Schema.optional<typeof Schema.String>;
|
|
2622
|
-
orbit_binding: Schema.optional<Schema.Struct<{
|
|
2623
|
-
orbit: typeof Schema.String;
|
|
2624
|
-
bindings: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2625
|
-
}>>;
|
|
2626
|
-
agent: Schema.optional<typeof Schema.String>;
|
|
2627
|
-
agents: Schema.Array$<typeof Schema.String>;
|
|
2628
|
-
requires: Schema.Array$<Schema.Struct<{
|
|
2629
|
-
all: Schema.Array$<typeof Schema.String>;
|
|
2630
|
-
min: Schema.optional<typeof Schema.Number>;
|
|
2631
|
-
}>>;
|
|
2632
|
-
notes: Schema.optional<Schema.Record$<typeof Schema.String, typeof Schema.String>>;
|
|
2633
|
-
telos: Schema.optional<typeof Schema.String>;
|
|
2634
|
-
real_world_change: Schema.optional<typeof Schema.String>;
|
|
2635
|
-
cold_pickup_test: Schema.optional<typeof Schema.String>;
|
|
2636
|
-
workflow: Schema.optional<Schema.Struct<{
|
|
2637
|
-
when: Schema.optional<typeof Schema.String>;
|
|
2638
|
-
inputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2639
|
-
outputs: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2640
|
-
sequence: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2641
|
-
coordination: Schema.optional<typeof Schema.String>;
|
|
2642
|
-
finish_criteria: Schema.optional<Schema.Array$<typeof Schema.String>>;
|
|
2643
|
-
escalation: Schema.optional<typeof Schema.String>;
|
|
2644
|
-
}>>;
|
|
2645
|
-
body: Schema.optional<typeof Schema.String>;
|
|
2646
|
-
}>>;
|
|
2647
|
-
orchestrator: Schema.optional<Schema.Struct<{
|
|
2648
|
-
agent: typeof Schema.String;
|
|
2649
|
-
tools: Schema.Array$<Schema.Struct<{
|
|
2650
|
-
ref: typeof Schema.String;
|
|
2651
|
-
logicalName: typeof Schema.String;
|
|
2652
|
-
}>>;
|
|
2653
|
-
}>>;
|
|
2654
|
-
tool_permissions: Schema.Array$<Schema.Struct<{
|
|
2655
|
-
ref: typeof Schema.String;
|
|
2656
|
-
logicalName: typeof Schema.String;
|
|
2657
|
-
}>>;
|
|
2658
|
-
pulsar_checkpoints: Schema.Array$<Schema.Struct<{
|
|
2659
|
-
after: Schema.optional<typeof Schema.String>;
|
|
2660
|
-
before: Schema.optional<typeof Schema.String>;
|
|
2661
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2662
|
-
}>>;
|
|
2663
|
-
evolution: Schema.optional<typeof Schema.String>;
|
|
2664
|
-
body: typeof Schema.String;
|
|
2665
|
-
signal_emitter: Schema.optional<Schema.Struct<{
|
|
2666
|
-
destinations: Schema.optional<Schema.Array$<Schema.Struct<{
|
|
2667
|
-
project_key: typeof Schema.String;
|
|
2668
|
-
orbit: typeof Schema.String;
|
|
2669
|
-
default_priority: Schema.optional<Schema.Literal<["low", "normal", "high", "urgent"]>>;
|
|
2670
|
-
note: Schema.optional<typeof Schema.String>;
|
|
2671
|
-
}>>>;
|
|
2672
|
-
}>>;
|
|
2673
|
-
}>, never, {
|
|
2674
|
-
readonly name: string;
|
|
2675
|
-
} & {
|
|
2676
|
-
readonly description: string;
|
|
2677
|
-
} & {
|
|
2678
|
-
readonly sourcePath: string;
|
|
2679
|
-
} & {
|
|
2680
|
-
readonly body: string;
|
|
2681
|
-
} & {
|
|
2682
|
-
readonly produces?: string | undefined;
|
|
2683
|
-
} & {
|
|
2684
|
-
readonly definitions?: {
|
|
2685
|
-
readonly glyphs?: {
|
|
2686
|
-
readonly purpose: string;
|
|
2687
|
-
readonly contains?: readonly string[] | undefined;
|
|
2688
|
-
readonly boundaries?: readonly string[] | undefined;
|
|
2689
|
-
readonly avoid?: readonly string[] | undefined;
|
|
2690
|
-
} | undefined;
|
|
2691
|
-
readonly dispatches?: {
|
|
2692
|
-
readonly purpose: string;
|
|
2693
|
-
readonly contains?: readonly string[] | undefined;
|
|
2694
|
-
readonly boundaries?: readonly string[] | undefined;
|
|
2695
|
-
readonly avoid?: readonly string[] | undefined;
|
|
2696
|
-
} | undefined;
|
|
2697
|
-
readonly chatter?: {
|
|
2698
|
-
readonly purpose: string;
|
|
2699
|
-
readonly contains?: readonly string[] | undefined;
|
|
2700
|
-
readonly boundaries?: readonly string[] | undefined;
|
|
2701
|
-
readonly avoid?: readonly string[] | undefined;
|
|
2702
|
-
} | undefined;
|
|
2703
|
-
readonly signals?: {
|
|
2704
|
-
readonly purpose: string;
|
|
2705
|
-
readonly contains?: readonly string[] | undefined;
|
|
2706
|
-
readonly boundaries?: readonly string[] | undefined;
|
|
2707
|
-
readonly avoid?: readonly string[] | undefined;
|
|
2708
|
-
} | undefined;
|
|
2709
|
-
} | undefined;
|
|
2710
|
-
} & {
|
|
2711
|
-
readonly parameters: readonly {
|
|
2712
|
-
readonly name: string;
|
|
2713
|
-
readonly description?: string | undefined;
|
|
2714
|
-
readonly required?: boolean | undefined;
|
|
2715
|
-
}[];
|
|
2716
|
-
} & {
|
|
2717
|
-
readonly phases: readonly {
|
|
2718
|
-
readonly agent?: string | undefined;
|
|
2719
|
-
readonly workflow?: {
|
|
2720
|
-
readonly when?: string | undefined;
|
|
2721
|
-
readonly inputs?: readonly string[] | undefined;
|
|
2722
|
-
readonly outputs?: readonly string[] | undefined;
|
|
2723
|
-
readonly sequence?: readonly string[] | undefined;
|
|
2724
|
-
readonly coordination?: string | undefined;
|
|
2725
|
-
readonly finish_criteria?: readonly string[] | undefined;
|
|
2726
|
-
readonly escalation?: string | undefined;
|
|
2727
|
-
} | undefined;
|
|
2728
|
-
readonly agents: readonly string[];
|
|
2729
|
-
readonly name: string;
|
|
2730
|
-
readonly body?: string | undefined;
|
|
2731
|
-
readonly orbit?: string | undefined;
|
|
2732
|
-
readonly orbit_binding?: {
|
|
2733
|
-
readonly orbit: string;
|
|
2734
|
-
readonly bindings?: {
|
|
2735
|
-
readonly [x: string]: string;
|
|
2736
|
-
} | undefined;
|
|
2737
|
-
} | undefined;
|
|
2738
|
-
readonly requires: readonly {
|
|
2739
|
-
readonly all: readonly string[];
|
|
2740
|
-
readonly min?: number | undefined;
|
|
2741
|
-
}[];
|
|
2742
|
-
readonly notes?: {
|
|
2743
|
-
readonly [x: string]: string;
|
|
2744
|
-
} | undefined;
|
|
2745
|
-
readonly telos?: string | undefined;
|
|
2746
|
-
readonly real_world_change?: string | undefined;
|
|
2747
|
-
readonly cold_pickup_test?: string | undefined;
|
|
2748
|
-
}[];
|
|
2749
|
-
} & {
|
|
2750
|
-
readonly orchestrator?: {
|
|
2751
|
-
readonly agent: string;
|
|
2752
|
-
readonly tools: readonly {
|
|
2753
|
-
readonly ref: string;
|
|
2754
|
-
readonly logicalName: string;
|
|
2755
|
-
}[];
|
|
2756
|
-
} | undefined;
|
|
2757
|
-
} & {
|
|
2758
|
-
readonly tool_permissions: readonly {
|
|
2759
|
-
readonly ref: string;
|
|
2760
|
-
readonly logicalName: string;
|
|
2761
|
-
}[];
|
|
2762
|
-
} & {
|
|
2763
|
-
readonly pulsar_checkpoints: readonly {
|
|
2764
|
-
readonly after?: string | undefined;
|
|
2765
|
-
readonly before?: string | undefined;
|
|
2766
|
-
readonly note?: string | undefined;
|
|
2767
|
-
}[];
|
|
2768
|
-
} & {
|
|
2769
|
-
readonly evolution?: string | undefined;
|
|
2770
|
-
} & {
|
|
2771
|
-
readonly signal_emitter?: {
|
|
2772
|
-
readonly destinations?: readonly {
|
|
2773
|
-
readonly orbit: string;
|
|
2774
|
-
readonly note?: string | undefined;
|
|
2775
|
-
readonly project_key: string;
|
|
2776
|
-
readonly default_priority?: "low" | "normal" | "high" | "urgent" | undefined;
|
|
2777
|
-
}[] | undefined;
|
|
2778
|
-
} | undefined;
|
|
2779
|
-
}, {}, {}>;
|
|
2780
|
-
export declare class Orbit extends Orbit_base {
|
|
2781
|
-
}
|
|
2782
|
-
export {};
|