@tangle-network/agent-interface 0.36.0 → 0.38.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/README.md +2 -2
- package/dist/agent-candidate-artifact-schema.d.ts +504 -0
- package/dist/agent-candidate-artifact-schema.js +16 -1
- package/dist/agent-candidate-execution-plan-schema.d.ts +50 -27
- package/dist/agent-candidate-execution-plan-schema.js +4 -16
- package/dist/agent-candidate-profile-schema.d.ts +341 -25
- package/dist/agent-candidate-promotion-schema.d.ts +2320 -287
- package/dist/agent-candidate-receipt-schema.d.ts +50 -27
- package/dist/agent-candidate-schema-common.js +1 -1
- package/dist/agent-candidate-schema.d.ts +341 -25
- package/dist/agent-candidate.d.ts +7 -8
- package/dist/agent-execution-preparation.d.ts +366 -0
- package/dist/agent-execution-preparation.js +793 -0
- package/dist/agent-improvement-source.d.ts +61 -3
- package/dist/agent-improvement-source.js +122 -8
- package/dist/agent-profile-activation.d.ts +41 -0
- package/dist/agent-profile-activation.js +24 -0
- package/dist/agent-profile-improvement-schema.d.ts +48 -4
- package/dist/agent-profile-materialization.d.ts +34 -0
- package/dist/agent-profile-materialization.js +243 -0
- package/dist/agent-profile.d.ts +44 -7
- package/dist/agent-profile.js +39 -2
- package/dist/agent-workspace-lease.d.ts +138 -0
- package/dist/agent-workspace-lease.js +203 -0
- package/dist/harness-capabilities.d.ts +1 -1
- package/dist/harness-capabilities.js +2 -9
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/profile-schema.d.ts +142 -84
- package/dist/profile-schema.js +152 -41
- package/package.json +3 -1
|
@@ -48,25 +48,13 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
48
48
|
allow: "allow";
|
|
49
49
|
ask: "ask";
|
|
50
50
|
deny: "deny";
|
|
51
|
-
}>, z.
|
|
52
|
-
allow: "allow";
|
|
53
|
-
ask: "ask";
|
|
54
|
-
deny: "deny";
|
|
55
|
-
}>>]>>>;
|
|
51
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
56
52
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
57
53
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
58
54
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
59
55
|
prompt: z.ZodOptional<z.ZodString>;
|
|
60
|
-
permissions: z.ZodOptional<z.
|
|
61
|
-
|
|
62
|
-
ask: "ask";
|
|
63
|
-
deny: "deny";
|
|
64
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
65
|
-
allow: "allow";
|
|
66
|
-
ask: "ask";
|
|
67
|
-
deny: "deny";
|
|
68
|
-
}>>]>>>;
|
|
69
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
56
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
57
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
70
58
|
description: z.ZodOptional<z.ZodString>;
|
|
71
59
|
model: z.ZodOptional<z.ZodString>;
|
|
72
60
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -80,6 +68,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
80
68
|
content: z.ZodString;
|
|
81
69
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
82
70
|
byteLength: z.ZodNumber;
|
|
71
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
72
|
+
kind: z.ZodString;
|
|
73
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
74
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
75
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
76
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
77
|
+
kind: z.ZodLiteral<"spdx">;
|
|
78
|
+
expression: z.ZodString;
|
|
79
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
80
|
+
kind: z.ZodLiteral<"custom">;
|
|
81
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
82
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
83
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
84
|
+
}, z.core.$strict>], "kind">>;
|
|
85
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
86
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
87
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
88
|
+
kind: z.ZodEnum<{
|
|
89
|
+
normalization: "normalization";
|
|
90
|
+
transformation: "transformation";
|
|
91
|
+
}>;
|
|
92
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
93
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
94
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
95
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
96
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
97
|
+
}, z.core.$strict>>>;
|
|
98
|
+
}, z.core.$strict>>;
|
|
83
99
|
}, z.core.$strict>, z.ZodObject<{
|
|
84
100
|
kind: z.ZodLiteral<"github">;
|
|
85
101
|
repository: z.ZodObject<{
|
|
@@ -92,6 +108,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
92
108
|
name: z.ZodOptional<z.ZodString>;
|
|
93
109
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
94
110
|
byteLength: z.ZodNumber;
|
|
111
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
112
|
+
kind: z.ZodString;
|
|
113
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
114
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
115
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
116
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
117
|
+
kind: z.ZodLiteral<"spdx">;
|
|
118
|
+
expression: z.ZodString;
|
|
119
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
120
|
+
kind: z.ZodLiteral<"custom">;
|
|
121
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
122
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
123
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
124
|
+
}, z.core.$strict>], "kind">>;
|
|
125
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
126
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
127
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
128
|
+
kind: z.ZodEnum<{
|
|
129
|
+
normalization: "normalization";
|
|
130
|
+
transformation: "transformation";
|
|
131
|
+
}>;
|
|
132
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
133
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
134
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
135
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
136
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
137
|
+
}, z.core.$strict>>>;
|
|
138
|
+
}, z.core.$strict>>;
|
|
95
139
|
}, z.core.$strict>], "kind">;
|
|
96
140
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
97
141
|
}, z.core.$strict>>>;
|
|
@@ -101,6 +145,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
101
145
|
content: z.ZodString;
|
|
102
146
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
103
147
|
byteLength: z.ZodNumber;
|
|
148
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
149
|
+
kind: z.ZodString;
|
|
150
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
151
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
152
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
153
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
154
|
+
kind: z.ZodLiteral<"spdx">;
|
|
155
|
+
expression: z.ZodString;
|
|
156
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
157
|
+
kind: z.ZodLiteral<"custom">;
|
|
158
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
159
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
160
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
161
|
+
}, z.core.$strict>], "kind">>;
|
|
162
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
163
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
164
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
165
|
+
kind: z.ZodEnum<{
|
|
166
|
+
normalization: "normalization";
|
|
167
|
+
transformation: "transformation";
|
|
168
|
+
}>;
|
|
169
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
170
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
171
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
172
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
173
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
174
|
+
}, z.core.$strict>>>;
|
|
175
|
+
}, z.core.$strict>>;
|
|
104
176
|
}, z.core.$strict>, z.ZodObject<{
|
|
105
177
|
kind: z.ZodLiteral<"github">;
|
|
106
178
|
repository: z.ZodObject<{
|
|
@@ -113,6 +185,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
113
185
|
name: z.ZodOptional<z.ZodString>;
|
|
114
186
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
115
187
|
byteLength: z.ZodNumber;
|
|
188
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
189
|
+
kind: z.ZodString;
|
|
190
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
191
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
192
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
193
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
194
|
+
kind: z.ZodLiteral<"spdx">;
|
|
195
|
+
expression: z.ZodString;
|
|
196
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
197
|
+
kind: z.ZodLiteral<"custom">;
|
|
198
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
199
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
200
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
201
|
+
}, z.core.$strict>], "kind">>;
|
|
202
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
203
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
204
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
205
|
+
kind: z.ZodEnum<{
|
|
206
|
+
normalization: "normalization";
|
|
207
|
+
transformation: "transformation";
|
|
208
|
+
}>;
|
|
209
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
210
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
211
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
212
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
213
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
214
|
+
}, z.core.$strict>>>;
|
|
215
|
+
}, z.core.$strict>>;
|
|
116
216
|
}, z.core.$strict>], "kind">>>;
|
|
117
217
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
118
218
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -120,6 +220,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
120
220
|
content: z.ZodString;
|
|
121
221
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
122
222
|
byteLength: z.ZodNumber;
|
|
223
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
224
|
+
kind: z.ZodString;
|
|
225
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
226
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
227
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
228
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
229
|
+
kind: z.ZodLiteral<"spdx">;
|
|
230
|
+
expression: z.ZodString;
|
|
231
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
232
|
+
kind: z.ZodLiteral<"custom">;
|
|
233
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
234
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
235
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
236
|
+
}, z.core.$strict>], "kind">>;
|
|
237
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
238
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
239
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
240
|
+
kind: z.ZodEnum<{
|
|
241
|
+
normalization: "normalization";
|
|
242
|
+
transformation: "transformation";
|
|
243
|
+
}>;
|
|
244
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
245
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
246
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
247
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
248
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
249
|
+
}, z.core.$strict>>>;
|
|
250
|
+
}, z.core.$strict>>;
|
|
123
251
|
}, z.core.$strict>, z.ZodObject<{
|
|
124
252
|
kind: z.ZodLiteral<"github">;
|
|
125
253
|
repository: z.ZodObject<{
|
|
@@ -132,6 +260,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
132
260
|
name: z.ZodOptional<z.ZodString>;
|
|
133
261
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
134
262
|
byteLength: z.ZodNumber;
|
|
263
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
264
|
+
kind: z.ZodString;
|
|
265
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
266
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
267
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
268
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
269
|
+
kind: z.ZodLiteral<"spdx">;
|
|
270
|
+
expression: z.ZodString;
|
|
271
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
272
|
+
kind: z.ZodLiteral<"custom">;
|
|
273
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
274
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
275
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
276
|
+
}, z.core.$strict>], "kind">>;
|
|
277
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
278
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
279
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
280
|
+
kind: z.ZodEnum<{
|
|
281
|
+
normalization: "normalization";
|
|
282
|
+
transformation: "transformation";
|
|
283
|
+
}>;
|
|
284
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
285
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
286
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
287
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
288
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
289
|
+
}, z.core.$strict>>>;
|
|
290
|
+
}, z.core.$strict>>;
|
|
135
291
|
}, z.core.$strict>], "kind">>>;
|
|
136
292
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
137
293
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -139,6 +295,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
139
295
|
content: z.ZodString;
|
|
140
296
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
141
297
|
byteLength: z.ZodNumber;
|
|
298
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
299
|
+
kind: z.ZodString;
|
|
300
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
301
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
302
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
303
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
304
|
+
kind: z.ZodLiteral<"spdx">;
|
|
305
|
+
expression: z.ZodString;
|
|
306
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
307
|
+
kind: z.ZodLiteral<"custom">;
|
|
308
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
309
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
310
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
311
|
+
}, z.core.$strict>], "kind">>;
|
|
312
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
313
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
314
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
315
|
+
kind: z.ZodEnum<{
|
|
316
|
+
normalization: "normalization";
|
|
317
|
+
transformation: "transformation";
|
|
318
|
+
}>;
|
|
319
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
320
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
321
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
322
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
323
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
324
|
+
}, z.core.$strict>>>;
|
|
325
|
+
}, z.core.$strict>>;
|
|
142
326
|
}, z.core.$strict>, z.ZodObject<{
|
|
143
327
|
kind: z.ZodLiteral<"github">;
|
|
144
328
|
repository: z.ZodObject<{
|
|
@@ -151,6 +335,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
151
335
|
name: z.ZodOptional<z.ZodString>;
|
|
152
336
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
153
337
|
byteLength: z.ZodNumber;
|
|
338
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
339
|
+
kind: z.ZodString;
|
|
340
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
341
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
342
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
343
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
344
|
+
kind: z.ZodLiteral<"spdx">;
|
|
345
|
+
expression: z.ZodString;
|
|
346
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
347
|
+
kind: z.ZodLiteral<"custom">;
|
|
348
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
349
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
350
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
351
|
+
}, z.core.$strict>], "kind">>;
|
|
352
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
353
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
354
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
355
|
+
kind: z.ZodEnum<{
|
|
356
|
+
normalization: "normalization";
|
|
357
|
+
transformation: "transformation";
|
|
358
|
+
}>;
|
|
359
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
360
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
361
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
362
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
363
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
364
|
+
}, z.core.$strict>>>;
|
|
365
|
+
}, z.core.$strict>>;
|
|
154
366
|
}, z.core.$strict>], "kind">>>;
|
|
155
367
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
156
368
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -158,6 +370,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
158
370
|
content: z.ZodString;
|
|
159
371
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
160
372
|
byteLength: z.ZodNumber;
|
|
373
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
374
|
+
kind: z.ZodString;
|
|
375
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
376
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
377
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
378
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
379
|
+
kind: z.ZodLiteral<"spdx">;
|
|
380
|
+
expression: z.ZodString;
|
|
381
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
382
|
+
kind: z.ZodLiteral<"custom">;
|
|
383
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
384
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
385
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
386
|
+
}, z.core.$strict>], "kind">>;
|
|
387
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
388
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
389
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
390
|
+
kind: z.ZodEnum<{
|
|
391
|
+
normalization: "normalization";
|
|
392
|
+
transformation: "transformation";
|
|
393
|
+
}>;
|
|
394
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
395
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
396
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
397
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
398
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
399
|
+
}, z.core.$strict>>>;
|
|
400
|
+
}, z.core.$strict>>;
|
|
161
401
|
}, z.core.$strict>, z.ZodObject<{
|
|
162
402
|
kind: z.ZodLiteral<"github">;
|
|
163
403
|
repository: z.ZodObject<{
|
|
@@ -170,6 +410,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
170
410
|
name: z.ZodOptional<z.ZodString>;
|
|
171
411
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
172
412
|
byteLength: z.ZodNumber;
|
|
413
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
414
|
+
kind: z.ZodString;
|
|
415
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
416
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
417
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
418
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
419
|
+
kind: z.ZodLiteral<"spdx">;
|
|
420
|
+
expression: z.ZodString;
|
|
421
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
422
|
+
kind: z.ZodLiteral<"custom">;
|
|
423
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
424
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
425
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
426
|
+
}, z.core.$strict>], "kind">>;
|
|
427
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
428
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
429
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
430
|
+
kind: z.ZodEnum<{
|
|
431
|
+
normalization: "normalization";
|
|
432
|
+
transformation: "transformation";
|
|
433
|
+
}>;
|
|
434
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
435
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
436
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
437
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
438
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
439
|
+
}, z.core.$strict>>>;
|
|
440
|
+
}, z.core.$strict>>;
|
|
173
441
|
}, z.core.$strict>], "kind">>>;
|
|
174
442
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
175
443
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -177,6 +445,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
177
445
|
content: z.ZodString;
|
|
178
446
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
179
447
|
byteLength: z.ZodNumber;
|
|
448
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
449
|
+
kind: z.ZodString;
|
|
450
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
451
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
452
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
453
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
454
|
+
kind: z.ZodLiteral<"spdx">;
|
|
455
|
+
expression: z.ZodString;
|
|
456
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
457
|
+
kind: z.ZodLiteral<"custom">;
|
|
458
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
459
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
460
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
461
|
+
}, z.core.$strict>], "kind">>;
|
|
462
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
463
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
464
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
465
|
+
kind: z.ZodEnum<{
|
|
466
|
+
normalization: "normalization";
|
|
467
|
+
transformation: "transformation";
|
|
468
|
+
}>;
|
|
469
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
470
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
471
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
472
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
473
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
474
|
+
}, z.core.$strict>>>;
|
|
475
|
+
}, z.core.$strict>>;
|
|
180
476
|
}, z.core.$strict>, z.ZodObject<{
|
|
181
477
|
kind: z.ZodLiteral<"github">;
|
|
182
478
|
repository: z.ZodObject<{
|
|
@@ -189,6 +485,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
189
485
|
name: z.ZodOptional<z.ZodString>;
|
|
190
486
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
191
487
|
byteLength: z.ZodNumber;
|
|
488
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
489
|
+
kind: z.ZodString;
|
|
490
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
491
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
492
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
493
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
494
|
+
kind: z.ZodLiteral<"spdx">;
|
|
495
|
+
expression: z.ZodString;
|
|
496
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
497
|
+
kind: z.ZodLiteral<"custom">;
|
|
498
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
499
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
500
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
501
|
+
}, z.core.$strict>], "kind">>;
|
|
502
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
503
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
504
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
505
|
+
kind: z.ZodEnum<{
|
|
506
|
+
normalization: "normalization";
|
|
507
|
+
transformation: "transformation";
|
|
508
|
+
}>;
|
|
509
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
510
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
511
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
512
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
513
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
514
|
+
}, z.core.$strict>>>;
|
|
515
|
+
}, z.core.$strict>>;
|
|
192
516
|
}, z.core.$strict>], "kind">]>>;
|
|
193
517
|
failOnError: z.ZodLiteral<true>;
|
|
194
518
|
}, z.core.$strict>>;
|
|
@@ -208,16 +532,8 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
208
532
|
}, z.core.$strict>>>>;
|
|
209
533
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
210
534
|
prompt: z.ZodOptional<z.ZodString>;
|
|
211
|
-
permissions: z.ZodOptional<z.
|
|
212
|
-
|
|
213
|
-
ask: "ask";
|
|
214
|
-
deny: "deny";
|
|
215
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
216
|
-
allow: "allow";
|
|
217
|
-
ask: "ask";
|
|
218
|
-
deny: "deny";
|
|
219
|
-
}>>]>>>;
|
|
220
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
535
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
536
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
221
537
|
description: z.ZodOptional<z.ZodString>;
|
|
222
538
|
model: z.ZodOptional<z.ZodString>;
|
|
223
539
|
}, z.core.$strict>>>;
|
|
@@ -555,25 +871,13 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
555
871
|
allow: "allow";
|
|
556
872
|
ask: "ask";
|
|
557
873
|
deny: "deny";
|
|
558
|
-
}>, z.
|
|
559
|
-
allow: "allow";
|
|
560
|
-
ask: "ask";
|
|
561
|
-
deny: "deny";
|
|
562
|
-
}>>]>>>;
|
|
874
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
563
875
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
564
876
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
565
877
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
566
878
|
prompt: z.ZodOptional<z.ZodString>;
|
|
567
|
-
permissions: z.ZodOptional<z.
|
|
568
|
-
|
|
569
|
-
ask: "ask";
|
|
570
|
-
deny: "deny";
|
|
571
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
572
|
-
allow: "allow";
|
|
573
|
-
ask: "ask";
|
|
574
|
-
deny: "deny";
|
|
575
|
-
}>>]>>>;
|
|
576
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
879
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
880
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
577
881
|
description: z.ZodOptional<z.ZodString>;
|
|
578
882
|
model: z.ZodOptional<z.ZodString>;
|
|
579
883
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -587,6 +891,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
587
891
|
content: z.ZodString;
|
|
588
892
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
589
893
|
byteLength: z.ZodNumber;
|
|
894
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
895
|
+
kind: z.ZodString;
|
|
896
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
897
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
898
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
899
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
900
|
+
kind: z.ZodLiteral<"spdx">;
|
|
901
|
+
expression: z.ZodString;
|
|
902
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
903
|
+
kind: z.ZodLiteral<"custom">;
|
|
904
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
905
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
906
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
907
|
+
}, z.core.$strict>], "kind">>;
|
|
908
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
909
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
910
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
911
|
+
kind: z.ZodEnum<{
|
|
912
|
+
normalization: "normalization";
|
|
913
|
+
transformation: "transformation";
|
|
914
|
+
}>;
|
|
915
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
916
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
917
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
918
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
919
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
920
|
+
}, z.core.$strict>>>;
|
|
921
|
+
}, z.core.$strict>>;
|
|
590
922
|
}, z.core.$strict>, z.ZodObject<{
|
|
591
923
|
kind: z.ZodLiteral<"github">;
|
|
592
924
|
repository: z.ZodObject<{
|
|
@@ -599,6 +931,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
599
931
|
name: z.ZodOptional<z.ZodString>;
|
|
600
932
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
601
933
|
byteLength: z.ZodNumber;
|
|
934
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
935
|
+
kind: z.ZodString;
|
|
936
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
937
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
938
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
939
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
940
|
+
kind: z.ZodLiteral<"spdx">;
|
|
941
|
+
expression: z.ZodString;
|
|
942
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
943
|
+
kind: z.ZodLiteral<"custom">;
|
|
944
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
945
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
946
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
947
|
+
}, z.core.$strict>], "kind">>;
|
|
948
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
949
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
950
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
951
|
+
kind: z.ZodEnum<{
|
|
952
|
+
normalization: "normalization";
|
|
953
|
+
transformation: "transformation";
|
|
954
|
+
}>;
|
|
955
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
956
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
957
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
958
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
959
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
960
|
+
}, z.core.$strict>>>;
|
|
961
|
+
}, z.core.$strict>>;
|
|
602
962
|
}, z.core.$strict>], "kind">;
|
|
603
963
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
604
964
|
}, z.core.$strict>>>;
|
|
@@ -608,6 +968,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
608
968
|
content: z.ZodString;
|
|
609
969
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
610
970
|
byteLength: z.ZodNumber;
|
|
971
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
972
|
+
kind: z.ZodString;
|
|
973
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
974
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
975
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
976
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
977
|
+
kind: z.ZodLiteral<"spdx">;
|
|
978
|
+
expression: z.ZodString;
|
|
979
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
980
|
+
kind: z.ZodLiteral<"custom">;
|
|
981
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
982
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
983
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
984
|
+
}, z.core.$strict>], "kind">>;
|
|
985
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
986
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
987
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
988
|
+
kind: z.ZodEnum<{
|
|
989
|
+
normalization: "normalization";
|
|
990
|
+
transformation: "transformation";
|
|
991
|
+
}>;
|
|
992
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
993
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
994
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
995
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
996
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
997
|
+
}, z.core.$strict>>>;
|
|
998
|
+
}, z.core.$strict>>;
|
|
611
999
|
}, z.core.$strict>, z.ZodObject<{
|
|
612
1000
|
kind: z.ZodLiteral<"github">;
|
|
613
1001
|
repository: z.ZodObject<{
|
|
@@ -620,6 +1008,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
620
1008
|
name: z.ZodOptional<z.ZodString>;
|
|
621
1009
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
622
1010
|
byteLength: z.ZodNumber;
|
|
1011
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1012
|
+
kind: z.ZodString;
|
|
1013
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1014
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1015
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1016
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1017
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1018
|
+
expression: z.ZodString;
|
|
1019
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1020
|
+
kind: z.ZodLiteral<"custom">;
|
|
1021
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1022
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1023
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1024
|
+
}, z.core.$strict>], "kind">>;
|
|
1025
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1026
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1027
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1028
|
+
kind: z.ZodEnum<{
|
|
1029
|
+
normalization: "normalization";
|
|
1030
|
+
transformation: "transformation";
|
|
1031
|
+
}>;
|
|
1032
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1033
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1034
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1035
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1036
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1037
|
+
}, z.core.$strict>>>;
|
|
1038
|
+
}, z.core.$strict>>;
|
|
623
1039
|
}, z.core.$strict>], "kind">>>;
|
|
624
1040
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
625
1041
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -627,6 +1043,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
627
1043
|
content: z.ZodString;
|
|
628
1044
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
629
1045
|
byteLength: z.ZodNumber;
|
|
1046
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1047
|
+
kind: z.ZodString;
|
|
1048
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1049
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1050
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1051
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1052
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1053
|
+
expression: z.ZodString;
|
|
1054
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1055
|
+
kind: z.ZodLiteral<"custom">;
|
|
1056
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1057
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1058
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1059
|
+
}, z.core.$strict>], "kind">>;
|
|
1060
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1061
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1062
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1063
|
+
kind: z.ZodEnum<{
|
|
1064
|
+
normalization: "normalization";
|
|
1065
|
+
transformation: "transformation";
|
|
1066
|
+
}>;
|
|
1067
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1068
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1069
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1070
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1071
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1072
|
+
}, z.core.$strict>>>;
|
|
1073
|
+
}, z.core.$strict>>;
|
|
630
1074
|
}, z.core.$strict>, z.ZodObject<{
|
|
631
1075
|
kind: z.ZodLiteral<"github">;
|
|
632
1076
|
repository: z.ZodObject<{
|
|
@@ -639,6 +1083,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
639
1083
|
name: z.ZodOptional<z.ZodString>;
|
|
640
1084
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
641
1085
|
byteLength: z.ZodNumber;
|
|
1086
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1087
|
+
kind: z.ZodString;
|
|
1088
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1089
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1090
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1091
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1092
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1093
|
+
expression: z.ZodString;
|
|
1094
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1095
|
+
kind: z.ZodLiteral<"custom">;
|
|
1096
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1097
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1098
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1099
|
+
}, z.core.$strict>], "kind">>;
|
|
1100
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1101
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1102
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1103
|
+
kind: z.ZodEnum<{
|
|
1104
|
+
normalization: "normalization";
|
|
1105
|
+
transformation: "transformation";
|
|
1106
|
+
}>;
|
|
1107
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1108
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1109
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1110
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1111
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1112
|
+
}, z.core.$strict>>>;
|
|
1113
|
+
}, z.core.$strict>>;
|
|
642
1114
|
}, z.core.$strict>], "kind">>>;
|
|
643
1115
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
644
1116
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -646,6 +1118,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
646
1118
|
content: z.ZodString;
|
|
647
1119
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
648
1120
|
byteLength: z.ZodNumber;
|
|
1121
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1122
|
+
kind: z.ZodString;
|
|
1123
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1124
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1125
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1126
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1127
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1128
|
+
expression: z.ZodString;
|
|
1129
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1130
|
+
kind: z.ZodLiteral<"custom">;
|
|
1131
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1132
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1133
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1134
|
+
}, z.core.$strict>], "kind">>;
|
|
1135
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1136
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1137
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1138
|
+
kind: z.ZodEnum<{
|
|
1139
|
+
normalization: "normalization";
|
|
1140
|
+
transformation: "transformation";
|
|
1141
|
+
}>;
|
|
1142
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1143
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1144
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1145
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1146
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1147
|
+
}, z.core.$strict>>>;
|
|
1148
|
+
}, z.core.$strict>>;
|
|
649
1149
|
}, z.core.$strict>, z.ZodObject<{
|
|
650
1150
|
kind: z.ZodLiteral<"github">;
|
|
651
1151
|
repository: z.ZodObject<{
|
|
@@ -658,6 +1158,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
658
1158
|
name: z.ZodOptional<z.ZodString>;
|
|
659
1159
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
660
1160
|
byteLength: z.ZodNumber;
|
|
1161
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1162
|
+
kind: z.ZodString;
|
|
1163
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1164
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1165
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1166
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1167
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1168
|
+
expression: z.ZodString;
|
|
1169
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1170
|
+
kind: z.ZodLiteral<"custom">;
|
|
1171
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1172
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1173
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1174
|
+
}, z.core.$strict>], "kind">>;
|
|
1175
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1176
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1177
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1178
|
+
kind: z.ZodEnum<{
|
|
1179
|
+
normalization: "normalization";
|
|
1180
|
+
transformation: "transformation";
|
|
1181
|
+
}>;
|
|
1182
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1183
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1184
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1185
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1186
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1187
|
+
}, z.core.$strict>>>;
|
|
1188
|
+
}, z.core.$strict>>;
|
|
661
1189
|
}, z.core.$strict>], "kind">>>;
|
|
662
1190
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
663
1191
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -665,6 +1193,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
665
1193
|
content: z.ZodString;
|
|
666
1194
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
667
1195
|
byteLength: z.ZodNumber;
|
|
1196
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1197
|
+
kind: z.ZodString;
|
|
1198
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1199
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1200
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1201
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1202
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1203
|
+
expression: z.ZodString;
|
|
1204
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1205
|
+
kind: z.ZodLiteral<"custom">;
|
|
1206
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1207
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1208
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1209
|
+
}, z.core.$strict>], "kind">>;
|
|
1210
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1211
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1212
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1213
|
+
kind: z.ZodEnum<{
|
|
1214
|
+
normalization: "normalization";
|
|
1215
|
+
transformation: "transformation";
|
|
1216
|
+
}>;
|
|
1217
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1218
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1219
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1220
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1221
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1222
|
+
}, z.core.$strict>>>;
|
|
1223
|
+
}, z.core.$strict>>;
|
|
668
1224
|
}, z.core.$strict>, z.ZodObject<{
|
|
669
1225
|
kind: z.ZodLiteral<"github">;
|
|
670
1226
|
repository: z.ZodObject<{
|
|
@@ -677,6 +1233,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
677
1233
|
name: z.ZodOptional<z.ZodString>;
|
|
678
1234
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
679
1235
|
byteLength: z.ZodNumber;
|
|
1236
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1237
|
+
kind: z.ZodString;
|
|
1238
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1239
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1240
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1241
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1242
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1243
|
+
expression: z.ZodString;
|
|
1244
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1245
|
+
kind: z.ZodLiteral<"custom">;
|
|
1246
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1247
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1248
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1249
|
+
}, z.core.$strict>], "kind">>;
|
|
1250
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1251
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1252
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1253
|
+
kind: z.ZodEnum<{
|
|
1254
|
+
normalization: "normalization";
|
|
1255
|
+
transformation: "transformation";
|
|
1256
|
+
}>;
|
|
1257
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1258
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1259
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1260
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1261
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1262
|
+
}, z.core.$strict>>>;
|
|
1263
|
+
}, z.core.$strict>>;
|
|
680
1264
|
}, z.core.$strict>], "kind">>>;
|
|
681
1265
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
682
1266
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -684,6 +1268,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
684
1268
|
content: z.ZodString;
|
|
685
1269
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
686
1270
|
byteLength: z.ZodNumber;
|
|
1271
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1272
|
+
kind: z.ZodString;
|
|
1273
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1274
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1275
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1276
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1277
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1278
|
+
expression: z.ZodString;
|
|
1279
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1280
|
+
kind: z.ZodLiteral<"custom">;
|
|
1281
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1282
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1283
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1284
|
+
}, z.core.$strict>], "kind">>;
|
|
1285
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1286
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1287
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1288
|
+
kind: z.ZodEnum<{
|
|
1289
|
+
normalization: "normalization";
|
|
1290
|
+
transformation: "transformation";
|
|
1291
|
+
}>;
|
|
1292
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1293
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1294
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1295
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1296
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1297
|
+
}, z.core.$strict>>>;
|
|
1298
|
+
}, z.core.$strict>>;
|
|
687
1299
|
}, z.core.$strict>, z.ZodObject<{
|
|
688
1300
|
kind: z.ZodLiteral<"github">;
|
|
689
1301
|
repository: z.ZodObject<{
|
|
@@ -696,6 +1308,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
696
1308
|
name: z.ZodOptional<z.ZodString>;
|
|
697
1309
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
698
1310
|
byteLength: z.ZodNumber;
|
|
1311
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1312
|
+
kind: z.ZodString;
|
|
1313
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1314
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1315
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1316
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1317
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1318
|
+
expression: z.ZodString;
|
|
1319
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1320
|
+
kind: z.ZodLiteral<"custom">;
|
|
1321
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1322
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1323
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1324
|
+
}, z.core.$strict>], "kind">>;
|
|
1325
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1326
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1327
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1328
|
+
kind: z.ZodEnum<{
|
|
1329
|
+
normalization: "normalization";
|
|
1330
|
+
transformation: "transformation";
|
|
1331
|
+
}>;
|
|
1332
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1333
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1334
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1335
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1336
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1337
|
+
}, z.core.$strict>>>;
|
|
1338
|
+
}, z.core.$strict>>;
|
|
699
1339
|
}, z.core.$strict>], "kind">]>>;
|
|
700
1340
|
failOnError: z.ZodLiteral<true>;
|
|
701
1341
|
}, z.core.$strict>>;
|
|
@@ -715,16 +1355,8 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
715
1355
|
}, z.core.$strict>>>>;
|
|
716
1356
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
717
1357
|
prompt: z.ZodOptional<z.ZodString>;
|
|
718
|
-
permissions: z.ZodOptional<z.
|
|
719
|
-
|
|
720
|
-
ask: "ask";
|
|
721
|
-
deny: "deny";
|
|
722
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
723
|
-
allow: "allow";
|
|
724
|
-
ask: "ask";
|
|
725
|
-
deny: "deny";
|
|
726
|
-
}>>]>>>;
|
|
727
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
1358
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
1359
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
728
1360
|
description: z.ZodOptional<z.ZodString>;
|
|
729
1361
|
model: z.ZodOptional<z.ZodString>;
|
|
730
1362
|
}, z.core.$strict>>>;
|
|
@@ -1412,11 +2044,10 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
1412
2044
|
}, z.core.$strict>;
|
|
1413
2045
|
}, z.core.$strict>;
|
|
1414
2046
|
profileActivation: z.ZodObject<{
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
material: z.ZodType<{
|
|
2047
|
+
profilePlan: z.ZodType<{
|
|
2048
|
+
kind: "agent-profile-workspace-plan";
|
|
2049
|
+
digest: `sha256:${string}`;
|
|
2050
|
+
material: {
|
|
1420
2051
|
sourceProfileDigest: `sha256:${string}`;
|
|
1421
2052
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
1422
2053
|
files: {
|
|
@@ -1440,7 +2071,30 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
1440
2071
|
kind: "public";
|
|
1441
2072
|
value: string;
|
|
1442
2073
|
} | undefined;
|
|
1443
|
-
}
|
|
2074
|
+
};
|
|
2075
|
+
artifact: {
|
|
2076
|
+
locator: {
|
|
2077
|
+
kind: "s3";
|
|
2078
|
+
bucket: string;
|
|
2079
|
+
key: string;
|
|
2080
|
+
region?: string | undefined;
|
|
2081
|
+
} | {
|
|
2082
|
+
kind: "ipfs";
|
|
2083
|
+
cid: string;
|
|
2084
|
+
path?: string | undefined;
|
|
2085
|
+
};
|
|
2086
|
+
sha256: `sha256:${string}`;
|
|
2087
|
+
byteLength: number;
|
|
2088
|
+
} | {
|
|
2089
|
+
encoding: "base64";
|
|
2090
|
+
content: string;
|
|
2091
|
+
sha256: `sha256:${string}`;
|
|
2092
|
+
byteLength: number;
|
|
2093
|
+
};
|
|
2094
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
2095
|
+
kind: "agent-profile-workspace-plan";
|
|
2096
|
+
digest: `sha256:${string}`;
|
|
2097
|
+
material: {
|
|
1444
2098
|
sourceProfileDigest: `sha256:${string}`;
|
|
1445
2099
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
1446
2100
|
files: {
|
|
@@ -1464,33 +2118,34 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
1464
2118
|
kind: "public";
|
|
1465
2119
|
value: string;
|
|
1466
2120
|
} | undefined;
|
|
1467
|
-
}
|
|
1468
|
-
artifact:
|
|
1469
|
-
locator:
|
|
1470
|
-
kind:
|
|
1471
|
-
bucket:
|
|
1472
|
-
key:
|
|
1473
|
-
region
|
|
1474
|
-
}
|
|
1475
|
-
kind:
|
|
1476
|
-
cid:
|
|
1477
|
-
path
|
|
1478
|
-
}
|
|
1479
|
-
sha256:
|
|
1480
|
-
byteLength:
|
|
1481
|
-
}
|
|
1482
|
-
encoding:
|
|
1483
|
-
content:
|
|
1484
|
-
sha256:
|
|
1485
|
-
byteLength:
|
|
1486
|
-
}
|
|
1487
|
-
},
|
|
2121
|
+
};
|
|
2122
|
+
artifact: {
|
|
2123
|
+
locator: {
|
|
2124
|
+
kind: "s3";
|
|
2125
|
+
bucket: string;
|
|
2126
|
+
key: string;
|
|
2127
|
+
region?: string | undefined;
|
|
2128
|
+
} | {
|
|
2129
|
+
kind: "ipfs";
|
|
2130
|
+
cid: string;
|
|
2131
|
+
path?: string | undefined;
|
|
2132
|
+
};
|
|
2133
|
+
sha256: `sha256:${string}`;
|
|
2134
|
+
byteLength: number;
|
|
2135
|
+
} | {
|
|
2136
|
+
encoding: "base64";
|
|
2137
|
+
content: string;
|
|
2138
|
+
sha256: `sha256:${string}`;
|
|
2139
|
+
byteLength: number;
|
|
2140
|
+
};
|
|
2141
|
+
}, unknown>>;
|
|
1488
2142
|
files: z.ZodArray<z.ZodObject<{
|
|
1489
2143
|
path: z.ZodString;
|
|
1490
2144
|
mode: z.ZodNumber;
|
|
1491
2145
|
content: z.ZodString;
|
|
1492
2146
|
}, z.core.$strict>>;
|
|
1493
2147
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2148
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
1494
2149
|
}, z.core.$strict>;
|
|
1495
2150
|
executionPlan: z.ZodObject<{
|
|
1496
2151
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -2941,25 +3596,13 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2941
3596
|
allow: "allow";
|
|
2942
3597
|
ask: "ask";
|
|
2943
3598
|
deny: "deny";
|
|
2944
|
-
}>, z.
|
|
2945
|
-
allow: "allow";
|
|
2946
|
-
ask: "ask";
|
|
2947
|
-
deny: "deny";
|
|
2948
|
-
}>>]>>>;
|
|
3599
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
2949
3600
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
2950
3601
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
2951
3602
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2952
3603
|
prompt: z.ZodOptional<z.ZodString>;
|
|
2953
|
-
permissions: z.ZodOptional<z.
|
|
2954
|
-
|
|
2955
|
-
ask: "ask";
|
|
2956
|
-
deny: "deny";
|
|
2957
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
2958
|
-
allow: "allow";
|
|
2959
|
-
ask: "ask";
|
|
2960
|
-
deny: "deny";
|
|
2961
|
-
}>>]>>>;
|
|
2962
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3604
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
3605
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
2963
3606
|
description: z.ZodOptional<z.ZodString>;
|
|
2964
3607
|
model: z.ZodOptional<z.ZodString>;
|
|
2965
3608
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2973,6 +3616,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2973
3616
|
content: z.ZodString;
|
|
2974
3617
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2975
3618
|
byteLength: z.ZodNumber;
|
|
3619
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3620
|
+
kind: z.ZodString;
|
|
3621
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3622
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3623
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3624
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3625
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3626
|
+
expression: z.ZodString;
|
|
3627
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3628
|
+
kind: z.ZodLiteral<"custom">;
|
|
3629
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3630
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3631
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3632
|
+
}, z.core.$strict>], "kind">>;
|
|
3633
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3634
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3635
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3636
|
+
kind: z.ZodEnum<{
|
|
3637
|
+
normalization: "normalization";
|
|
3638
|
+
transformation: "transformation";
|
|
3639
|
+
}>;
|
|
3640
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3641
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3642
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3643
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3644
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3645
|
+
}, z.core.$strict>>>;
|
|
3646
|
+
}, z.core.$strict>>;
|
|
2976
3647
|
}, z.core.$strict>, z.ZodObject<{
|
|
2977
3648
|
kind: z.ZodLiteral<"github">;
|
|
2978
3649
|
repository: z.ZodObject<{
|
|
@@ -2985,6 +3656,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2985
3656
|
name: z.ZodOptional<z.ZodString>;
|
|
2986
3657
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2987
3658
|
byteLength: z.ZodNumber;
|
|
3659
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3660
|
+
kind: z.ZodString;
|
|
3661
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3662
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3663
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3664
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3665
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3666
|
+
expression: z.ZodString;
|
|
3667
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3668
|
+
kind: z.ZodLiteral<"custom">;
|
|
3669
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3670
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3671
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3672
|
+
}, z.core.$strict>], "kind">>;
|
|
3673
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3674
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3675
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3676
|
+
kind: z.ZodEnum<{
|
|
3677
|
+
normalization: "normalization";
|
|
3678
|
+
transformation: "transformation";
|
|
3679
|
+
}>;
|
|
3680
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3681
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3682
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3683
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3684
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3685
|
+
}, z.core.$strict>>>;
|
|
3686
|
+
}, z.core.$strict>>;
|
|
2988
3687
|
}, z.core.$strict>], "kind">;
|
|
2989
3688
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
2990
3689
|
}, z.core.$strict>>>;
|
|
@@ -2994,6 +3693,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2994
3693
|
content: z.ZodString;
|
|
2995
3694
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2996
3695
|
byteLength: z.ZodNumber;
|
|
3696
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3697
|
+
kind: z.ZodString;
|
|
3698
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3699
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3700
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3701
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3702
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3703
|
+
expression: z.ZodString;
|
|
3704
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3705
|
+
kind: z.ZodLiteral<"custom">;
|
|
3706
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3707
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3708
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3709
|
+
}, z.core.$strict>], "kind">>;
|
|
3710
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3711
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3712
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3713
|
+
kind: z.ZodEnum<{
|
|
3714
|
+
normalization: "normalization";
|
|
3715
|
+
transformation: "transformation";
|
|
3716
|
+
}>;
|
|
3717
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3718
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3719
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3720
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3721
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3722
|
+
}, z.core.$strict>>>;
|
|
3723
|
+
}, z.core.$strict>>;
|
|
2997
3724
|
}, z.core.$strict>, z.ZodObject<{
|
|
2998
3725
|
kind: z.ZodLiteral<"github">;
|
|
2999
3726
|
repository: z.ZodObject<{
|
|
@@ -3006,6 +3733,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3006
3733
|
name: z.ZodOptional<z.ZodString>;
|
|
3007
3734
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3008
3735
|
byteLength: z.ZodNumber;
|
|
3736
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3737
|
+
kind: z.ZodString;
|
|
3738
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3739
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3740
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3741
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3742
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3743
|
+
expression: z.ZodString;
|
|
3744
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3745
|
+
kind: z.ZodLiteral<"custom">;
|
|
3746
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3747
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3748
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3749
|
+
}, z.core.$strict>], "kind">>;
|
|
3750
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3751
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3752
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3753
|
+
kind: z.ZodEnum<{
|
|
3754
|
+
normalization: "normalization";
|
|
3755
|
+
transformation: "transformation";
|
|
3756
|
+
}>;
|
|
3757
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3758
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3759
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3760
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3761
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3762
|
+
}, z.core.$strict>>>;
|
|
3763
|
+
}, z.core.$strict>>;
|
|
3009
3764
|
}, z.core.$strict>], "kind">>>;
|
|
3010
3765
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3011
3766
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3013,6 +3768,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3013
3768
|
content: z.ZodString;
|
|
3014
3769
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3015
3770
|
byteLength: z.ZodNumber;
|
|
3771
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3772
|
+
kind: z.ZodString;
|
|
3773
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3774
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3775
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3776
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3777
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3778
|
+
expression: z.ZodString;
|
|
3779
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3780
|
+
kind: z.ZodLiteral<"custom">;
|
|
3781
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3782
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3783
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3784
|
+
}, z.core.$strict>], "kind">>;
|
|
3785
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3786
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3787
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3788
|
+
kind: z.ZodEnum<{
|
|
3789
|
+
normalization: "normalization";
|
|
3790
|
+
transformation: "transformation";
|
|
3791
|
+
}>;
|
|
3792
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3793
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3794
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3795
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3796
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3797
|
+
}, z.core.$strict>>>;
|
|
3798
|
+
}, z.core.$strict>>;
|
|
3016
3799
|
}, z.core.$strict>, z.ZodObject<{
|
|
3017
3800
|
kind: z.ZodLiteral<"github">;
|
|
3018
3801
|
repository: z.ZodObject<{
|
|
@@ -3025,6 +3808,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3025
3808
|
name: z.ZodOptional<z.ZodString>;
|
|
3026
3809
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3027
3810
|
byteLength: z.ZodNumber;
|
|
3811
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3812
|
+
kind: z.ZodString;
|
|
3813
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3814
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3815
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3816
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3817
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3818
|
+
expression: z.ZodString;
|
|
3819
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3820
|
+
kind: z.ZodLiteral<"custom">;
|
|
3821
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3822
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3823
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3824
|
+
}, z.core.$strict>], "kind">>;
|
|
3825
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3826
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3827
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3828
|
+
kind: z.ZodEnum<{
|
|
3829
|
+
normalization: "normalization";
|
|
3830
|
+
transformation: "transformation";
|
|
3831
|
+
}>;
|
|
3832
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3833
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3834
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3835
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3836
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3837
|
+
}, z.core.$strict>>>;
|
|
3838
|
+
}, z.core.$strict>>;
|
|
3028
3839
|
}, z.core.$strict>], "kind">>>;
|
|
3029
3840
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3030
3841
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3032,6 +3843,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3032
3843
|
content: z.ZodString;
|
|
3033
3844
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3034
3845
|
byteLength: z.ZodNumber;
|
|
3846
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3847
|
+
kind: z.ZodString;
|
|
3848
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3849
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3850
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3851
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3852
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3853
|
+
expression: z.ZodString;
|
|
3854
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3855
|
+
kind: z.ZodLiteral<"custom">;
|
|
3856
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3857
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3858
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3859
|
+
}, z.core.$strict>], "kind">>;
|
|
3860
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3861
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3862
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3863
|
+
kind: z.ZodEnum<{
|
|
3864
|
+
normalization: "normalization";
|
|
3865
|
+
transformation: "transformation";
|
|
3866
|
+
}>;
|
|
3867
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3868
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3869
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3870
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3871
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3872
|
+
}, z.core.$strict>>>;
|
|
3873
|
+
}, z.core.$strict>>;
|
|
3035
3874
|
}, z.core.$strict>, z.ZodObject<{
|
|
3036
3875
|
kind: z.ZodLiteral<"github">;
|
|
3037
3876
|
repository: z.ZodObject<{
|
|
@@ -3044,6 +3883,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3044
3883
|
name: z.ZodOptional<z.ZodString>;
|
|
3045
3884
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3046
3885
|
byteLength: z.ZodNumber;
|
|
3886
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3887
|
+
kind: z.ZodString;
|
|
3888
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3889
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3890
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3891
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3892
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3893
|
+
expression: z.ZodString;
|
|
3894
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3895
|
+
kind: z.ZodLiteral<"custom">;
|
|
3896
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3897
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3898
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3899
|
+
}, z.core.$strict>], "kind">>;
|
|
3900
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3901
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3902
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3903
|
+
kind: z.ZodEnum<{
|
|
3904
|
+
normalization: "normalization";
|
|
3905
|
+
transformation: "transformation";
|
|
3906
|
+
}>;
|
|
3907
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3908
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3909
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3910
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3911
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3912
|
+
}, z.core.$strict>>>;
|
|
3913
|
+
}, z.core.$strict>>;
|
|
3047
3914
|
}, z.core.$strict>], "kind">>>;
|
|
3048
3915
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3049
3916
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3051,6 +3918,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3051
3918
|
content: z.ZodString;
|
|
3052
3919
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3053
3920
|
byteLength: z.ZodNumber;
|
|
3921
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3922
|
+
kind: z.ZodString;
|
|
3923
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3924
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3925
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3926
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3927
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3928
|
+
expression: z.ZodString;
|
|
3929
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3930
|
+
kind: z.ZodLiteral<"custom">;
|
|
3931
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3932
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3933
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3934
|
+
}, z.core.$strict>], "kind">>;
|
|
3935
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3936
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3937
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3938
|
+
kind: z.ZodEnum<{
|
|
3939
|
+
normalization: "normalization";
|
|
3940
|
+
transformation: "transformation";
|
|
3941
|
+
}>;
|
|
3942
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3943
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3944
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3945
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3946
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3947
|
+
}, z.core.$strict>>>;
|
|
3948
|
+
}, z.core.$strict>>;
|
|
3054
3949
|
}, z.core.$strict>, z.ZodObject<{
|
|
3055
3950
|
kind: z.ZodLiteral<"github">;
|
|
3056
3951
|
repository: z.ZodObject<{
|
|
@@ -3063,6 +3958,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3063
3958
|
name: z.ZodOptional<z.ZodString>;
|
|
3064
3959
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3065
3960
|
byteLength: z.ZodNumber;
|
|
3961
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3962
|
+
kind: z.ZodString;
|
|
3963
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3964
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3965
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3966
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3967
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3968
|
+
expression: z.ZodString;
|
|
3969
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3970
|
+
kind: z.ZodLiteral<"custom">;
|
|
3971
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3972
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3973
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3974
|
+
}, z.core.$strict>], "kind">>;
|
|
3975
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3976
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3977
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3978
|
+
kind: z.ZodEnum<{
|
|
3979
|
+
normalization: "normalization";
|
|
3980
|
+
transformation: "transformation";
|
|
3981
|
+
}>;
|
|
3982
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3983
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3984
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3985
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3986
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3987
|
+
}, z.core.$strict>>>;
|
|
3988
|
+
}, z.core.$strict>>;
|
|
3066
3989
|
}, z.core.$strict>], "kind">>>;
|
|
3067
3990
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3068
3991
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3070,6 +3993,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3070
3993
|
content: z.ZodString;
|
|
3071
3994
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3072
3995
|
byteLength: z.ZodNumber;
|
|
3996
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3997
|
+
kind: z.ZodString;
|
|
3998
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3999
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4000
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4001
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4002
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4003
|
+
expression: z.ZodString;
|
|
4004
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4005
|
+
kind: z.ZodLiteral<"custom">;
|
|
4006
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4007
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4008
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4009
|
+
}, z.core.$strict>], "kind">>;
|
|
4010
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4011
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4012
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4013
|
+
kind: z.ZodEnum<{
|
|
4014
|
+
normalization: "normalization";
|
|
4015
|
+
transformation: "transformation";
|
|
4016
|
+
}>;
|
|
4017
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4018
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4019
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4020
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4021
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4022
|
+
}, z.core.$strict>>>;
|
|
4023
|
+
}, z.core.$strict>>;
|
|
3073
4024
|
}, z.core.$strict>, z.ZodObject<{
|
|
3074
4025
|
kind: z.ZodLiteral<"github">;
|
|
3075
4026
|
repository: z.ZodObject<{
|
|
@@ -3082,6 +4033,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3082
4033
|
name: z.ZodOptional<z.ZodString>;
|
|
3083
4034
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3084
4035
|
byteLength: z.ZodNumber;
|
|
4036
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4037
|
+
kind: z.ZodString;
|
|
4038
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4039
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4040
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4041
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4042
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4043
|
+
expression: z.ZodString;
|
|
4044
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4045
|
+
kind: z.ZodLiteral<"custom">;
|
|
4046
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4047
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4048
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4049
|
+
}, z.core.$strict>], "kind">>;
|
|
4050
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4051
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4052
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4053
|
+
kind: z.ZodEnum<{
|
|
4054
|
+
normalization: "normalization";
|
|
4055
|
+
transformation: "transformation";
|
|
4056
|
+
}>;
|
|
4057
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4058
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4059
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4060
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4061
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4062
|
+
}, z.core.$strict>>>;
|
|
4063
|
+
}, z.core.$strict>>;
|
|
3085
4064
|
}, z.core.$strict>], "kind">]>>;
|
|
3086
4065
|
failOnError: z.ZodLiteral<true>;
|
|
3087
4066
|
}, z.core.$strict>>;
|
|
@@ -3101,16 +4080,8 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3101
4080
|
}, z.core.$strict>>>>;
|
|
3102
4081
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3103
4082
|
prompt: z.ZodOptional<z.ZodString>;
|
|
3104
|
-
permissions: z.ZodOptional<z.
|
|
3105
|
-
|
|
3106
|
-
ask: "ask";
|
|
3107
|
-
deny: "deny";
|
|
3108
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
3109
|
-
allow: "allow";
|
|
3110
|
-
ask: "ask";
|
|
3111
|
-
deny: "deny";
|
|
3112
|
-
}>>]>>>;
|
|
3113
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4083
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
4084
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
3114
4085
|
description: z.ZodOptional<z.ZodString>;
|
|
3115
4086
|
model: z.ZodOptional<z.ZodString>;
|
|
3116
4087
|
}, z.core.$strict>>>;
|
|
@@ -3448,25 +4419,13 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3448
4419
|
allow: "allow";
|
|
3449
4420
|
ask: "ask";
|
|
3450
4421
|
deny: "deny";
|
|
3451
|
-
}>, z.
|
|
3452
|
-
allow: "allow";
|
|
3453
|
-
ask: "ask";
|
|
3454
|
-
deny: "deny";
|
|
3455
|
-
}>>]>>>;
|
|
4422
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
3456
4423
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3457
4424
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
3458
4425
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3459
4426
|
prompt: z.ZodOptional<z.ZodString>;
|
|
3460
|
-
permissions: z.ZodOptional<z.
|
|
3461
|
-
|
|
3462
|
-
ask: "ask";
|
|
3463
|
-
deny: "deny";
|
|
3464
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
3465
|
-
allow: "allow";
|
|
3466
|
-
ask: "ask";
|
|
3467
|
-
deny: "deny";
|
|
3468
|
-
}>>]>>>;
|
|
3469
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4427
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
4428
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
3470
4429
|
description: z.ZodOptional<z.ZodString>;
|
|
3471
4430
|
model: z.ZodOptional<z.ZodString>;
|
|
3472
4431
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3480,6 +4439,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3480
4439
|
content: z.ZodString;
|
|
3481
4440
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3482
4441
|
byteLength: z.ZodNumber;
|
|
4442
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4443
|
+
kind: z.ZodString;
|
|
4444
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4445
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4446
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4447
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4448
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4449
|
+
expression: z.ZodString;
|
|
4450
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4451
|
+
kind: z.ZodLiteral<"custom">;
|
|
4452
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4453
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4454
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4455
|
+
}, z.core.$strict>], "kind">>;
|
|
4456
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4457
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4458
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4459
|
+
kind: z.ZodEnum<{
|
|
4460
|
+
normalization: "normalization";
|
|
4461
|
+
transformation: "transformation";
|
|
4462
|
+
}>;
|
|
4463
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4464
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4465
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4466
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4467
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4468
|
+
}, z.core.$strict>>>;
|
|
4469
|
+
}, z.core.$strict>>;
|
|
3483
4470
|
}, z.core.$strict>, z.ZodObject<{
|
|
3484
4471
|
kind: z.ZodLiteral<"github">;
|
|
3485
4472
|
repository: z.ZodObject<{
|
|
@@ -3492,6 +4479,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3492
4479
|
name: z.ZodOptional<z.ZodString>;
|
|
3493
4480
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3494
4481
|
byteLength: z.ZodNumber;
|
|
4482
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4483
|
+
kind: z.ZodString;
|
|
4484
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4485
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4486
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4487
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4488
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4489
|
+
expression: z.ZodString;
|
|
4490
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4491
|
+
kind: z.ZodLiteral<"custom">;
|
|
4492
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4493
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4494
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4495
|
+
}, z.core.$strict>], "kind">>;
|
|
4496
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4497
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4498
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4499
|
+
kind: z.ZodEnum<{
|
|
4500
|
+
normalization: "normalization";
|
|
4501
|
+
transformation: "transformation";
|
|
4502
|
+
}>;
|
|
4503
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4504
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4505
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4506
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4507
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4508
|
+
}, z.core.$strict>>>;
|
|
4509
|
+
}, z.core.$strict>>;
|
|
3495
4510
|
}, z.core.$strict>], "kind">;
|
|
3496
4511
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
3497
4512
|
}, z.core.$strict>>>;
|
|
@@ -3501,6 +4516,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3501
4516
|
content: z.ZodString;
|
|
3502
4517
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3503
4518
|
byteLength: z.ZodNumber;
|
|
4519
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4520
|
+
kind: z.ZodString;
|
|
4521
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4522
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4523
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4524
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4525
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4526
|
+
expression: z.ZodString;
|
|
4527
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4528
|
+
kind: z.ZodLiteral<"custom">;
|
|
4529
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4530
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4531
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4532
|
+
}, z.core.$strict>], "kind">>;
|
|
4533
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4534
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4535
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4536
|
+
kind: z.ZodEnum<{
|
|
4537
|
+
normalization: "normalization";
|
|
4538
|
+
transformation: "transformation";
|
|
4539
|
+
}>;
|
|
4540
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4541
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4542
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4543
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4544
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4545
|
+
}, z.core.$strict>>>;
|
|
4546
|
+
}, z.core.$strict>>;
|
|
3504
4547
|
}, z.core.$strict>, z.ZodObject<{
|
|
3505
4548
|
kind: z.ZodLiteral<"github">;
|
|
3506
4549
|
repository: z.ZodObject<{
|
|
@@ -3513,6 +4556,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3513
4556
|
name: z.ZodOptional<z.ZodString>;
|
|
3514
4557
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3515
4558
|
byteLength: z.ZodNumber;
|
|
4559
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4560
|
+
kind: z.ZodString;
|
|
4561
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4562
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4563
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4564
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4565
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4566
|
+
expression: z.ZodString;
|
|
4567
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4568
|
+
kind: z.ZodLiteral<"custom">;
|
|
4569
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4570
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4571
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4572
|
+
}, z.core.$strict>], "kind">>;
|
|
4573
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4574
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4575
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4576
|
+
kind: z.ZodEnum<{
|
|
4577
|
+
normalization: "normalization";
|
|
4578
|
+
transformation: "transformation";
|
|
4579
|
+
}>;
|
|
4580
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4581
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4582
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4583
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4584
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4585
|
+
}, z.core.$strict>>>;
|
|
4586
|
+
}, z.core.$strict>>;
|
|
3516
4587
|
}, z.core.$strict>], "kind">>>;
|
|
3517
4588
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3518
4589
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3520,6 +4591,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3520
4591
|
content: z.ZodString;
|
|
3521
4592
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3522
4593
|
byteLength: z.ZodNumber;
|
|
4594
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4595
|
+
kind: z.ZodString;
|
|
4596
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4597
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4598
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4599
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4600
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4601
|
+
expression: z.ZodString;
|
|
4602
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4603
|
+
kind: z.ZodLiteral<"custom">;
|
|
4604
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4605
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4606
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4607
|
+
}, z.core.$strict>], "kind">>;
|
|
4608
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4609
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4610
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4611
|
+
kind: z.ZodEnum<{
|
|
4612
|
+
normalization: "normalization";
|
|
4613
|
+
transformation: "transformation";
|
|
4614
|
+
}>;
|
|
4615
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4616
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4617
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4618
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4619
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4620
|
+
}, z.core.$strict>>>;
|
|
4621
|
+
}, z.core.$strict>>;
|
|
3523
4622
|
}, z.core.$strict>, z.ZodObject<{
|
|
3524
4623
|
kind: z.ZodLiteral<"github">;
|
|
3525
4624
|
repository: z.ZodObject<{
|
|
@@ -3532,6 +4631,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3532
4631
|
name: z.ZodOptional<z.ZodString>;
|
|
3533
4632
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3534
4633
|
byteLength: z.ZodNumber;
|
|
4634
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4635
|
+
kind: z.ZodString;
|
|
4636
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4637
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4638
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4639
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4640
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4641
|
+
expression: z.ZodString;
|
|
4642
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4643
|
+
kind: z.ZodLiteral<"custom">;
|
|
4644
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4645
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4646
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4647
|
+
}, z.core.$strict>], "kind">>;
|
|
4648
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4649
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4650
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4651
|
+
kind: z.ZodEnum<{
|
|
4652
|
+
normalization: "normalization";
|
|
4653
|
+
transformation: "transformation";
|
|
4654
|
+
}>;
|
|
4655
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4656
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4657
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4658
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4659
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4660
|
+
}, z.core.$strict>>>;
|
|
4661
|
+
}, z.core.$strict>>;
|
|
3535
4662
|
}, z.core.$strict>], "kind">>>;
|
|
3536
4663
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3537
4664
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3539,6 +4666,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3539
4666
|
content: z.ZodString;
|
|
3540
4667
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3541
4668
|
byteLength: z.ZodNumber;
|
|
4669
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4670
|
+
kind: z.ZodString;
|
|
4671
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4672
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4673
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4674
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4675
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4676
|
+
expression: z.ZodString;
|
|
4677
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4678
|
+
kind: z.ZodLiteral<"custom">;
|
|
4679
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4680
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4681
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4682
|
+
}, z.core.$strict>], "kind">>;
|
|
4683
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4684
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4685
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4686
|
+
kind: z.ZodEnum<{
|
|
4687
|
+
normalization: "normalization";
|
|
4688
|
+
transformation: "transformation";
|
|
4689
|
+
}>;
|
|
4690
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4691
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4692
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4693
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4694
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4695
|
+
}, z.core.$strict>>>;
|
|
4696
|
+
}, z.core.$strict>>;
|
|
3542
4697
|
}, z.core.$strict>, z.ZodObject<{
|
|
3543
4698
|
kind: z.ZodLiteral<"github">;
|
|
3544
4699
|
repository: z.ZodObject<{
|
|
@@ -3551,6 +4706,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3551
4706
|
name: z.ZodOptional<z.ZodString>;
|
|
3552
4707
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3553
4708
|
byteLength: z.ZodNumber;
|
|
4709
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4710
|
+
kind: z.ZodString;
|
|
4711
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4712
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4713
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4714
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4715
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4716
|
+
expression: z.ZodString;
|
|
4717
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4718
|
+
kind: z.ZodLiteral<"custom">;
|
|
4719
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4720
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4721
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4722
|
+
}, z.core.$strict>], "kind">>;
|
|
4723
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4724
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4725
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4726
|
+
kind: z.ZodEnum<{
|
|
4727
|
+
normalization: "normalization";
|
|
4728
|
+
transformation: "transformation";
|
|
4729
|
+
}>;
|
|
4730
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4731
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4732
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4733
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4734
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4735
|
+
}, z.core.$strict>>>;
|
|
4736
|
+
}, z.core.$strict>>;
|
|
3554
4737
|
}, z.core.$strict>], "kind">>>;
|
|
3555
4738
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3556
4739
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3558,6 +4741,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3558
4741
|
content: z.ZodString;
|
|
3559
4742
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3560
4743
|
byteLength: z.ZodNumber;
|
|
4744
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4745
|
+
kind: z.ZodString;
|
|
4746
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4747
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4748
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4749
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4750
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4751
|
+
expression: z.ZodString;
|
|
4752
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4753
|
+
kind: z.ZodLiteral<"custom">;
|
|
4754
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4755
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4756
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4757
|
+
}, z.core.$strict>], "kind">>;
|
|
4758
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4759
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4760
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4761
|
+
kind: z.ZodEnum<{
|
|
4762
|
+
normalization: "normalization";
|
|
4763
|
+
transformation: "transformation";
|
|
4764
|
+
}>;
|
|
4765
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4766
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4767
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4768
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4769
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4770
|
+
}, z.core.$strict>>>;
|
|
4771
|
+
}, z.core.$strict>>;
|
|
3561
4772
|
}, z.core.$strict>, z.ZodObject<{
|
|
3562
4773
|
kind: z.ZodLiteral<"github">;
|
|
3563
4774
|
repository: z.ZodObject<{
|
|
@@ -3570,6 +4781,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3570
4781
|
name: z.ZodOptional<z.ZodString>;
|
|
3571
4782
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3572
4783
|
byteLength: z.ZodNumber;
|
|
4784
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4785
|
+
kind: z.ZodString;
|
|
4786
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4787
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4788
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4789
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4790
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4791
|
+
expression: z.ZodString;
|
|
4792
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4793
|
+
kind: z.ZodLiteral<"custom">;
|
|
4794
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4795
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4796
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4797
|
+
}, z.core.$strict>], "kind">>;
|
|
4798
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4799
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4800
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4801
|
+
kind: z.ZodEnum<{
|
|
4802
|
+
normalization: "normalization";
|
|
4803
|
+
transformation: "transformation";
|
|
4804
|
+
}>;
|
|
4805
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4806
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4807
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4808
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4809
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4810
|
+
}, z.core.$strict>>>;
|
|
4811
|
+
}, z.core.$strict>>;
|
|
3573
4812
|
}, z.core.$strict>], "kind">>>;
|
|
3574
4813
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3575
4814
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3577,6 +4816,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3577
4816
|
content: z.ZodString;
|
|
3578
4817
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3579
4818
|
byteLength: z.ZodNumber;
|
|
4819
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4820
|
+
kind: z.ZodString;
|
|
4821
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4822
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4823
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4824
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4825
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4826
|
+
expression: z.ZodString;
|
|
4827
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4828
|
+
kind: z.ZodLiteral<"custom">;
|
|
4829
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4830
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4831
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4832
|
+
}, z.core.$strict>], "kind">>;
|
|
4833
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4834
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4835
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4836
|
+
kind: z.ZodEnum<{
|
|
4837
|
+
normalization: "normalization";
|
|
4838
|
+
transformation: "transformation";
|
|
4839
|
+
}>;
|
|
4840
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4841
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4842
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4843
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4844
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4845
|
+
}, z.core.$strict>>>;
|
|
4846
|
+
}, z.core.$strict>>;
|
|
3580
4847
|
}, z.core.$strict>, z.ZodObject<{
|
|
3581
4848
|
kind: z.ZodLiteral<"github">;
|
|
3582
4849
|
repository: z.ZodObject<{
|
|
@@ -3589,6 +4856,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3589
4856
|
name: z.ZodOptional<z.ZodString>;
|
|
3590
4857
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3591
4858
|
byteLength: z.ZodNumber;
|
|
4859
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4860
|
+
kind: z.ZodString;
|
|
4861
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4862
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4863
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4864
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4865
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4866
|
+
expression: z.ZodString;
|
|
4867
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4868
|
+
kind: z.ZodLiteral<"custom">;
|
|
4869
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4870
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4871
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4872
|
+
}, z.core.$strict>], "kind">>;
|
|
4873
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4874
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4875
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4876
|
+
kind: z.ZodEnum<{
|
|
4877
|
+
normalization: "normalization";
|
|
4878
|
+
transformation: "transformation";
|
|
4879
|
+
}>;
|
|
4880
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4881
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4882
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4883
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4884
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4885
|
+
}, z.core.$strict>>>;
|
|
4886
|
+
}, z.core.$strict>>;
|
|
3592
4887
|
}, z.core.$strict>], "kind">]>>;
|
|
3593
4888
|
failOnError: z.ZodLiteral<true>;
|
|
3594
4889
|
}, z.core.$strict>>;
|
|
@@ -3608,16 +4903,8 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3608
4903
|
}, z.core.$strict>>>>;
|
|
3609
4904
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3610
4905
|
prompt: z.ZodOptional<z.ZodString>;
|
|
3611
|
-
permissions: z.ZodOptional<z.
|
|
3612
|
-
|
|
3613
|
-
ask: "ask";
|
|
3614
|
-
deny: "deny";
|
|
3615
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
3616
|
-
allow: "allow";
|
|
3617
|
-
ask: "ask";
|
|
3618
|
-
deny: "deny";
|
|
3619
|
-
}>>]>>>;
|
|
3620
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4906
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
4907
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
3621
4908
|
description: z.ZodOptional<z.ZodString>;
|
|
3622
4909
|
model: z.ZodOptional<z.ZodString>;
|
|
3623
4910
|
}, z.core.$strict>>>;
|
|
@@ -4306,11 +5593,10 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
4306
5593
|
}, z.core.$strict>;
|
|
4307
5594
|
}, z.core.$strict>;
|
|
4308
5595
|
profileActivation: z.ZodObject<{
|
|
4309
|
-
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
material: z.ZodType<{
|
|
5596
|
+
profilePlan: z.ZodType<{
|
|
5597
|
+
kind: "agent-profile-workspace-plan";
|
|
5598
|
+
digest: `sha256:${string}`;
|
|
5599
|
+
material: {
|
|
4314
5600
|
sourceProfileDigest: `sha256:${string}`;
|
|
4315
5601
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
4316
5602
|
files: {
|
|
@@ -4334,7 +5620,30 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
4334
5620
|
kind: "public";
|
|
4335
5621
|
value: string;
|
|
4336
5622
|
} | undefined;
|
|
4337
|
-
}
|
|
5623
|
+
};
|
|
5624
|
+
artifact: {
|
|
5625
|
+
locator: {
|
|
5626
|
+
kind: "s3";
|
|
5627
|
+
bucket: string;
|
|
5628
|
+
key: string;
|
|
5629
|
+
region?: string | undefined;
|
|
5630
|
+
} | {
|
|
5631
|
+
kind: "ipfs";
|
|
5632
|
+
cid: string;
|
|
5633
|
+
path?: string | undefined;
|
|
5634
|
+
};
|
|
5635
|
+
sha256: `sha256:${string}`;
|
|
5636
|
+
byteLength: number;
|
|
5637
|
+
} | {
|
|
5638
|
+
encoding: "base64";
|
|
5639
|
+
content: string;
|
|
5640
|
+
sha256: `sha256:${string}`;
|
|
5641
|
+
byteLength: number;
|
|
5642
|
+
};
|
|
5643
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
5644
|
+
kind: "agent-profile-workspace-plan";
|
|
5645
|
+
digest: `sha256:${string}`;
|
|
5646
|
+
material: {
|
|
4338
5647
|
sourceProfileDigest: `sha256:${string}`;
|
|
4339
5648
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
4340
5649
|
files: {
|
|
@@ -4358,33 +5667,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
4358
5667
|
kind: "public";
|
|
4359
5668
|
value: string;
|
|
4360
5669
|
} | undefined;
|
|
4361
|
-
}
|
|
4362
|
-
artifact:
|
|
4363
|
-
locator:
|
|
4364
|
-
kind:
|
|
4365
|
-
bucket:
|
|
4366
|
-
key:
|
|
4367
|
-
region
|
|
4368
|
-
}
|
|
4369
|
-
kind:
|
|
4370
|
-
cid:
|
|
4371
|
-
path
|
|
4372
|
-
}
|
|
4373
|
-
sha256:
|
|
4374
|
-
byteLength:
|
|
4375
|
-
}
|
|
4376
|
-
encoding:
|
|
4377
|
-
content:
|
|
4378
|
-
sha256:
|
|
4379
|
-
byteLength:
|
|
4380
|
-
}
|
|
4381
|
-
},
|
|
5670
|
+
};
|
|
5671
|
+
artifact: {
|
|
5672
|
+
locator: {
|
|
5673
|
+
kind: "s3";
|
|
5674
|
+
bucket: string;
|
|
5675
|
+
key: string;
|
|
5676
|
+
region?: string | undefined;
|
|
5677
|
+
} | {
|
|
5678
|
+
kind: "ipfs";
|
|
5679
|
+
cid: string;
|
|
5680
|
+
path?: string | undefined;
|
|
5681
|
+
};
|
|
5682
|
+
sha256: `sha256:${string}`;
|
|
5683
|
+
byteLength: number;
|
|
5684
|
+
} | {
|
|
5685
|
+
encoding: "base64";
|
|
5686
|
+
content: string;
|
|
5687
|
+
sha256: `sha256:${string}`;
|
|
5688
|
+
byteLength: number;
|
|
5689
|
+
};
|
|
5690
|
+
}, unknown>>;
|
|
4382
5691
|
files: z.ZodArray<z.ZodObject<{
|
|
4383
5692
|
path: z.ZodString;
|
|
4384
5693
|
mode: z.ZodNumber;
|
|
4385
5694
|
content: z.ZodString;
|
|
4386
5695
|
}, z.core.$strict>>;
|
|
4387
5696
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
5697
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
4388
5698
|
}, z.core.$strict>;
|
|
4389
5699
|
executionPlan: z.ZodObject<{
|
|
4390
5700
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -5661,11 +6971,10 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5661
6971
|
}, z.core.$strict>;
|
|
5662
6972
|
}, z.core.$strict>;
|
|
5663
6973
|
profileActivation: z.ZodObject<{
|
|
5664
|
-
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
material: z.ZodType<{
|
|
6974
|
+
profilePlan: z.ZodType<{
|
|
6975
|
+
kind: "agent-profile-workspace-plan";
|
|
6976
|
+
digest: `sha256:${string}`;
|
|
6977
|
+
material: {
|
|
5669
6978
|
sourceProfileDigest: `sha256:${string}`;
|
|
5670
6979
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
5671
6980
|
files: {
|
|
@@ -5689,7 +6998,30 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5689
6998
|
kind: "public";
|
|
5690
6999
|
value: string;
|
|
5691
7000
|
} | undefined;
|
|
5692
|
-
}
|
|
7001
|
+
};
|
|
7002
|
+
artifact: {
|
|
7003
|
+
locator: {
|
|
7004
|
+
kind: "s3";
|
|
7005
|
+
bucket: string;
|
|
7006
|
+
key: string;
|
|
7007
|
+
region?: string | undefined;
|
|
7008
|
+
} | {
|
|
7009
|
+
kind: "ipfs";
|
|
7010
|
+
cid: string;
|
|
7011
|
+
path?: string | undefined;
|
|
7012
|
+
};
|
|
7013
|
+
sha256: `sha256:${string}`;
|
|
7014
|
+
byteLength: number;
|
|
7015
|
+
} | {
|
|
7016
|
+
encoding: "base64";
|
|
7017
|
+
content: string;
|
|
7018
|
+
sha256: `sha256:${string}`;
|
|
7019
|
+
byteLength: number;
|
|
7020
|
+
};
|
|
7021
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
7022
|
+
kind: "agent-profile-workspace-plan";
|
|
7023
|
+
digest: `sha256:${string}`;
|
|
7024
|
+
material: {
|
|
5693
7025
|
sourceProfileDigest: `sha256:${string}`;
|
|
5694
7026
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
5695
7027
|
files: {
|
|
@@ -5713,33 +7045,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5713
7045
|
kind: "public";
|
|
5714
7046
|
value: string;
|
|
5715
7047
|
} | undefined;
|
|
5716
|
-
}
|
|
5717
|
-
artifact:
|
|
5718
|
-
locator:
|
|
5719
|
-
kind:
|
|
5720
|
-
bucket:
|
|
5721
|
-
key:
|
|
5722
|
-
region
|
|
5723
|
-
}
|
|
5724
|
-
kind:
|
|
5725
|
-
cid:
|
|
5726
|
-
path
|
|
5727
|
-
}
|
|
5728
|
-
sha256:
|
|
5729
|
-
byteLength:
|
|
5730
|
-
}
|
|
5731
|
-
encoding:
|
|
5732
|
-
content:
|
|
5733
|
-
sha256:
|
|
5734
|
-
byteLength:
|
|
5735
|
-
}
|
|
5736
|
-
},
|
|
7048
|
+
};
|
|
7049
|
+
artifact: {
|
|
7050
|
+
locator: {
|
|
7051
|
+
kind: "s3";
|
|
7052
|
+
bucket: string;
|
|
7053
|
+
key: string;
|
|
7054
|
+
region?: string | undefined;
|
|
7055
|
+
} | {
|
|
7056
|
+
kind: "ipfs";
|
|
7057
|
+
cid: string;
|
|
7058
|
+
path?: string | undefined;
|
|
7059
|
+
};
|
|
7060
|
+
sha256: `sha256:${string}`;
|
|
7061
|
+
byteLength: number;
|
|
7062
|
+
} | {
|
|
7063
|
+
encoding: "base64";
|
|
7064
|
+
content: string;
|
|
7065
|
+
sha256: `sha256:${string}`;
|
|
7066
|
+
byteLength: number;
|
|
7067
|
+
};
|
|
7068
|
+
}, unknown>>;
|
|
5737
7069
|
files: z.ZodArray<z.ZodObject<{
|
|
5738
7070
|
path: z.ZodString;
|
|
5739
7071
|
mode: z.ZodNumber;
|
|
5740
7072
|
content: z.ZodString;
|
|
5741
7073
|
}, z.core.$strict>>;
|
|
5742
7074
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7075
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
5743
7076
|
}, z.core.$strict>;
|
|
5744
7077
|
executionPlan: z.ZodObject<{
|
|
5745
7078
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -7220,25 +8553,13 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7220
8553
|
allow: "allow";
|
|
7221
8554
|
ask: "ask";
|
|
7222
8555
|
deny: "deny";
|
|
7223
|
-
}>, z.
|
|
7224
|
-
allow: "allow";
|
|
7225
|
-
ask: "ask";
|
|
7226
|
-
deny: "deny";
|
|
7227
|
-
}>>]>>>;
|
|
8556
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
7228
8557
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
7229
8558
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
7230
8559
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7231
8560
|
prompt: z.ZodOptional<z.ZodString>;
|
|
7232
|
-
permissions: z.ZodOptional<z.
|
|
7233
|
-
|
|
7234
|
-
ask: "ask";
|
|
7235
|
-
deny: "deny";
|
|
7236
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
7237
|
-
allow: "allow";
|
|
7238
|
-
ask: "ask";
|
|
7239
|
-
deny: "deny";
|
|
7240
|
-
}>>]>>>;
|
|
7241
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8561
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
8562
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
7242
8563
|
description: z.ZodOptional<z.ZodString>;
|
|
7243
8564
|
model: z.ZodOptional<z.ZodString>;
|
|
7244
8565
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7252,6 +8573,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7252
8573
|
content: z.ZodString;
|
|
7253
8574
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7254
8575
|
byteLength: z.ZodNumber;
|
|
8576
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8577
|
+
kind: z.ZodString;
|
|
8578
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8579
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8580
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8581
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8582
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8583
|
+
expression: z.ZodString;
|
|
8584
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8585
|
+
kind: z.ZodLiteral<"custom">;
|
|
8586
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8587
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8588
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8589
|
+
}, z.core.$strict>], "kind">>;
|
|
8590
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8591
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8592
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8593
|
+
kind: z.ZodEnum<{
|
|
8594
|
+
normalization: "normalization";
|
|
8595
|
+
transformation: "transformation";
|
|
8596
|
+
}>;
|
|
8597
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8598
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8599
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8600
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8601
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8602
|
+
}, z.core.$strict>>>;
|
|
8603
|
+
}, z.core.$strict>>;
|
|
7255
8604
|
}, z.core.$strict>, z.ZodObject<{
|
|
7256
8605
|
kind: z.ZodLiteral<"github">;
|
|
7257
8606
|
repository: z.ZodObject<{
|
|
@@ -7264,6 +8613,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7264
8613
|
name: z.ZodOptional<z.ZodString>;
|
|
7265
8614
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7266
8615
|
byteLength: z.ZodNumber;
|
|
8616
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8617
|
+
kind: z.ZodString;
|
|
8618
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8619
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8620
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8621
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8622
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8623
|
+
expression: z.ZodString;
|
|
8624
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8625
|
+
kind: z.ZodLiteral<"custom">;
|
|
8626
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8627
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8628
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8629
|
+
}, z.core.$strict>], "kind">>;
|
|
8630
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8631
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8632
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8633
|
+
kind: z.ZodEnum<{
|
|
8634
|
+
normalization: "normalization";
|
|
8635
|
+
transformation: "transformation";
|
|
8636
|
+
}>;
|
|
8637
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8638
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8639
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8640
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8641
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8642
|
+
}, z.core.$strict>>>;
|
|
8643
|
+
}, z.core.$strict>>;
|
|
7267
8644
|
}, z.core.$strict>], "kind">;
|
|
7268
8645
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
7269
8646
|
}, z.core.$strict>>>;
|
|
@@ -7273,6 +8650,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7273
8650
|
content: z.ZodString;
|
|
7274
8651
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7275
8652
|
byteLength: z.ZodNumber;
|
|
8653
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8654
|
+
kind: z.ZodString;
|
|
8655
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8656
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8657
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8658
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8659
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8660
|
+
expression: z.ZodString;
|
|
8661
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8662
|
+
kind: z.ZodLiteral<"custom">;
|
|
8663
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8664
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8665
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8666
|
+
}, z.core.$strict>], "kind">>;
|
|
8667
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8668
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8669
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8670
|
+
kind: z.ZodEnum<{
|
|
8671
|
+
normalization: "normalization";
|
|
8672
|
+
transformation: "transformation";
|
|
8673
|
+
}>;
|
|
8674
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8675
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8676
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8677
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8678
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8679
|
+
}, z.core.$strict>>>;
|
|
8680
|
+
}, z.core.$strict>>;
|
|
7276
8681
|
}, z.core.$strict>, z.ZodObject<{
|
|
7277
8682
|
kind: z.ZodLiteral<"github">;
|
|
7278
8683
|
repository: z.ZodObject<{
|
|
@@ -7285,6 +8690,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7285
8690
|
name: z.ZodOptional<z.ZodString>;
|
|
7286
8691
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7287
8692
|
byteLength: z.ZodNumber;
|
|
8693
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8694
|
+
kind: z.ZodString;
|
|
8695
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8696
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8697
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8698
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8699
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8700
|
+
expression: z.ZodString;
|
|
8701
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8702
|
+
kind: z.ZodLiteral<"custom">;
|
|
8703
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8704
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8705
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8706
|
+
}, z.core.$strict>], "kind">>;
|
|
8707
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8708
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8709
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8710
|
+
kind: z.ZodEnum<{
|
|
8711
|
+
normalization: "normalization";
|
|
8712
|
+
transformation: "transformation";
|
|
8713
|
+
}>;
|
|
8714
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8715
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8716
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8717
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8718
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8719
|
+
}, z.core.$strict>>>;
|
|
8720
|
+
}, z.core.$strict>>;
|
|
7288
8721
|
}, z.core.$strict>], "kind">>>;
|
|
7289
8722
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7290
8723
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7292,6 +8725,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7292
8725
|
content: z.ZodString;
|
|
7293
8726
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7294
8727
|
byteLength: z.ZodNumber;
|
|
8728
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8729
|
+
kind: z.ZodString;
|
|
8730
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8731
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8732
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8733
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8734
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8735
|
+
expression: z.ZodString;
|
|
8736
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8737
|
+
kind: z.ZodLiteral<"custom">;
|
|
8738
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8739
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8740
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8741
|
+
}, z.core.$strict>], "kind">>;
|
|
8742
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8743
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8744
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8745
|
+
kind: z.ZodEnum<{
|
|
8746
|
+
normalization: "normalization";
|
|
8747
|
+
transformation: "transformation";
|
|
8748
|
+
}>;
|
|
8749
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8750
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8751
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8752
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8753
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8754
|
+
}, z.core.$strict>>>;
|
|
8755
|
+
}, z.core.$strict>>;
|
|
7295
8756
|
}, z.core.$strict>, z.ZodObject<{
|
|
7296
8757
|
kind: z.ZodLiteral<"github">;
|
|
7297
8758
|
repository: z.ZodObject<{
|
|
@@ -7304,6 +8765,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7304
8765
|
name: z.ZodOptional<z.ZodString>;
|
|
7305
8766
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7306
8767
|
byteLength: z.ZodNumber;
|
|
8768
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8769
|
+
kind: z.ZodString;
|
|
8770
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8771
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8772
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8773
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8774
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8775
|
+
expression: z.ZodString;
|
|
8776
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8777
|
+
kind: z.ZodLiteral<"custom">;
|
|
8778
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8779
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8780
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8781
|
+
}, z.core.$strict>], "kind">>;
|
|
8782
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8783
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8784
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8785
|
+
kind: z.ZodEnum<{
|
|
8786
|
+
normalization: "normalization";
|
|
8787
|
+
transformation: "transformation";
|
|
8788
|
+
}>;
|
|
8789
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8790
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8791
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8792
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8793
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8794
|
+
}, z.core.$strict>>>;
|
|
8795
|
+
}, z.core.$strict>>;
|
|
7307
8796
|
}, z.core.$strict>], "kind">>>;
|
|
7308
8797
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7309
8798
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7311,6 +8800,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7311
8800
|
content: z.ZodString;
|
|
7312
8801
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7313
8802
|
byteLength: z.ZodNumber;
|
|
8803
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8804
|
+
kind: z.ZodString;
|
|
8805
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8806
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8807
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8808
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8809
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8810
|
+
expression: z.ZodString;
|
|
8811
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8812
|
+
kind: z.ZodLiteral<"custom">;
|
|
8813
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8814
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8815
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8816
|
+
}, z.core.$strict>], "kind">>;
|
|
8817
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8818
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8819
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8820
|
+
kind: z.ZodEnum<{
|
|
8821
|
+
normalization: "normalization";
|
|
8822
|
+
transformation: "transformation";
|
|
8823
|
+
}>;
|
|
8824
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8825
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8826
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8827
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8828
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8829
|
+
}, z.core.$strict>>>;
|
|
8830
|
+
}, z.core.$strict>>;
|
|
7314
8831
|
}, z.core.$strict>, z.ZodObject<{
|
|
7315
8832
|
kind: z.ZodLiteral<"github">;
|
|
7316
8833
|
repository: z.ZodObject<{
|
|
@@ -7323,6 +8840,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7323
8840
|
name: z.ZodOptional<z.ZodString>;
|
|
7324
8841
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7325
8842
|
byteLength: z.ZodNumber;
|
|
8843
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8844
|
+
kind: z.ZodString;
|
|
8845
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8846
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8847
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8848
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8849
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8850
|
+
expression: z.ZodString;
|
|
8851
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8852
|
+
kind: z.ZodLiteral<"custom">;
|
|
8853
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8854
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8855
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8856
|
+
}, z.core.$strict>], "kind">>;
|
|
8857
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8858
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8859
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8860
|
+
kind: z.ZodEnum<{
|
|
8861
|
+
normalization: "normalization";
|
|
8862
|
+
transformation: "transformation";
|
|
8863
|
+
}>;
|
|
8864
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8865
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8866
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8867
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8868
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8869
|
+
}, z.core.$strict>>>;
|
|
8870
|
+
}, z.core.$strict>>;
|
|
7326
8871
|
}, z.core.$strict>], "kind">>>;
|
|
7327
8872
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7328
8873
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7330,6 +8875,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7330
8875
|
content: z.ZodString;
|
|
7331
8876
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7332
8877
|
byteLength: z.ZodNumber;
|
|
8878
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8879
|
+
kind: z.ZodString;
|
|
8880
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8881
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8882
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8883
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8884
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8885
|
+
expression: z.ZodString;
|
|
8886
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8887
|
+
kind: z.ZodLiteral<"custom">;
|
|
8888
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8889
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8890
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8891
|
+
}, z.core.$strict>], "kind">>;
|
|
8892
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8893
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8894
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8895
|
+
kind: z.ZodEnum<{
|
|
8896
|
+
normalization: "normalization";
|
|
8897
|
+
transformation: "transformation";
|
|
8898
|
+
}>;
|
|
8899
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8900
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8901
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8902
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8903
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8904
|
+
}, z.core.$strict>>>;
|
|
8905
|
+
}, z.core.$strict>>;
|
|
7333
8906
|
}, z.core.$strict>, z.ZodObject<{
|
|
7334
8907
|
kind: z.ZodLiteral<"github">;
|
|
7335
8908
|
repository: z.ZodObject<{
|
|
@@ -7342,6 +8915,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7342
8915
|
name: z.ZodOptional<z.ZodString>;
|
|
7343
8916
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7344
8917
|
byteLength: z.ZodNumber;
|
|
8918
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8919
|
+
kind: z.ZodString;
|
|
8920
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8921
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8922
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8923
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8924
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8925
|
+
expression: z.ZodString;
|
|
8926
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8927
|
+
kind: z.ZodLiteral<"custom">;
|
|
8928
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8929
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8930
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8931
|
+
}, z.core.$strict>], "kind">>;
|
|
8932
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8933
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8934
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8935
|
+
kind: z.ZodEnum<{
|
|
8936
|
+
normalization: "normalization";
|
|
8937
|
+
transformation: "transformation";
|
|
8938
|
+
}>;
|
|
8939
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8940
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8941
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8942
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8943
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8944
|
+
}, z.core.$strict>>>;
|
|
8945
|
+
}, z.core.$strict>>;
|
|
7345
8946
|
}, z.core.$strict>], "kind">>>;
|
|
7346
8947
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7347
8948
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7349,6 +8950,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7349
8950
|
content: z.ZodString;
|
|
7350
8951
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7351
8952
|
byteLength: z.ZodNumber;
|
|
8953
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8954
|
+
kind: z.ZodString;
|
|
8955
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8956
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8957
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8958
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8959
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8960
|
+
expression: z.ZodString;
|
|
8961
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8962
|
+
kind: z.ZodLiteral<"custom">;
|
|
8963
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8964
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8965
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8966
|
+
}, z.core.$strict>], "kind">>;
|
|
8967
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8968
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8969
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8970
|
+
kind: z.ZodEnum<{
|
|
8971
|
+
normalization: "normalization";
|
|
8972
|
+
transformation: "transformation";
|
|
8973
|
+
}>;
|
|
8974
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8975
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8976
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8977
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8978
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8979
|
+
}, z.core.$strict>>>;
|
|
8980
|
+
}, z.core.$strict>>;
|
|
7352
8981
|
}, z.core.$strict>, z.ZodObject<{
|
|
7353
8982
|
kind: z.ZodLiteral<"github">;
|
|
7354
8983
|
repository: z.ZodObject<{
|
|
@@ -7361,6 +8990,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7361
8990
|
name: z.ZodOptional<z.ZodString>;
|
|
7362
8991
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7363
8992
|
byteLength: z.ZodNumber;
|
|
8993
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8994
|
+
kind: z.ZodString;
|
|
8995
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8996
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8997
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8998
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8999
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9000
|
+
expression: z.ZodString;
|
|
9001
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9002
|
+
kind: z.ZodLiteral<"custom">;
|
|
9003
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9004
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9005
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9006
|
+
}, z.core.$strict>], "kind">>;
|
|
9007
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9008
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9009
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9010
|
+
kind: z.ZodEnum<{
|
|
9011
|
+
normalization: "normalization";
|
|
9012
|
+
transformation: "transformation";
|
|
9013
|
+
}>;
|
|
9014
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9015
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9016
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9017
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9018
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9019
|
+
}, z.core.$strict>>>;
|
|
9020
|
+
}, z.core.$strict>>;
|
|
7364
9021
|
}, z.core.$strict>], "kind">]>>;
|
|
7365
9022
|
failOnError: z.ZodLiteral<true>;
|
|
7366
9023
|
}, z.core.$strict>>;
|
|
@@ -7380,16 +9037,8 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7380
9037
|
}, z.core.$strict>>>>;
|
|
7381
9038
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7382
9039
|
prompt: z.ZodOptional<z.ZodString>;
|
|
7383
|
-
permissions: z.ZodOptional<z.
|
|
7384
|
-
|
|
7385
|
-
ask: "ask";
|
|
7386
|
-
deny: "deny";
|
|
7387
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
7388
|
-
allow: "allow";
|
|
7389
|
-
ask: "ask";
|
|
7390
|
-
deny: "deny";
|
|
7391
|
-
}>>]>>>;
|
|
7392
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9040
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
9041
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
7393
9042
|
description: z.ZodOptional<z.ZodString>;
|
|
7394
9043
|
model: z.ZodOptional<z.ZodString>;
|
|
7395
9044
|
}, z.core.$strict>>>;
|
|
@@ -7727,25 +9376,13 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7727
9376
|
allow: "allow";
|
|
7728
9377
|
ask: "ask";
|
|
7729
9378
|
deny: "deny";
|
|
7730
|
-
}>, z.
|
|
7731
|
-
allow: "allow";
|
|
7732
|
-
ask: "ask";
|
|
7733
|
-
deny: "deny";
|
|
7734
|
-
}>>]>>>;
|
|
9379
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
7735
9380
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
7736
9381
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./agent-candidate.js").AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<import("./agent-candidate.js").AgentCandidateMcpServer, unknown>>>>;
|
|
7737
9382
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7738
9383
|
prompt: z.ZodOptional<z.ZodString>;
|
|
7739
|
-
permissions: z.ZodOptional<z.
|
|
7740
|
-
|
|
7741
|
-
ask: "ask";
|
|
7742
|
-
deny: "deny";
|
|
7743
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
7744
|
-
allow: "allow";
|
|
7745
|
-
ask: "ask";
|
|
7746
|
-
deny: "deny";
|
|
7747
|
-
}>>]>>>;
|
|
7748
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9384
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
9385
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
7749
9386
|
description: z.ZodOptional<z.ZodString>;
|
|
7750
9387
|
model: z.ZodOptional<z.ZodString>;
|
|
7751
9388
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7759,6 +9396,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7759
9396
|
content: z.ZodString;
|
|
7760
9397
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7761
9398
|
byteLength: z.ZodNumber;
|
|
9399
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9400
|
+
kind: z.ZodString;
|
|
9401
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9402
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9403
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9404
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9405
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9406
|
+
expression: z.ZodString;
|
|
9407
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9408
|
+
kind: z.ZodLiteral<"custom">;
|
|
9409
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9410
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9411
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9412
|
+
}, z.core.$strict>], "kind">>;
|
|
9413
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9414
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9415
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9416
|
+
kind: z.ZodEnum<{
|
|
9417
|
+
normalization: "normalization";
|
|
9418
|
+
transformation: "transformation";
|
|
9419
|
+
}>;
|
|
9420
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9421
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9422
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9423
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9424
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9425
|
+
}, z.core.$strict>>>;
|
|
9426
|
+
}, z.core.$strict>>;
|
|
7762
9427
|
}, z.core.$strict>, z.ZodObject<{
|
|
7763
9428
|
kind: z.ZodLiteral<"github">;
|
|
7764
9429
|
repository: z.ZodObject<{
|
|
@@ -7771,6 +9436,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7771
9436
|
name: z.ZodOptional<z.ZodString>;
|
|
7772
9437
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7773
9438
|
byteLength: z.ZodNumber;
|
|
9439
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9440
|
+
kind: z.ZodString;
|
|
9441
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9442
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9443
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9444
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9445
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9446
|
+
expression: z.ZodString;
|
|
9447
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9448
|
+
kind: z.ZodLiteral<"custom">;
|
|
9449
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9450
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9451
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9452
|
+
}, z.core.$strict>], "kind">>;
|
|
9453
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9454
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9455
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9456
|
+
kind: z.ZodEnum<{
|
|
9457
|
+
normalization: "normalization";
|
|
9458
|
+
transformation: "transformation";
|
|
9459
|
+
}>;
|
|
9460
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9461
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9462
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9463
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9464
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9465
|
+
}, z.core.$strict>>>;
|
|
9466
|
+
}, z.core.$strict>>;
|
|
7774
9467
|
}, z.core.$strict>], "kind">;
|
|
7775
9468
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
7776
9469
|
}, z.core.$strict>>>;
|
|
@@ -7780,6 +9473,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7780
9473
|
content: z.ZodString;
|
|
7781
9474
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7782
9475
|
byteLength: z.ZodNumber;
|
|
9476
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9477
|
+
kind: z.ZodString;
|
|
9478
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9479
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9480
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9481
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9482
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9483
|
+
expression: z.ZodString;
|
|
9484
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9485
|
+
kind: z.ZodLiteral<"custom">;
|
|
9486
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9487
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9488
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9489
|
+
}, z.core.$strict>], "kind">>;
|
|
9490
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9491
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9492
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9493
|
+
kind: z.ZodEnum<{
|
|
9494
|
+
normalization: "normalization";
|
|
9495
|
+
transformation: "transformation";
|
|
9496
|
+
}>;
|
|
9497
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9498
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9499
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9500
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9501
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9502
|
+
}, z.core.$strict>>>;
|
|
9503
|
+
}, z.core.$strict>>;
|
|
7783
9504
|
}, z.core.$strict>, z.ZodObject<{
|
|
7784
9505
|
kind: z.ZodLiteral<"github">;
|
|
7785
9506
|
repository: z.ZodObject<{
|
|
@@ -7792,6 +9513,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7792
9513
|
name: z.ZodOptional<z.ZodString>;
|
|
7793
9514
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7794
9515
|
byteLength: z.ZodNumber;
|
|
9516
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9517
|
+
kind: z.ZodString;
|
|
9518
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9519
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9520
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9521
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9522
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9523
|
+
expression: z.ZodString;
|
|
9524
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9525
|
+
kind: z.ZodLiteral<"custom">;
|
|
9526
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9527
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9528
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9529
|
+
}, z.core.$strict>], "kind">>;
|
|
9530
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9531
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9532
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9533
|
+
kind: z.ZodEnum<{
|
|
9534
|
+
normalization: "normalization";
|
|
9535
|
+
transformation: "transformation";
|
|
9536
|
+
}>;
|
|
9537
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9538
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9539
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9540
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9541
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9542
|
+
}, z.core.$strict>>>;
|
|
9543
|
+
}, z.core.$strict>>;
|
|
7795
9544
|
}, z.core.$strict>], "kind">>>;
|
|
7796
9545
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7797
9546
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7799,6 +9548,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7799
9548
|
content: z.ZodString;
|
|
7800
9549
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7801
9550
|
byteLength: z.ZodNumber;
|
|
9551
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9552
|
+
kind: z.ZodString;
|
|
9553
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9554
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9555
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9556
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9557
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9558
|
+
expression: z.ZodString;
|
|
9559
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9560
|
+
kind: z.ZodLiteral<"custom">;
|
|
9561
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9562
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9563
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9564
|
+
}, z.core.$strict>], "kind">>;
|
|
9565
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9566
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9567
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9568
|
+
kind: z.ZodEnum<{
|
|
9569
|
+
normalization: "normalization";
|
|
9570
|
+
transformation: "transformation";
|
|
9571
|
+
}>;
|
|
9572
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9573
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9574
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9575
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9576
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9577
|
+
}, z.core.$strict>>>;
|
|
9578
|
+
}, z.core.$strict>>;
|
|
7802
9579
|
}, z.core.$strict>, z.ZodObject<{
|
|
7803
9580
|
kind: z.ZodLiteral<"github">;
|
|
7804
9581
|
repository: z.ZodObject<{
|
|
@@ -7811,6 +9588,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7811
9588
|
name: z.ZodOptional<z.ZodString>;
|
|
7812
9589
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7813
9590
|
byteLength: z.ZodNumber;
|
|
9591
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9592
|
+
kind: z.ZodString;
|
|
9593
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9594
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9595
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9596
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9597
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9598
|
+
expression: z.ZodString;
|
|
9599
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9600
|
+
kind: z.ZodLiteral<"custom">;
|
|
9601
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9602
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9603
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9604
|
+
}, z.core.$strict>], "kind">>;
|
|
9605
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9606
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9607
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9608
|
+
kind: z.ZodEnum<{
|
|
9609
|
+
normalization: "normalization";
|
|
9610
|
+
transformation: "transformation";
|
|
9611
|
+
}>;
|
|
9612
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9613
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9614
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9615
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9616
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9617
|
+
}, z.core.$strict>>>;
|
|
9618
|
+
}, z.core.$strict>>;
|
|
7814
9619
|
}, z.core.$strict>], "kind">>>;
|
|
7815
9620
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7816
9621
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7818,6 +9623,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7818
9623
|
content: z.ZodString;
|
|
7819
9624
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7820
9625
|
byteLength: z.ZodNumber;
|
|
9626
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9627
|
+
kind: z.ZodString;
|
|
9628
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9629
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9630
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9631
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9632
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9633
|
+
expression: z.ZodString;
|
|
9634
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9635
|
+
kind: z.ZodLiteral<"custom">;
|
|
9636
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9637
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9638
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9639
|
+
}, z.core.$strict>], "kind">>;
|
|
9640
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9641
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9642
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9643
|
+
kind: z.ZodEnum<{
|
|
9644
|
+
normalization: "normalization";
|
|
9645
|
+
transformation: "transformation";
|
|
9646
|
+
}>;
|
|
9647
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9648
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9649
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9650
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9651
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9652
|
+
}, z.core.$strict>>>;
|
|
9653
|
+
}, z.core.$strict>>;
|
|
7821
9654
|
}, z.core.$strict>, z.ZodObject<{
|
|
7822
9655
|
kind: z.ZodLiteral<"github">;
|
|
7823
9656
|
repository: z.ZodObject<{
|
|
@@ -7830,6 +9663,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7830
9663
|
name: z.ZodOptional<z.ZodString>;
|
|
7831
9664
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7832
9665
|
byteLength: z.ZodNumber;
|
|
9666
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9667
|
+
kind: z.ZodString;
|
|
9668
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9669
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9670
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9671
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9672
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9673
|
+
expression: z.ZodString;
|
|
9674
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9675
|
+
kind: z.ZodLiteral<"custom">;
|
|
9676
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9677
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9678
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9679
|
+
}, z.core.$strict>], "kind">>;
|
|
9680
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9681
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9682
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9683
|
+
kind: z.ZodEnum<{
|
|
9684
|
+
normalization: "normalization";
|
|
9685
|
+
transformation: "transformation";
|
|
9686
|
+
}>;
|
|
9687
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9688
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9689
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9690
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9691
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9692
|
+
}, z.core.$strict>>>;
|
|
9693
|
+
}, z.core.$strict>>;
|
|
7833
9694
|
}, z.core.$strict>], "kind">>>;
|
|
7834
9695
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7835
9696
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7837,6 +9698,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7837
9698
|
content: z.ZodString;
|
|
7838
9699
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7839
9700
|
byteLength: z.ZodNumber;
|
|
9701
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9702
|
+
kind: z.ZodString;
|
|
9703
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9704
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9705
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9706
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9707
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9708
|
+
expression: z.ZodString;
|
|
9709
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9710
|
+
kind: z.ZodLiteral<"custom">;
|
|
9711
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9712
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9713
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9714
|
+
}, z.core.$strict>], "kind">>;
|
|
9715
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9716
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9717
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9718
|
+
kind: z.ZodEnum<{
|
|
9719
|
+
normalization: "normalization";
|
|
9720
|
+
transformation: "transformation";
|
|
9721
|
+
}>;
|
|
9722
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9723
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9724
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9725
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9726
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9727
|
+
}, z.core.$strict>>>;
|
|
9728
|
+
}, z.core.$strict>>;
|
|
7840
9729
|
}, z.core.$strict>, z.ZodObject<{
|
|
7841
9730
|
kind: z.ZodLiteral<"github">;
|
|
7842
9731
|
repository: z.ZodObject<{
|
|
@@ -7849,6 +9738,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7849
9738
|
name: z.ZodOptional<z.ZodString>;
|
|
7850
9739
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7851
9740
|
byteLength: z.ZodNumber;
|
|
9741
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9742
|
+
kind: z.ZodString;
|
|
9743
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9744
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9745
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9746
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9747
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9748
|
+
expression: z.ZodString;
|
|
9749
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9750
|
+
kind: z.ZodLiteral<"custom">;
|
|
9751
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9752
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9753
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9754
|
+
}, z.core.$strict>], "kind">>;
|
|
9755
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9756
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9757
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9758
|
+
kind: z.ZodEnum<{
|
|
9759
|
+
normalization: "normalization";
|
|
9760
|
+
transformation: "transformation";
|
|
9761
|
+
}>;
|
|
9762
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9763
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9764
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9765
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9766
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9767
|
+
}, z.core.$strict>>>;
|
|
9768
|
+
}, z.core.$strict>>;
|
|
7852
9769
|
}, z.core.$strict>], "kind">>>;
|
|
7853
9770
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7854
9771
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7856,6 +9773,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7856
9773
|
content: z.ZodString;
|
|
7857
9774
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7858
9775
|
byteLength: z.ZodNumber;
|
|
9776
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9777
|
+
kind: z.ZodString;
|
|
9778
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9779
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9780
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9781
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9782
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9783
|
+
expression: z.ZodString;
|
|
9784
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9785
|
+
kind: z.ZodLiteral<"custom">;
|
|
9786
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9787
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9788
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9789
|
+
}, z.core.$strict>], "kind">>;
|
|
9790
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9791
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9792
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9793
|
+
kind: z.ZodEnum<{
|
|
9794
|
+
normalization: "normalization";
|
|
9795
|
+
transformation: "transformation";
|
|
9796
|
+
}>;
|
|
9797
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9798
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9799
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9800
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9801
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9802
|
+
}, z.core.$strict>>>;
|
|
9803
|
+
}, z.core.$strict>>;
|
|
7859
9804
|
}, z.core.$strict>, z.ZodObject<{
|
|
7860
9805
|
kind: z.ZodLiteral<"github">;
|
|
7861
9806
|
repository: z.ZodObject<{
|
|
@@ -7868,6 +9813,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7868
9813
|
name: z.ZodOptional<z.ZodString>;
|
|
7869
9814
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7870
9815
|
byteLength: z.ZodNumber;
|
|
9816
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9817
|
+
kind: z.ZodString;
|
|
9818
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9819
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9820
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9821
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9822
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9823
|
+
expression: z.ZodString;
|
|
9824
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9825
|
+
kind: z.ZodLiteral<"custom">;
|
|
9826
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9827
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9828
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9829
|
+
}, z.core.$strict>], "kind">>;
|
|
9830
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9831
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9832
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9833
|
+
kind: z.ZodEnum<{
|
|
9834
|
+
normalization: "normalization";
|
|
9835
|
+
transformation: "transformation";
|
|
9836
|
+
}>;
|
|
9837
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9838
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9839
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9840
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9841
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9842
|
+
}, z.core.$strict>>>;
|
|
9843
|
+
}, z.core.$strict>>;
|
|
7871
9844
|
}, z.core.$strict>], "kind">]>>;
|
|
7872
9845
|
failOnError: z.ZodLiteral<true>;
|
|
7873
9846
|
}, z.core.$strict>>;
|
|
@@ -7887,16 +9860,8 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7887
9860
|
}, z.core.$strict>>>>;
|
|
7888
9861
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7889
9862
|
prompt: z.ZodOptional<z.ZodString>;
|
|
7890
|
-
permissions: z.ZodOptional<z.
|
|
7891
|
-
|
|
7892
|
-
ask: "ask";
|
|
7893
|
-
deny: "deny";
|
|
7894
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
7895
|
-
allow: "allow";
|
|
7896
|
-
ask: "ask";
|
|
7897
|
-
deny: "deny";
|
|
7898
|
-
}>>]>>>;
|
|
7899
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
9863
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
9864
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
7900
9865
|
description: z.ZodOptional<z.ZodString>;
|
|
7901
9866
|
model: z.ZodOptional<z.ZodString>;
|
|
7902
9867
|
}, z.core.$strict>>>;
|
|
@@ -8585,11 +10550,10 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
8585
10550
|
}, z.core.$strict>;
|
|
8586
10551
|
}, z.core.$strict>;
|
|
8587
10552
|
profileActivation: z.ZodObject<{
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
8592
|
-
material: z.ZodType<{
|
|
10553
|
+
profilePlan: z.ZodType<{
|
|
10554
|
+
kind: "agent-profile-workspace-plan";
|
|
10555
|
+
digest: `sha256:${string}`;
|
|
10556
|
+
material: {
|
|
8593
10557
|
sourceProfileDigest: `sha256:${string}`;
|
|
8594
10558
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
8595
10559
|
files: {
|
|
@@ -8613,7 +10577,30 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
8613
10577
|
kind: "public";
|
|
8614
10578
|
value: string;
|
|
8615
10579
|
} | undefined;
|
|
8616
|
-
}
|
|
10580
|
+
};
|
|
10581
|
+
artifact: {
|
|
10582
|
+
locator: {
|
|
10583
|
+
kind: "s3";
|
|
10584
|
+
bucket: string;
|
|
10585
|
+
key: string;
|
|
10586
|
+
region?: string | undefined;
|
|
10587
|
+
} | {
|
|
10588
|
+
kind: "ipfs";
|
|
10589
|
+
cid: string;
|
|
10590
|
+
path?: string | undefined;
|
|
10591
|
+
};
|
|
10592
|
+
sha256: `sha256:${string}`;
|
|
10593
|
+
byteLength: number;
|
|
10594
|
+
} | {
|
|
10595
|
+
encoding: "base64";
|
|
10596
|
+
content: string;
|
|
10597
|
+
sha256: `sha256:${string}`;
|
|
10598
|
+
byteLength: number;
|
|
10599
|
+
};
|
|
10600
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
10601
|
+
kind: "agent-profile-workspace-plan";
|
|
10602
|
+
digest: `sha256:${string}`;
|
|
10603
|
+
material: {
|
|
8617
10604
|
sourceProfileDigest: `sha256:${string}`;
|
|
8618
10605
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
8619
10606
|
files: {
|
|
@@ -8637,33 +10624,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
8637
10624
|
kind: "public";
|
|
8638
10625
|
value: string;
|
|
8639
10626
|
} | undefined;
|
|
8640
|
-
}
|
|
8641
|
-
artifact:
|
|
8642
|
-
locator:
|
|
8643
|
-
kind:
|
|
8644
|
-
bucket:
|
|
8645
|
-
key:
|
|
8646
|
-
region
|
|
8647
|
-
}
|
|
8648
|
-
kind:
|
|
8649
|
-
cid:
|
|
8650
|
-
path
|
|
8651
|
-
}
|
|
8652
|
-
sha256:
|
|
8653
|
-
byteLength:
|
|
8654
|
-
}
|
|
8655
|
-
encoding:
|
|
8656
|
-
content:
|
|
8657
|
-
sha256:
|
|
8658
|
-
byteLength:
|
|
8659
|
-
}
|
|
8660
|
-
},
|
|
10627
|
+
};
|
|
10628
|
+
artifact: {
|
|
10629
|
+
locator: {
|
|
10630
|
+
kind: "s3";
|
|
10631
|
+
bucket: string;
|
|
10632
|
+
key: string;
|
|
10633
|
+
region?: string | undefined;
|
|
10634
|
+
} | {
|
|
10635
|
+
kind: "ipfs";
|
|
10636
|
+
cid: string;
|
|
10637
|
+
path?: string | undefined;
|
|
10638
|
+
};
|
|
10639
|
+
sha256: `sha256:${string}`;
|
|
10640
|
+
byteLength: number;
|
|
10641
|
+
} | {
|
|
10642
|
+
encoding: "base64";
|
|
10643
|
+
content: string;
|
|
10644
|
+
sha256: `sha256:${string}`;
|
|
10645
|
+
byteLength: number;
|
|
10646
|
+
};
|
|
10647
|
+
}, unknown>>;
|
|
8661
10648
|
files: z.ZodArray<z.ZodObject<{
|
|
8662
10649
|
path: z.ZodString;
|
|
8663
10650
|
mode: z.ZodNumber;
|
|
8664
10651
|
content: z.ZodString;
|
|
8665
10652
|
}, z.core.$strict>>;
|
|
8666
10653
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
10654
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
8667
10655
|
}, z.core.$strict>;
|
|
8668
10656
|
executionPlan: z.ZodObject<{
|
|
8669
10657
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -9940,11 +11928,10 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9940
11928
|
}, z.core.$strict>;
|
|
9941
11929
|
}, z.core.$strict>;
|
|
9942
11930
|
profileActivation: z.ZodObject<{
|
|
9943
|
-
|
|
9944
|
-
|
|
9945
|
-
|
|
9946
|
-
|
|
9947
|
-
material: z.ZodType<{
|
|
11931
|
+
profilePlan: z.ZodType<{
|
|
11932
|
+
kind: "agent-profile-workspace-plan";
|
|
11933
|
+
digest: `sha256:${string}`;
|
|
11934
|
+
material: {
|
|
9948
11935
|
sourceProfileDigest: `sha256:${string}`;
|
|
9949
11936
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
9950
11937
|
files: {
|
|
@@ -9968,7 +11955,30 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9968
11955
|
kind: "public";
|
|
9969
11956
|
value: string;
|
|
9970
11957
|
} | undefined;
|
|
9971
|
-
}
|
|
11958
|
+
};
|
|
11959
|
+
artifact: {
|
|
11960
|
+
locator: {
|
|
11961
|
+
kind: "s3";
|
|
11962
|
+
bucket: string;
|
|
11963
|
+
key: string;
|
|
11964
|
+
region?: string | undefined;
|
|
11965
|
+
} | {
|
|
11966
|
+
kind: "ipfs";
|
|
11967
|
+
cid: string;
|
|
11968
|
+
path?: string | undefined;
|
|
11969
|
+
};
|
|
11970
|
+
sha256: `sha256:${string}`;
|
|
11971
|
+
byteLength: number;
|
|
11972
|
+
} | {
|
|
11973
|
+
encoding: "base64";
|
|
11974
|
+
content: string;
|
|
11975
|
+
sha256: `sha256:${string}`;
|
|
11976
|
+
byteLength: number;
|
|
11977
|
+
};
|
|
11978
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
11979
|
+
kind: "agent-profile-workspace-plan";
|
|
11980
|
+
digest: `sha256:${string}`;
|
|
11981
|
+
material: {
|
|
9972
11982
|
sourceProfileDigest: `sha256:${string}`;
|
|
9973
11983
|
harness: "claude-code" | "nanoclaw" | "codex" | "opencode" | "kimi-code" | "pi" | "gemini" | "hermes" | "openclaw" | "amp" | "factory-droids" | "acp" | "cli-base";
|
|
9974
11984
|
files: {
|
|
@@ -9992,33 +12002,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9992
12002
|
kind: "public";
|
|
9993
12003
|
value: string;
|
|
9994
12004
|
} | undefined;
|
|
9995
|
-
}
|
|
9996
|
-
artifact:
|
|
9997
|
-
locator:
|
|
9998
|
-
kind:
|
|
9999
|
-
bucket:
|
|
10000
|
-
key:
|
|
10001
|
-
region
|
|
10002
|
-
}
|
|
10003
|
-
kind:
|
|
10004
|
-
cid:
|
|
10005
|
-
path
|
|
10006
|
-
}
|
|
10007
|
-
sha256:
|
|
10008
|
-
byteLength:
|
|
10009
|
-
}
|
|
10010
|
-
encoding:
|
|
10011
|
-
content:
|
|
10012
|
-
sha256:
|
|
10013
|
-
byteLength:
|
|
10014
|
-
}
|
|
10015
|
-
},
|
|
12005
|
+
};
|
|
12006
|
+
artifact: {
|
|
12007
|
+
locator: {
|
|
12008
|
+
kind: "s3";
|
|
12009
|
+
bucket: string;
|
|
12010
|
+
key: string;
|
|
12011
|
+
region?: string | undefined;
|
|
12012
|
+
} | {
|
|
12013
|
+
kind: "ipfs";
|
|
12014
|
+
cid: string;
|
|
12015
|
+
path?: string | undefined;
|
|
12016
|
+
};
|
|
12017
|
+
sha256: `sha256:${string}`;
|
|
12018
|
+
byteLength: number;
|
|
12019
|
+
} | {
|
|
12020
|
+
encoding: "base64";
|
|
12021
|
+
content: string;
|
|
12022
|
+
sha256: `sha256:${string}`;
|
|
12023
|
+
byteLength: number;
|
|
12024
|
+
};
|
|
12025
|
+
}, unknown>>;
|
|
10016
12026
|
files: z.ZodArray<z.ZodObject<{
|
|
10017
12027
|
path: z.ZodString;
|
|
10018
12028
|
mode: z.ZodNumber;
|
|
10019
12029
|
content: z.ZodString;
|
|
10020
12030
|
}, z.core.$strict>>;
|
|
10021
12031
|
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
12032
|
+
kind: z.ZodLiteral<"agent-candidate-profile-activation">;
|
|
10022
12033
|
}, z.core.$strict>;
|
|
10023
12034
|
executionPlan: z.ZodObject<{
|
|
10024
12035
|
kind: z.ZodLiteral<"agent-candidate-execution-plan">;
|
|
@@ -11427,9 +13438,31 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11427
13438
|
digestAlgorithm: z.ZodLiteral<"rfc8785-sha256">;
|
|
11428
13439
|
source: z.ZodObject<{
|
|
11429
13440
|
kind: z.ZodString;
|
|
11430
|
-
sourceIdentity: z.ZodString
|
|
13441
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
11431
13442
|
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
11432
|
-
sourceRevision: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
13443
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
13444
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13445
|
+
kind: z.ZodLiteral<"spdx">;
|
|
13446
|
+
expression: z.ZodString;
|
|
13447
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13448
|
+
kind: z.ZodLiteral<"custom">;
|
|
13449
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
13450
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
13451
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13452
|
+
}, z.core.$strict>], "kind">>;
|
|
13453
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13454
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13455
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13456
|
+
kind: z.ZodEnum<{
|
|
13457
|
+
normalization: "normalization";
|
|
13458
|
+
transformation: "transformation";
|
|
13459
|
+
}>;
|
|
13460
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
13461
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
13462
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13463
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13464
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13465
|
+
}, z.core.$strict>>>;
|
|
11433
13466
|
}, z.core.$strict>;
|
|
11434
13467
|
executionRef: z.ZodObject<{
|
|
11435
13468
|
identity: z.ZodString;
|