@interf/compiler 0.18.0 → 0.21.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 +87 -73
- package/dist/cli/commands/mcp.d.ts +0 -34
- package/dist/cli/commands/mcp.js +246 -45
- package/dist/cli/commands/method.js +261 -15
- package/dist/cli/commands/prep.js +61 -16
- package/dist/cli/commands/runs.js +103 -9
- package/dist/cli/commands/status.js +4 -2
- package/dist/cli/commands/test.d.ts +10 -0
- package/dist/cli/commands/{verify.js → test.js} +16 -18
- package/dist/cli/commands/web.js +82 -8
- package/dist/cli/commands/wizard.js +36 -37
- package/dist/cli/index.d.ts +2 -2
- package/dist/cli/index.js +3 -3
- package/dist/compiler-ui/404.html +1 -1
- package/dist/compiler-ui/__next.__PAGE__.txt +5 -5
- package/dist/compiler-ui/__next._full.txt +13 -12
- package/dist/compiler-ui/__next._head.txt +3 -3
- package/dist/compiler-ui/__next._index.txt +5 -4
- package/dist/compiler-ui/__next._tree.txt +4 -3
- package/dist/compiler-ui/_next/static/chunks/01646j7yi.w5a.css +1 -0
- package/dist/compiler-ui/_next/static/chunks/{0n51hrfoufc7g.js → 02f_.8.ebn556.js} +1 -1
- package/dist/compiler-ui/_next/static/chunks/02r7siaw-_p5w.js +1 -0
- package/dist/compiler-ui/_next/static/chunks/{08m7vf5asqlsm.js → 04d0ly-7xb~-j.js} +10 -10
- package/dist/compiler-ui/_next/static/chunks/0fhs9psnxqd8s.js +1 -0
- package/dist/compiler-ui/_next/static/chunks/0mssmhpbifj15.css +2 -0
- package/dist/compiler-ui/_next/static/chunks/0nypu~ddwxari.js +116 -0
- package/dist/compiler-ui/_next/static/chunks/0p3s8iyhgcww2.js +31 -0
- package/dist/compiler-ui/_next/static/chunks/0tjf-vu_rz8s0.css +1 -0
- package/dist/compiler-ui/_next/static/chunks/0u6p3fpbbfgtl.js +1 -0
- package/dist/compiler-ui/_next/static/chunks/0wpx5..8dnh0w.js +1 -0
- package/dist/compiler-ui/_next/static/chunks/0y0uj160p0ts~.js +1 -0
- package/dist/compiler-ui/_next/static/chunks/10t8l~_oenf.c.js +1 -0
- package/dist/compiler-ui/_next/static/chunks/13gz9e7z~imx1.js +5 -0
- package/dist/compiler-ui/_next/static/chunks/156xed-b6czaw.js +1 -0
- package/dist/compiler-ui/_next/static/chunks/{turbopack-0.uq1k8c0j4s..js → turbopack-02-3e_c-yz~5g.js} +1 -1
- package/dist/compiler-ui/_next/static/chunks/{turbopack-10e~t1yzi4svj.js → turbopack-0apv8vb-nczuy.js} +1 -1
- package/dist/compiler-ui/_not-found/__next._full.txt +10 -9
- package/dist/compiler-ui/_not-found/__next._head.txt +3 -3
- package/dist/compiler-ui/_not-found/__next._index.txt +5 -4
- package/dist/compiler-ui/_not-found/__next._not-found.__PAGE__.txt +2 -2
- package/dist/compiler-ui/_not-found/__next._not-found.txt +3 -3
- package/dist/compiler-ui/_not-found/__next._tree.txt +3 -2
- package/dist/compiler-ui/_not-found.html +1 -1
- package/dist/compiler-ui/_not-found.txt +10 -9
- package/dist/compiler-ui/index.html +1 -1
- package/dist/compiler-ui/index.txt +13 -12
- package/dist/packages/contracts/lib/schema.d.ts +4 -0
- package/dist/packages/contracts/lib/schema.js +2 -1
- package/dist/packages/engine/action-definitions.d.ts +174 -13
- package/dist/packages/engine/action-definitions.js +125 -122
- package/dist/packages/engine/action-planner.js +4 -11
- package/dist/packages/engine/agents/lib/shells.d.ts +3 -1
- package/dist/packages/engine/agents/lib/shells.js +8 -4
- package/dist/packages/engine/agents/role-executors.js +1 -1
- package/dist/packages/engine/compile/compiled-paths.js +6 -6
- package/dist/packages/engine/connection-config.js +1 -1
- package/dist/packages/engine/execution/lib/schema.d.ts +10 -0
- package/dist/packages/engine/instance-paths.d.ts +15 -9
- package/dist/packages/engine/instance-paths.js +15 -9
- package/dist/packages/engine/lib/schema.d.ts +686 -30
- package/dist/packages/engine/lib/schema.js +48 -21
- package/dist/packages/engine/native-run-handlers.js +10 -8
- package/dist/packages/engine/preparation-store.d.ts +9 -13
- package/dist/packages/engine/preparation-store.js +12 -0
- package/dist/packages/engine/requested-artifacts.d.ts +5 -0
- package/dist/packages/engine/requested-artifacts.js +36 -0
- package/dist/packages/engine/routes.d.ts +1 -1
- package/dist/packages/engine/routes.js +1 -1
- package/dist/packages/engine/run-observability.js +3 -2
- package/dist/packages/engine/runtime-proposal-helpers.d.ts +2 -2
- package/dist/packages/engine/runtime-proposal-helpers.js +5 -7
- package/dist/packages/engine/runtime-resource-builders.d.ts +5 -0
- package/dist/packages/engine/runtime-resource-builders.js +13 -2
- package/dist/packages/engine/runtime.d.ts +3 -1
- package/dist/packages/engine/runtime.js +146 -21
- package/dist/packages/engine/server.js +104 -52
- package/dist/packages/engine/verify/verify-execution.js +1 -1
- package/dist/packages/engine/wire-schemas.d.ts +5 -1
- package/dist/packages/engine/wire-schemas.js +1 -1
- package/dist/packages/methods/authoring/method-authoring.d.ts +3 -1
- package/dist/packages/methods/authoring/method-authoring.js +5 -36
- package/dist/packages/methods/package/builtin-compiled-method.js +1 -1
- package/dist/packages/methods/package/local-methods.d.ts +1 -0
- package/dist/packages/methods/package/local-methods.js +19 -4
- package/dist/packages/methods/package/method-definitions.js +1 -1
- package/dist/packages/project/interf-detect.js +6 -6
- package/dist/packages/project/lib/schema.d.ts +193 -0
- package/dist/packages/project/lib/schema.js +46 -1
- package/dist/packages/project/source-config.js +4 -0
- package/dist/packages/project/source-folders.js +1 -1
- package/package.json +7 -8
- package/public-repo/CONTRIBUTING.md +47 -0
- package/public-repo/LICENSE.md +1 -0
- package/public-repo/README.md +325 -0
- package/public-repo/SECURITY.md +67 -0
- package/public-repo/TRADEMARKS.md +8 -0
- package/{builtin-methods → public-repo/methods}/interf-default/README.md +4 -0
- package/{builtin-methods → public-repo/methods}/interf-default/compile/stages/shape/SKILL.md +4 -8
- package/{builtin-methods → public-repo/methods}/interf-default/method.json +1 -1
- package/public-repo/methods/interf-default/use/query/SKILL.md +23 -0
- package/public-repo/plugins/README.md +9 -0
- package/public-repo/plugins/interf/.claude-plugin/plugin.json +21 -0
- package/public-repo/plugins/interf/.mcp.json +12 -0
- package/public-repo/plugins/interf/README.md +29 -0
- package/public-repo/plugins/interf/skills/interf/SKILL.md +477 -0
- package/public-repo/skills/interf/SKILL.md +477 -0
- package/agent-skills/interf-actions/SKILL.md +0 -185
- package/agent-skills/interf-actions/references/cli.md +0 -243
- package/builtin-methods/interf-default/use/query/SKILL.md +0 -28
- package/dist/cli/commands/verify.d.ts +0 -10
- package/dist/compiler-ui/_next/static/chunks/06yhdspx~ca5-.js +0 -5
- package/dist/compiler-ui/_next/static/chunks/06z~l3kwb891e.js +0 -1
- package/dist/compiler-ui/_next/static/chunks/08g7lvje.te.u.js +0 -1
- package/dist/compiler-ui/_next/static/chunks/0_c_tvh-cukjz.css +0 -3
- package/dist/compiler-ui/_next/static/chunks/0_i-3_5l9t2qe.js +0 -1
- package/dist/compiler-ui/_next/static/chunks/0b-ywny_j0g~0.js +0 -1
- package/dist/compiler-ui/_next/static/chunks/0b52v41o1gixx.js +0 -1
- package/dist/compiler-ui/_next/static/chunks/0f_geuwdesg_c.js +0 -114
- package/dist/compiler-ui/_next/static/chunks/0gpzgsv0w.q~m.js +0 -31
- package/dist/compiler-ui/_next/static/chunks/0ilwfezfvu6~-.js +0 -1
- package/dist/compiler-ui/_next/static/chunks/0xxmf45eskdt~.css +0 -1
- package/dist/compiler-ui/_next/static/chunks/14wtz~vq25~qq.js +0 -1
- /package/dist/compiler-ui/_next/static/{6qyE1u9m_oBUkvAhhoCmO → tYHMLL9oKds1yDoNYgkPV}/_buildManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{6qyE1u9m_oBUkvAhhoCmO → tYHMLL9oKds1yDoNYgkPV}/_clientMiddlewareManifest.js +0 -0
- /package/dist/compiler-ui/_next/static/{6qyE1u9m_oBUkvAhhoCmO → tYHMLL9oKds1yDoNYgkPV}/_ssgManifest.js +0 -0
- /package/{builtin-methods → public-repo/methods}/interf-default/compile/stages/structure/SKILL.md +0 -0
- /package/{builtin-methods → public-repo/methods}/interf-default/compile/stages/summarize/SKILL.md +0 -0
- /package/{builtin-methods → public-repo/methods}/interf-default/improve/SKILL.md +0 -0
- /package/{builtin-methods → public-repo/methods}/interf-default/method.schema.json +0 -0
|
@@ -57,6 +57,56 @@ export declare const PreparationCreateRequestSchema: z.ZodObject<{
|
|
|
57
57
|
}, z.core.$strict>;
|
|
58
58
|
method_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
59
59
|
about: z.ZodOptional<z.ZodString>;
|
|
60
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
61
|
+
id: z.ZodOptional<z.ZodString>;
|
|
62
|
+
title: z.ZodString;
|
|
63
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
64
|
+
description: z.ZodOptional<z.ZodString>;
|
|
65
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
66
|
+
label: z.ZodString;
|
|
67
|
+
}, z.core.$loose>]>>>;
|
|
68
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
69
|
+
path: z.ZodOptional<z.ZodString>;
|
|
70
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
71
|
+
kind: z.ZodLiteral<"path">;
|
|
72
|
+
path: z.ZodString;
|
|
73
|
+
artifact_kind: z.ZodEnum<{
|
|
74
|
+
file: "file";
|
|
75
|
+
directory: "directory";
|
|
76
|
+
}>;
|
|
77
|
+
}, z.core.$strict>>;
|
|
78
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
79
|
+
id: z.ZodString;
|
|
80
|
+
kind: z.ZodEnum<{
|
|
81
|
+
file_exists: "file_exists";
|
|
82
|
+
min_file_count: "min_file_count";
|
|
83
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
84
|
+
frontmatter_valid: "frontmatter_valid";
|
|
85
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
86
|
+
wikilinks_valid: "wikilinks_valid";
|
|
87
|
+
must_not_contain: "must_not_contain";
|
|
88
|
+
must_contain: "must_contain";
|
|
89
|
+
qa_match: "qa_match";
|
|
90
|
+
}>;
|
|
91
|
+
description: z.ZodOptional<z.ZodString>;
|
|
92
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
93
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
94
|
+
}, z.core.$strict>>>;
|
|
95
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
96
|
+
}, z.core.$strict>>;
|
|
97
|
+
}, z.core.$strict>>>>;
|
|
98
|
+
source_profile: z.ZodOptional<z.ZodObject<{
|
|
99
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
100
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
101
|
+
name: z.ZodOptional<z.ZodString>;
|
|
102
|
+
path: z.ZodOptional<z.ZodString>;
|
|
103
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
104
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
105
|
+
note: z.ZodOptional<z.ZodString>;
|
|
106
|
+
}, z.core.$loose>>>;
|
|
107
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
108
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
109
|
+
}, z.core.$loose>>;
|
|
60
110
|
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
61
111
|
id: z.ZodOptional<z.ZodString>;
|
|
62
112
|
question: z.ZodString;
|
|
@@ -90,6 +140,56 @@ export declare const PreparationUpdateRequestSchema: z.ZodObject<{
|
|
|
90
140
|
}, z.core.$strip>>;
|
|
91
141
|
strictness: z.ZodOptional<z.ZodString>;
|
|
92
142
|
}, z.core.$strict>>>;
|
|
143
|
+
requested_artifacts: z.ZodOptional<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
144
|
+
id: z.ZodOptional<z.ZodString>;
|
|
145
|
+
title: z.ZodString;
|
|
146
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
147
|
+
description: z.ZodOptional<z.ZodString>;
|
|
148
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
149
|
+
label: z.ZodString;
|
|
150
|
+
}, z.core.$loose>]>>>;
|
|
151
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
152
|
+
path: z.ZodOptional<z.ZodString>;
|
|
153
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
154
|
+
kind: z.ZodLiteral<"path">;
|
|
155
|
+
path: z.ZodString;
|
|
156
|
+
artifact_kind: z.ZodEnum<{
|
|
157
|
+
file: "file";
|
|
158
|
+
directory: "directory";
|
|
159
|
+
}>;
|
|
160
|
+
}, z.core.$strict>>;
|
|
161
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
162
|
+
id: z.ZodString;
|
|
163
|
+
kind: z.ZodEnum<{
|
|
164
|
+
file_exists: "file_exists";
|
|
165
|
+
min_file_count: "min_file_count";
|
|
166
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
167
|
+
frontmatter_valid: "frontmatter_valid";
|
|
168
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
169
|
+
wikilinks_valid: "wikilinks_valid";
|
|
170
|
+
must_not_contain: "must_not_contain";
|
|
171
|
+
must_contain: "must_contain";
|
|
172
|
+
qa_match: "qa_match";
|
|
173
|
+
}>;
|
|
174
|
+
description: z.ZodOptional<z.ZodString>;
|
|
175
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
176
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
177
|
+
}, z.core.$strict>>>;
|
|
178
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
179
|
+
}, z.core.$strict>>;
|
|
180
|
+
}, z.core.$strict>>>>;
|
|
181
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
182
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
183
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
184
|
+
name: z.ZodOptional<z.ZodString>;
|
|
185
|
+
path: z.ZodOptional<z.ZodString>;
|
|
186
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
187
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
188
|
+
note: z.ZodOptional<z.ZodString>;
|
|
189
|
+
}, z.core.$loose>>>;
|
|
190
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
191
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
192
|
+
}, z.core.$loose>>>;
|
|
93
193
|
}, z.core.$strict>;
|
|
94
194
|
/** Body of `POST /v1/methods` — install a Method package by path. */
|
|
95
195
|
export declare const MethodInstallRequestSchema: z.ZodObject<{
|
|
@@ -138,6 +238,56 @@ export declare const PreparationWireShapeSchema: z.ZodObject<{
|
|
|
138
238
|
}, z.core.$strip>>;
|
|
139
239
|
strictness: z.ZodOptional<z.ZodString>;
|
|
140
240
|
}, z.core.$strict>>>;
|
|
241
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
242
|
+
id: z.ZodOptional<z.ZodString>;
|
|
243
|
+
title: z.ZodString;
|
|
244
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
245
|
+
description: z.ZodOptional<z.ZodString>;
|
|
246
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
247
|
+
label: z.ZodString;
|
|
248
|
+
}, z.core.$loose>]>>>;
|
|
249
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
250
|
+
path: z.ZodOptional<z.ZodString>;
|
|
251
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
252
|
+
kind: z.ZodLiteral<"path">;
|
|
253
|
+
path: z.ZodString;
|
|
254
|
+
artifact_kind: z.ZodEnum<{
|
|
255
|
+
file: "file";
|
|
256
|
+
directory: "directory";
|
|
257
|
+
}>;
|
|
258
|
+
}, z.core.$strict>>;
|
|
259
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
260
|
+
id: z.ZodString;
|
|
261
|
+
kind: z.ZodEnum<{
|
|
262
|
+
file_exists: "file_exists";
|
|
263
|
+
min_file_count: "min_file_count";
|
|
264
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
265
|
+
frontmatter_valid: "frontmatter_valid";
|
|
266
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
267
|
+
wikilinks_valid: "wikilinks_valid";
|
|
268
|
+
must_not_contain: "must_not_contain";
|
|
269
|
+
must_contain: "must_contain";
|
|
270
|
+
qa_match: "qa_match";
|
|
271
|
+
}>;
|
|
272
|
+
description: z.ZodOptional<z.ZodString>;
|
|
273
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
274
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
275
|
+
}, z.core.$strict>>>;
|
|
276
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
277
|
+
}, z.core.$strict>>;
|
|
278
|
+
}, z.core.$strict>>>>;
|
|
279
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
280
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
281
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
282
|
+
name: z.ZodOptional<z.ZodString>;
|
|
283
|
+
path: z.ZodOptional<z.ZodString>;
|
|
284
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
285
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
286
|
+
note: z.ZodOptional<z.ZodString>;
|
|
287
|
+
}, z.core.$loose>>>;
|
|
288
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
289
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
290
|
+
}, z.core.$loose>>>;
|
|
141
291
|
}, z.core.$strict>;
|
|
142
292
|
export type SourceBinding = z.infer<typeof SourceBindingSchema>;
|
|
143
293
|
export type ArtifactLocator = z.infer<typeof ArtifactLocatorSchema>;
|
|
@@ -272,6 +422,56 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
272
422
|
}, z.core.$strip>>;
|
|
273
423
|
strictness: z.ZodOptional<z.ZodString>;
|
|
274
424
|
}, z.core.$strict>>>;
|
|
425
|
+
requested_artifacts: z.ZodOptional<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
426
|
+
id: z.ZodOptional<z.ZodString>;
|
|
427
|
+
title: z.ZodString;
|
|
428
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
429
|
+
description: z.ZodOptional<z.ZodString>;
|
|
430
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
431
|
+
label: z.ZodString;
|
|
432
|
+
}, z.core.$loose>]>>>;
|
|
433
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
434
|
+
path: z.ZodOptional<z.ZodString>;
|
|
435
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
436
|
+
kind: z.ZodLiteral<"path">;
|
|
437
|
+
path: z.ZodString;
|
|
438
|
+
artifact_kind: z.ZodEnum<{
|
|
439
|
+
file: "file";
|
|
440
|
+
directory: "directory";
|
|
441
|
+
}>;
|
|
442
|
+
}, z.core.$strict>>;
|
|
443
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
444
|
+
id: z.ZodString;
|
|
445
|
+
kind: z.ZodEnum<{
|
|
446
|
+
file_exists: "file_exists";
|
|
447
|
+
min_file_count: "min_file_count";
|
|
448
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
449
|
+
frontmatter_valid: "frontmatter_valid";
|
|
450
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
451
|
+
wikilinks_valid: "wikilinks_valid";
|
|
452
|
+
must_not_contain: "must_not_contain";
|
|
453
|
+
must_contain: "must_contain";
|
|
454
|
+
qa_match: "qa_match";
|
|
455
|
+
}>;
|
|
456
|
+
description: z.ZodOptional<z.ZodString>;
|
|
457
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
458
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
459
|
+
}, z.core.$strict>>>;
|
|
460
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
461
|
+
}, z.core.$strict>>;
|
|
462
|
+
}, z.core.$strict>>>>;
|
|
463
|
+
source_profile: z.ZodOptional<z.ZodObject<{
|
|
464
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
465
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
466
|
+
name: z.ZodOptional<z.ZodString>;
|
|
467
|
+
path: z.ZodOptional<z.ZodString>;
|
|
468
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
469
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
470
|
+
note: z.ZodOptional<z.ZodString>;
|
|
471
|
+
}, z.core.$loose>>>;
|
|
472
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
473
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
474
|
+
}, z.core.$loose>>;
|
|
275
475
|
}, z.core.$strict>;
|
|
276
476
|
source_path: z.ZodString;
|
|
277
477
|
method_id: z.ZodNullable<z.ZodString>;
|
|
@@ -288,6 +488,56 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
288
488
|
}, z.core.$strip>>;
|
|
289
489
|
strictness: z.ZodOptional<z.ZodString>;
|
|
290
490
|
}, z.core.$strict>>>;
|
|
491
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
492
|
+
id: z.ZodOptional<z.ZodString>;
|
|
493
|
+
title: z.ZodString;
|
|
494
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
495
|
+
description: z.ZodOptional<z.ZodString>;
|
|
496
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
497
|
+
label: z.ZodString;
|
|
498
|
+
}, z.core.$loose>]>>>;
|
|
499
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
500
|
+
path: z.ZodOptional<z.ZodString>;
|
|
501
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
502
|
+
kind: z.ZodLiteral<"path">;
|
|
503
|
+
path: z.ZodString;
|
|
504
|
+
artifact_kind: z.ZodEnum<{
|
|
505
|
+
file: "file";
|
|
506
|
+
directory: "directory";
|
|
507
|
+
}>;
|
|
508
|
+
}, z.core.$strict>>;
|
|
509
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
510
|
+
id: z.ZodString;
|
|
511
|
+
kind: z.ZodEnum<{
|
|
512
|
+
file_exists: "file_exists";
|
|
513
|
+
min_file_count: "min_file_count";
|
|
514
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
515
|
+
frontmatter_valid: "frontmatter_valid";
|
|
516
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
517
|
+
wikilinks_valid: "wikilinks_valid";
|
|
518
|
+
must_not_contain: "must_not_contain";
|
|
519
|
+
must_contain: "must_contain";
|
|
520
|
+
qa_match: "qa_match";
|
|
521
|
+
}>;
|
|
522
|
+
description: z.ZodOptional<z.ZodString>;
|
|
523
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
524
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
525
|
+
}, z.core.$strict>>>;
|
|
526
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
527
|
+
}, z.core.$strict>>;
|
|
528
|
+
}, z.core.$strict>>>>;
|
|
529
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
530
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
531
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
532
|
+
name: z.ZodOptional<z.ZodString>;
|
|
533
|
+
path: z.ZodOptional<z.ZodString>;
|
|
534
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
535
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
536
|
+
note: z.ZodOptional<z.ZodString>;
|
|
537
|
+
}, z.core.$loose>>>;
|
|
538
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
539
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
540
|
+
}, z.core.$loose>>>;
|
|
291
541
|
portable_context: z.ZodObject<{
|
|
292
542
|
preparation: z.ZodString;
|
|
293
543
|
path: z.ZodNullable<z.ZodString>;
|
|
@@ -323,6 +573,7 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
323
573
|
"portable-context": "portable-context";
|
|
324
574
|
"preparation-config": "preparation-config";
|
|
325
575
|
"compile-run": "compile-run";
|
|
576
|
+
"artifact-checks": "artifact-checks";
|
|
326
577
|
"readiness-checks": "readiness-checks";
|
|
327
578
|
"checks-current": "checks-current";
|
|
328
579
|
}>;
|
|
@@ -370,6 +621,7 @@ export declare const PreparationResourceSchema: z.ZodObject<{
|
|
|
370
621
|
"portable-context": "portable-context";
|
|
371
622
|
"preparation-config": "preparation-config";
|
|
372
623
|
"compile-run": "compile-run";
|
|
624
|
+
"artifact-checks": "artifact-checks";
|
|
373
625
|
"readiness-checks": "readiness-checks";
|
|
374
626
|
"checks-current": "checks-current";
|
|
375
627
|
}>;
|
|
@@ -434,6 +686,17 @@ export declare const MethodResourceSchema: z.ZodObject<{
|
|
|
434
686
|
path: z.ZodString;
|
|
435
687
|
label: z.ZodOptional<z.ZodString>;
|
|
436
688
|
hint: z.ZodOptional<z.ZodString>;
|
|
689
|
+
purpose: z.ZodOptional<z.ZodObject<{
|
|
690
|
+
label: z.ZodString;
|
|
691
|
+
task_hint: z.ZodString;
|
|
692
|
+
}, z.core.$strict>>;
|
|
693
|
+
inputs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
694
|
+
id: z.ZodString;
|
|
695
|
+
label: z.ZodString;
|
|
696
|
+
description: z.ZodString;
|
|
697
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
698
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
699
|
+
}, z.core.$strict>>>;
|
|
437
700
|
source_kind: z.ZodDefault<z.ZodEnum<{
|
|
438
701
|
builtin: "builtin";
|
|
439
702
|
local: "local";
|
|
@@ -674,6 +937,7 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
|
|
|
674
937
|
"portable-context": "portable-context";
|
|
675
938
|
"preparation-config": "preparation-config";
|
|
676
939
|
"compile-run": "compile-run";
|
|
940
|
+
"artifact-checks": "artifact-checks";
|
|
677
941
|
"readiness-checks": "readiness-checks";
|
|
678
942
|
"checks-current": "checks-current";
|
|
679
943
|
}>;
|
|
@@ -721,6 +985,7 @@ export declare const CompileRunSummarySchema: z.ZodObject<{
|
|
|
721
985
|
"portable-context": "portable-context";
|
|
722
986
|
"preparation-config": "preparation-config";
|
|
723
987
|
"compile-run": "compile-run";
|
|
988
|
+
"artifact-checks": "artifact-checks";
|
|
724
989
|
"readiness-checks": "readiness-checks";
|
|
725
990
|
"checks-current": "checks-current";
|
|
726
991
|
}>;
|
|
@@ -1047,6 +1312,7 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1047
1312
|
"portable-context": "portable-context";
|
|
1048
1313
|
"preparation-config": "preparation-config";
|
|
1049
1314
|
"compile-run": "compile-run";
|
|
1315
|
+
"artifact-checks": "artifact-checks";
|
|
1050
1316
|
"readiness-checks": "readiness-checks";
|
|
1051
1317
|
"checks-current": "checks-current";
|
|
1052
1318
|
}>;
|
|
@@ -1094,6 +1360,7 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1094
1360
|
"portable-context": "portable-context";
|
|
1095
1361
|
"preparation-config": "preparation-config";
|
|
1096
1362
|
"compile-run": "compile-run";
|
|
1363
|
+
"artifact-checks": "artifact-checks";
|
|
1097
1364
|
"readiness-checks": "readiness-checks";
|
|
1098
1365
|
"checks-current": "checks-current";
|
|
1099
1366
|
}>;
|
|
@@ -1169,6 +1436,7 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1169
1436
|
"portable-context": "portable-context";
|
|
1170
1437
|
"preparation-config": "preparation-config";
|
|
1171
1438
|
"compile-run": "compile-run";
|
|
1439
|
+
"artifact-checks": "artifact-checks";
|
|
1172
1440
|
"readiness-checks": "readiness-checks";
|
|
1173
1441
|
"checks-current": "checks-current";
|
|
1174
1442
|
}>;
|
|
@@ -1216,6 +1484,7 @@ export declare const CompileRunResourceSchema: z.ZodObject<{
|
|
|
1216
1484
|
"portable-context": "portable-context";
|
|
1217
1485
|
"preparation-config": "preparation-config";
|
|
1218
1486
|
"compile-run": "compile-run";
|
|
1487
|
+
"artifact-checks": "artifact-checks";
|
|
1219
1488
|
"readiness-checks": "readiness-checks";
|
|
1220
1489
|
"checks-current": "checks-current";
|
|
1221
1490
|
}>;
|
|
@@ -1461,6 +1730,56 @@ export declare const PreparationSetupCreateRequestSchema: z.ZodObject<{
|
|
|
1461
1730
|
}, z.core.$strip>>;
|
|
1462
1731
|
strictness: z.ZodOptional<z.ZodString>;
|
|
1463
1732
|
}, z.core.$strict>>>;
|
|
1733
|
+
requested_artifacts: z.ZodOptional<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
1734
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1735
|
+
title: z.ZodString;
|
|
1736
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
1737
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1738
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1739
|
+
label: z.ZodString;
|
|
1740
|
+
}, z.core.$loose>]>>>;
|
|
1741
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
1742
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1743
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
1744
|
+
kind: z.ZodLiteral<"path">;
|
|
1745
|
+
path: z.ZodString;
|
|
1746
|
+
artifact_kind: z.ZodEnum<{
|
|
1747
|
+
file: "file";
|
|
1748
|
+
directory: "directory";
|
|
1749
|
+
}>;
|
|
1750
|
+
}, z.core.$strict>>;
|
|
1751
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1752
|
+
id: z.ZodString;
|
|
1753
|
+
kind: z.ZodEnum<{
|
|
1754
|
+
file_exists: "file_exists";
|
|
1755
|
+
min_file_count: "min_file_count";
|
|
1756
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
1757
|
+
frontmatter_valid: "frontmatter_valid";
|
|
1758
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
1759
|
+
wikilinks_valid: "wikilinks_valid";
|
|
1760
|
+
must_not_contain: "must_not_contain";
|
|
1761
|
+
must_contain: "must_contain";
|
|
1762
|
+
qa_match: "qa_match";
|
|
1763
|
+
}>;
|
|
1764
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1765
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1766
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
1767
|
+
}, z.core.$strict>>>;
|
|
1768
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
1769
|
+
}, z.core.$strict>>;
|
|
1770
|
+
}, z.core.$strict>>>>;
|
|
1771
|
+
source_profile: z.ZodOptional<z.ZodObject<{
|
|
1772
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1773
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1774
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1775
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1776
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
1777
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
1778
|
+
note: z.ZodOptional<z.ZodString>;
|
|
1779
|
+
}, z.core.$loose>>>;
|
|
1780
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1781
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1782
|
+
}, z.core.$loose>>;
|
|
1464
1783
|
}, z.core.$strict>;
|
|
1465
1784
|
prepare_after_setup: z.ZodDefault<z.ZodBoolean>;
|
|
1466
1785
|
setup_mode: z.ZodDefault<z.ZodEnum<{
|
|
@@ -1476,7 +1795,7 @@ export declare const PreparationSetupResultSchema: z.ZodObject<{
|
|
|
1476
1795
|
"select-method": "select-method";
|
|
1477
1796
|
}>;
|
|
1478
1797
|
preparation: z.ZodString;
|
|
1479
|
-
method: z.ZodString
|
|
1798
|
+
method: z.ZodNullable<z.ZodString>;
|
|
1480
1799
|
source_folder_path: z.ZodString;
|
|
1481
1800
|
config_path: z.ZodString;
|
|
1482
1801
|
portable_context_path: z.ZodString;
|
|
@@ -1621,6 +1940,56 @@ export declare const MethodAuthoringCreateRequestSchema: z.ZodObject<{
|
|
|
1621
1940
|
}, z.core.$strip>>;
|
|
1622
1941
|
strictness: z.ZodOptional<z.ZodString>;
|
|
1623
1942
|
}, z.core.$strict>>>;
|
|
1943
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
1944
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1945
|
+
title: z.ZodString;
|
|
1946
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
1947
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1949
|
+
label: z.ZodString;
|
|
1950
|
+
}, z.core.$loose>]>>>;
|
|
1951
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
1952
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1953
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
1954
|
+
kind: z.ZodLiteral<"path">;
|
|
1955
|
+
path: z.ZodString;
|
|
1956
|
+
artifact_kind: z.ZodEnum<{
|
|
1957
|
+
file: "file";
|
|
1958
|
+
directory: "directory";
|
|
1959
|
+
}>;
|
|
1960
|
+
}, z.core.$strict>>;
|
|
1961
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1962
|
+
id: z.ZodString;
|
|
1963
|
+
kind: z.ZodEnum<{
|
|
1964
|
+
file_exists: "file_exists";
|
|
1965
|
+
min_file_count: "min_file_count";
|
|
1966
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
1967
|
+
frontmatter_valid: "frontmatter_valid";
|
|
1968
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
1969
|
+
wikilinks_valid: "wikilinks_valid";
|
|
1970
|
+
must_not_contain: "must_not_contain";
|
|
1971
|
+
must_contain: "must_contain";
|
|
1972
|
+
qa_match: "qa_match";
|
|
1973
|
+
}>;
|
|
1974
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1975
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1976
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
1977
|
+
}, z.core.$strict>>>;
|
|
1978
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
1979
|
+
}, z.core.$strict>>;
|
|
1980
|
+
}, z.core.$strict>>>>;
|
|
1981
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1982
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1983
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1984
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1985
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1986
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
1987
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
1988
|
+
note: z.ZodOptional<z.ZodString>;
|
|
1989
|
+
}, z.core.$loose>>>;
|
|
1990
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1991
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1992
|
+
}, z.core.$loose>>>;
|
|
1624
1993
|
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1625
1994
|
id: z.ZodString;
|
|
1626
1995
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1787,7 +2156,7 @@ export declare const VerifyRunStatusSchema: z.ZodEnum<{
|
|
|
1787
2156
|
* judges against the raw source folder for a baseline that reveals
|
|
1788
2157
|
* how much value the Method actually adds. The 0.15 cleanup made
|
|
1789
2158
|
* verify compiled-only on the wire because the source-files branch
|
|
1790
|
-
* had been retired in 0.13.1; 0.17 restores it because the
|
|
2159
|
+
* had been retired in 0.13.1; 0.17 restores it because the readiness-check UI and
|
|
1791
2160
|
* `verify/README.md` have always claimed the option exists, and the
|
|
1792
2161
|
* sandbox + spec builders for source-files have remained in tree
|
|
1793
2162
|
* since 0.13.
|
|
@@ -1895,6 +2264,7 @@ export declare const VerifyRunResourceSchema: z.ZodObject<{
|
|
|
1895
2264
|
"portable-context": "portable-context";
|
|
1896
2265
|
"preparation-config": "preparation-config";
|
|
1897
2266
|
"compile-run": "compile-run";
|
|
2267
|
+
"artifact-checks": "artifact-checks";
|
|
1898
2268
|
"readiness-checks": "readiness-checks";
|
|
1899
2269
|
"checks-current": "checks-current";
|
|
1900
2270
|
}>;
|
|
@@ -1942,6 +2312,7 @@ export declare const VerifyRunResourceSchema: z.ZodObject<{
|
|
|
1942
2312
|
"portable-context": "portable-context";
|
|
1943
2313
|
"preparation-config": "preparation-config";
|
|
1944
2314
|
"compile-run": "compile-run";
|
|
2315
|
+
"artifact-checks": "artifact-checks";
|
|
1945
2316
|
"readiness-checks": "readiness-checks";
|
|
1946
2317
|
"checks-current": "checks-current";
|
|
1947
2318
|
}>;
|
|
@@ -2132,6 +2503,7 @@ export declare const VerifyRunResourceSchema: z.ZodObject<{
|
|
|
2132
2503
|
"portable-context": "portable-context";
|
|
2133
2504
|
"preparation-config": "preparation-config";
|
|
2134
2505
|
"compile-run": "compile-run";
|
|
2506
|
+
"artifact-checks": "artifact-checks";
|
|
2135
2507
|
"readiness-checks": "readiness-checks";
|
|
2136
2508
|
"checks-current": "checks-current";
|
|
2137
2509
|
}>;
|
|
@@ -2179,6 +2551,7 @@ export declare const VerifyRunResourceSchema: z.ZodObject<{
|
|
|
2179
2551
|
"portable-context": "portable-context";
|
|
2180
2552
|
"preparation-config": "preparation-config";
|
|
2181
2553
|
"compile-run": "compile-run";
|
|
2554
|
+
"artifact-checks": "artifact-checks";
|
|
2182
2555
|
"readiness-checks": "readiness-checks";
|
|
2183
2556
|
"checks-current": "checks-current";
|
|
2184
2557
|
}>;
|
|
@@ -2295,6 +2668,7 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
2295
2668
|
"portable-context": "portable-context";
|
|
2296
2669
|
"preparation-config": "preparation-config";
|
|
2297
2670
|
"compile-run": "compile-run";
|
|
2671
|
+
"artifact-checks": "artifact-checks";
|
|
2298
2672
|
"readiness-checks": "readiness-checks";
|
|
2299
2673
|
"checks-current": "checks-current";
|
|
2300
2674
|
}>;
|
|
@@ -2342,6 +2716,7 @@ export declare const RunObservabilityResourceSchema: z.ZodObject<{
|
|
|
2342
2716
|
"portable-context": "portable-context";
|
|
2343
2717
|
"preparation-config": "preparation-config";
|
|
2344
2718
|
"compile-run": "compile-run";
|
|
2719
|
+
"artifact-checks": "artifact-checks";
|
|
2345
2720
|
"readiness-checks": "readiness-checks";
|
|
2346
2721
|
"checks-current": "checks-current";
|
|
2347
2722
|
}>;
|
|
@@ -2479,10 +2854,10 @@ export declare const ActionProposalStatusSchema: z.ZodEnum<{
|
|
|
2479
2854
|
}>;
|
|
2480
2855
|
export declare const ActionClientOriginSchema: z.ZodEnum<{
|
|
2481
2856
|
unknown: "unknown";
|
|
2482
|
-
mcp: "mcp";
|
|
2483
2857
|
"ui-chat": "ui-chat";
|
|
2484
2858
|
cli: "cli";
|
|
2485
2859
|
"agent-cli": "agent-cli";
|
|
2860
|
+
mcp: "mcp";
|
|
2486
2861
|
service: "service";
|
|
2487
2862
|
}>;
|
|
2488
2863
|
export declare const ActionProposalCreateRequestSchema: z.ZodObject<{
|
|
@@ -2490,10 +2865,10 @@ export declare const ActionProposalCreateRequestSchema: z.ZodObject<{
|
|
|
2490
2865
|
preparation: z.ZodOptional<z.ZodString>;
|
|
2491
2866
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2492
2867
|
unknown: "unknown";
|
|
2493
|
-
mcp: "mcp";
|
|
2494
2868
|
"ui-chat": "ui-chat";
|
|
2495
2869
|
cli: "cli";
|
|
2496
2870
|
"agent-cli": "agent-cli";
|
|
2871
|
+
mcp: "mcp";
|
|
2497
2872
|
service: "service";
|
|
2498
2873
|
}>>;
|
|
2499
2874
|
values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2548,10 +2923,10 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2548
2923
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2549
2924
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2550
2925
|
unknown: "unknown";
|
|
2551
|
-
mcp: "mcp";
|
|
2552
2926
|
"ui-chat": "ui-chat";
|
|
2553
2927
|
cli: "cli";
|
|
2554
2928
|
"agent-cli": "agent-cli";
|
|
2929
|
+
mcp: "mcp";
|
|
2555
2930
|
service: "service";
|
|
2556
2931
|
}>>;
|
|
2557
2932
|
created_at: z.ZodString;
|
|
@@ -2596,10 +2971,10 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2596
2971
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2597
2972
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2598
2973
|
unknown: "unknown";
|
|
2599
|
-
mcp: "mcp";
|
|
2600
2974
|
"ui-chat": "ui-chat";
|
|
2601
2975
|
cli: "cli";
|
|
2602
2976
|
"agent-cli": "agent-cli";
|
|
2977
|
+
mcp: "mcp";
|
|
2603
2978
|
service: "service";
|
|
2604
2979
|
}>>;
|
|
2605
2980
|
created_at: z.ZodString;
|
|
@@ -2653,10 +3028,10 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2653
3028
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2654
3029
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2655
3030
|
unknown: "unknown";
|
|
2656
|
-
mcp: "mcp";
|
|
2657
3031
|
"ui-chat": "ui-chat";
|
|
2658
3032
|
cli: "cli";
|
|
2659
3033
|
"agent-cli": "agent-cli";
|
|
3034
|
+
mcp: "mcp";
|
|
2660
3035
|
service: "service";
|
|
2661
3036
|
}>>;
|
|
2662
3037
|
created_at: z.ZodString;
|
|
@@ -2707,10 +3082,10 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2707
3082
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2708
3083
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2709
3084
|
unknown: "unknown";
|
|
2710
|
-
mcp: "mcp";
|
|
2711
3085
|
"ui-chat": "ui-chat";
|
|
2712
3086
|
cli: "cli";
|
|
2713
3087
|
"agent-cli": "agent-cli";
|
|
3088
|
+
mcp: "mcp";
|
|
2714
3089
|
service: "service";
|
|
2715
3090
|
}>>;
|
|
2716
3091
|
created_at: z.ZodString;
|
|
@@ -2760,10 +3135,10 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2760
3135
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2761
3136
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2762
3137
|
unknown: "unknown";
|
|
2763
|
-
mcp: "mcp";
|
|
2764
3138
|
"ui-chat": "ui-chat";
|
|
2765
3139
|
cli: "cli";
|
|
2766
3140
|
"agent-cli": "agent-cli";
|
|
3141
|
+
mcp: "mcp";
|
|
2767
3142
|
service: "service";
|
|
2768
3143
|
}>>;
|
|
2769
3144
|
created_at: z.ZodString;
|
|
@@ -2808,6 +3183,56 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2808
3183
|
}, z.core.$strip>>;
|
|
2809
3184
|
strictness: z.ZodOptional<z.ZodString>;
|
|
2810
3185
|
}, z.core.$strict>>>;
|
|
3186
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
3187
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3188
|
+
title: z.ZodString;
|
|
3189
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
3190
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3191
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3192
|
+
label: z.ZodString;
|
|
3193
|
+
}, z.core.$loose>]>>>;
|
|
3194
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
3195
|
+
path: z.ZodOptional<z.ZodString>;
|
|
3196
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
3197
|
+
kind: z.ZodLiteral<"path">;
|
|
3198
|
+
path: z.ZodString;
|
|
3199
|
+
artifact_kind: z.ZodEnum<{
|
|
3200
|
+
file: "file";
|
|
3201
|
+
directory: "directory";
|
|
3202
|
+
}>;
|
|
3203
|
+
}, z.core.$strict>>;
|
|
3204
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3205
|
+
id: z.ZodString;
|
|
3206
|
+
kind: z.ZodEnum<{
|
|
3207
|
+
file_exists: "file_exists";
|
|
3208
|
+
min_file_count: "min_file_count";
|
|
3209
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
3210
|
+
frontmatter_valid: "frontmatter_valid";
|
|
3211
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
3212
|
+
wikilinks_valid: "wikilinks_valid";
|
|
3213
|
+
must_not_contain: "must_not_contain";
|
|
3214
|
+
must_contain: "must_contain";
|
|
3215
|
+
qa_match: "qa_match";
|
|
3216
|
+
}>;
|
|
3217
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3218
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3219
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
3220
|
+
}, z.core.$strict>>>;
|
|
3221
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
3222
|
+
}, z.core.$strict>>;
|
|
3223
|
+
}, z.core.$strict>>>>;
|
|
3224
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3225
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
3226
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3227
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3228
|
+
path: z.ZodOptional<z.ZodString>;
|
|
3229
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
3230
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
3231
|
+
note: z.ZodOptional<z.ZodString>;
|
|
3232
|
+
}, z.core.$loose>>>;
|
|
3233
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3234
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3235
|
+
}, z.core.$loose>>>;
|
|
2811
3236
|
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2812
3237
|
id: z.ZodString;
|
|
2813
3238
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2860,10 +3285,10 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2860
3285
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2861
3286
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
2862
3287
|
unknown: "unknown";
|
|
2863
|
-
mcp: "mcp";
|
|
2864
3288
|
"ui-chat": "ui-chat";
|
|
2865
3289
|
cli: "cli";
|
|
2866
3290
|
"agent-cli": "agent-cli";
|
|
3291
|
+
mcp: "mcp";
|
|
2867
3292
|
service: "service";
|
|
2868
3293
|
}>>;
|
|
2869
3294
|
created_at: z.ZodString;
|
|
@@ -2908,6 +3333,56 @@ export declare const ActionProposalResourceSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
2908
3333
|
}, z.core.$strip>>;
|
|
2909
3334
|
strictness: z.ZodOptional<z.ZodString>;
|
|
2910
3335
|
}, z.core.$strict>>>;
|
|
3336
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
3337
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3338
|
+
title: z.ZodString;
|
|
3339
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
3340
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3341
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3342
|
+
label: z.ZodString;
|
|
3343
|
+
}, z.core.$loose>]>>>;
|
|
3344
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
3345
|
+
path: z.ZodOptional<z.ZodString>;
|
|
3346
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
3347
|
+
kind: z.ZodLiteral<"path">;
|
|
3348
|
+
path: z.ZodString;
|
|
3349
|
+
artifact_kind: z.ZodEnum<{
|
|
3350
|
+
file: "file";
|
|
3351
|
+
directory: "directory";
|
|
3352
|
+
}>;
|
|
3353
|
+
}, z.core.$strict>>;
|
|
3354
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3355
|
+
id: z.ZodString;
|
|
3356
|
+
kind: z.ZodEnum<{
|
|
3357
|
+
file_exists: "file_exists";
|
|
3358
|
+
min_file_count: "min_file_count";
|
|
3359
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
3360
|
+
frontmatter_valid: "frontmatter_valid";
|
|
3361
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
3362
|
+
wikilinks_valid: "wikilinks_valid";
|
|
3363
|
+
must_not_contain: "must_not_contain";
|
|
3364
|
+
must_contain: "must_contain";
|
|
3365
|
+
qa_match: "qa_match";
|
|
3366
|
+
}>;
|
|
3367
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3368
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3369
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
3370
|
+
}, z.core.$strict>>>;
|
|
3371
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
3372
|
+
}, z.core.$strict>>;
|
|
3373
|
+
}, z.core.$strict>>>>;
|
|
3374
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3375
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
3376
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3377
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3378
|
+
path: z.ZodOptional<z.ZodString>;
|
|
3379
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
3380
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
3381
|
+
note: z.ZodOptional<z.ZodString>;
|
|
3382
|
+
}, z.core.$loose>>>;
|
|
3383
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3384
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3385
|
+
}, z.core.$loose>>>;
|
|
2911
3386
|
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2912
3387
|
id: z.ZodString;
|
|
2913
3388
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2970,6 +3445,7 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
|
|
|
2970
3445
|
"portable-context": "portable-context";
|
|
2971
3446
|
"preparation-config": "preparation-config";
|
|
2972
3447
|
"compile-run": "compile-run";
|
|
3448
|
+
"artifact-checks": "artifact-checks";
|
|
2973
3449
|
"readiness-checks": "readiness-checks";
|
|
2974
3450
|
"checks-current": "checks-current";
|
|
2975
3451
|
}>;
|
|
@@ -3017,6 +3493,7 @@ export declare const PortableContextResourceSchema: z.ZodObject<{
|
|
|
3017
3493
|
"portable-context": "portable-context";
|
|
3018
3494
|
"preparation-config": "preparation-config";
|
|
3019
3495
|
"compile-run": "compile-run";
|
|
3496
|
+
"artifact-checks": "artifact-checks";
|
|
3020
3497
|
"readiness-checks": "readiness-checks";
|
|
3021
3498
|
"checks-current": "checks-current";
|
|
3022
3499
|
}>;
|
|
@@ -3081,6 +3558,7 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
|
|
|
3081
3558
|
"portable-context": "portable-context";
|
|
3082
3559
|
"preparation-config": "preparation-config";
|
|
3083
3560
|
"compile-run": "compile-run";
|
|
3561
|
+
"artifact-checks": "artifact-checks";
|
|
3084
3562
|
"readiness-checks": "readiness-checks";
|
|
3085
3563
|
"checks-current": "checks-current";
|
|
3086
3564
|
}>;
|
|
@@ -3128,6 +3606,7 @@ export declare const ReadinessResourceSchema: z.ZodObject<{
|
|
|
3128
3606
|
"portable-context": "portable-context";
|
|
3129
3607
|
"preparation-config": "preparation-config";
|
|
3130
3608
|
"compile-run": "compile-run";
|
|
3609
|
+
"artifact-checks": "artifact-checks";
|
|
3131
3610
|
"readiness-checks": "readiness-checks";
|
|
3132
3611
|
"checks-current": "checks-current";
|
|
3133
3612
|
}>;
|
|
@@ -3167,26 +3646,28 @@ export declare const LocalServiceDiscoverySchema: z.ZodObject<{
|
|
|
3167
3646
|
kind: z.ZodLiteral<"interf-local-service-discovery">;
|
|
3168
3647
|
version: z.ZodLiteral<1>;
|
|
3169
3648
|
resources: z.ZodObject<{
|
|
3649
|
+
instance: z.ZodString;
|
|
3170
3650
|
preparations: z.ZodString;
|
|
3171
3651
|
methods: z.ZodString;
|
|
3172
3652
|
runs: z.ZodString;
|
|
3173
|
-
readiness: z.ZodString;
|
|
3174
|
-
portable_contexts: z.ZodString;
|
|
3175
|
-
source_files: z.ZodString;
|
|
3176
|
-
workspace_files: z.ZodString;
|
|
3177
3653
|
action_proposals: z.ZodString;
|
|
3178
|
-
preparation_setups: z.ZodString;
|
|
3179
|
-
preparation_changes: z.ZodString;
|
|
3180
|
-
method_changes: z.ZodString;
|
|
3181
|
-
workspace_bootstraps: z.ZodOptional<z.ZodString>;
|
|
3182
|
-
readiness_check_drafts: z.ZodString;
|
|
3183
|
-
method_authoring_runs: z.ZodString;
|
|
3184
|
-
method_improvement_runs: z.ZodString;
|
|
3185
|
-
compile_runs: z.ZodString;
|
|
3186
|
-
verify_runs: z.ZodString;
|
|
3187
|
-
reset: z.ZodString;
|
|
3188
3654
|
executor: z.ZodString;
|
|
3655
|
+
open_path: z.ZodString;
|
|
3189
3656
|
agents: z.ZodOptional<z.ZodString>;
|
|
3657
|
+
readiness: z.ZodOptional<z.ZodString>;
|
|
3658
|
+
portable_contexts: z.ZodOptional<z.ZodString>;
|
|
3659
|
+
source_files: z.ZodOptional<z.ZodString>;
|
|
3660
|
+
workspace_files: z.ZodOptional<z.ZodString>;
|
|
3661
|
+
preparation_setups: z.ZodOptional<z.ZodString>;
|
|
3662
|
+
preparation_changes: z.ZodOptional<z.ZodString>;
|
|
3663
|
+
method_changes: z.ZodOptional<z.ZodString>;
|
|
3664
|
+
workspace_bootstraps: z.ZodOptional<z.ZodString>;
|
|
3665
|
+
readiness_check_drafts: z.ZodOptional<z.ZodString>;
|
|
3666
|
+
method_authoring_runs: z.ZodOptional<z.ZodString>;
|
|
3667
|
+
method_improvement_runs: z.ZodOptional<z.ZodString>;
|
|
3668
|
+
compile_runs: z.ZodOptional<z.ZodString>;
|
|
3669
|
+
verify_runs: z.ZodOptional<z.ZodString>;
|
|
3670
|
+
reset: z.ZodOptional<z.ZodString>;
|
|
3190
3671
|
workspaces: z.ZodOptional<z.ZodString>;
|
|
3191
3672
|
status: z.ZodOptional<z.ZodString>;
|
|
3192
3673
|
}, z.core.$strict>;
|
|
@@ -3232,6 +3713,56 @@ export declare const PreparationListResponseSchema: z.ZodObject<{
|
|
|
3232
3713
|
}, z.core.$strip>>;
|
|
3233
3714
|
strictness: z.ZodOptional<z.ZodString>;
|
|
3234
3715
|
}, z.core.$strict>>>;
|
|
3716
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
3717
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3718
|
+
title: z.ZodString;
|
|
3719
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
3720
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3721
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3722
|
+
label: z.ZodString;
|
|
3723
|
+
}, z.core.$loose>]>>>;
|
|
3724
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
3725
|
+
path: z.ZodOptional<z.ZodString>;
|
|
3726
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
3727
|
+
kind: z.ZodLiteral<"path">;
|
|
3728
|
+
path: z.ZodString;
|
|
3729
|
+
artifact_kind: z.ZodEnum<{
|
|
3730
|
+
file: "file";
|
|
3731
|
+
directory: "directory";
|
|
3732
|
+
}>;
|
|
3733
|
+
}, z.core.$strict>>;
|
|
3734
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3735
|
+
id: z.ZodString;
|
|
3736
|
+
kind: z.ZodEnum<{
|
|
3737
|
+
file_exists: "file_exists";
|
|
3738
|
+
min_file_count: "min_file_count";
|
|
3739
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
3740
|
+
frontmatter_valid: "frontmatter_valid";
|
|
3741
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
3742
|
+
wikilinks_valid: "wikilinks_valid";
|
|
3743
|
+
must_not_contain: "must_not_contain";
|
|
3744
|
+
must_contain: "must_contain";
|
|
3745
|
+
qa_match: "qa_match";
|
|
3746
|
+
}>;
|
|
3747
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3748
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3749
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
3750
|
+
}, z.core.$strict>>>;
|
|
3751
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
3752
|
+
}, z.core.$strict>>;
|
|
3753
|
+
}, z.core.$strict>>>>;
|
|
3754
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3755
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
3756
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3757
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3758
|
+
path: z.ZodOptional<z.ZodString>;
|
|
3759
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
3760
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
3761
|
+
note: z.ZodOptional<z.ZodString>;
|
|
3762
|
+
}, z.core.$loose>>>;
|
|
3763
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3764
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3765
|
+
}, z.core.$loose>>>;
|
|
3235
3766
|
}, z.core.$strict>>;
|
|
3236
3767
|
}, z.core.$strict>;
|
|
3237
3768
|
export declare const MethodListResponseSchema: z.ZodObject<{
|
|
@@ -3241,6 +3772,17 @@ export declare const MethodListResponseSchema: z.ZodObject<{
|
|
|
3241
3772
|
path: z.ZodString;
|
|
3242
3773
|
label: z.ZodOptional<z.ZodString>;
|
|
3243
3774
|
hint: z.ZodOptional<z.ZodString>;
|
|
3775
|
+
purpose: z.ZodOptional<z.ZodObject<{
|
|
3776
|
+
label: z.ZodString;
|
|
3777
|
+
task_hint: z.ZodString;
|
|
3778
|
+
}, z.core.$strict>>;
|
|
3779
|
+
inputs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3780
|
+
id: z.ZodString;
|
|
3781
|
+
label: z.ZodString;
|
|
3782
|
+
description: z.ZodString;
|
|
3783
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
3784
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3785
|
+
}, z.core.$strict>>>;
|
|
3244
3786
|
source_kind: z.ZodDefault<z.ZodEnum<{
|
|
3245
3787
|
builtin: "builtin";
|
|
3246
3788
|
local: "local";
|
|
@@ -3566,6 +4108,7 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3566
4108
|
"portable-context": "portable-context";
|
|
3567
4109
|
"preparation-config": "preparation-config";
|
|
3568
4110
|
"compile-run": "compile-run";
|
|
4111
|
+
"artifact-checks": "artifact-checks";
|
|
3569
4112
|
"readiness-checks": "readiness-checks";
|
|
3570
4113
|
"checks-current": "checks-current";
|
|
3571
4114
|
}>;
|
|
@@ -3613,6 +4156,7 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3613
4156
|
"portable-context": "portable-context";
|
|
3614
4157
|
"preparation-config": "preparation-config";
|
|
3615
4158
|
"compile-run": "compile-run";
|
|
4159
|
+
"artifact-checks": "artifact-checks";
|
|
3616
4160
|
"readiness-checks": "readiness-checks";
|
|
3617
4161
|
"checks-current": "checks-current";
|
|
3618
4162
|
}>;
|
|
@@ -3688,6 +4232,7 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3688
4232
|
"portable-context": "portable-context";
|
|
3689
4233
|
"preparation-config": "preparation-config";
|
|
3690
4234
|
"compile-run": "compile-run";
|
|
4235
|
+
"artifact-checks": "artifact-checks";
|
|
3691
4236
|
"readiness-checks": "readiness-checks";
|
|
3692
4237
|
"checks-current": "checks-current";
|
|
3693
4238
|
}>;
|
|
@@ -3735,6 +4280,7 @@ export declare const CompileRunListResponseSchema: z.ZodObject<{
|
|
|
3735
4280
|
"portable-context": "portable-context";
|
|
3736
4281
|
"preparation-config": "preparation-config";
|
|
3737
4282
|
"compile-run": "compile-run";
|
|
4283
|
+
"artifact-checks": "artifact-checks";
|
|
3738
4284
|
"readiness-checks": "readiness-checks";
|
|
3739
4285
|
"checks-current": "checks-current";
|
|
3740
4286
|
}>;
|
|
@@ -3968,6 +4514,7 @@ export declare const VerifyRunListResponseSchema: z.ZodObject<{
|
|
|
3968
4514
|
"portable-context": "portable-context";
|
|
3969
4515
|
"preparation-config": "preparation-config";
|
|
3970
4516
|
"compile-run": "compile-run";
|
|
4517
|
+
"artifact-checks": "artifact-checks";
|
|
3971
4518
|
"readiness-checks": "readiness-checks";
|
|
3972
4519
|
"checks-current": "checks-current";
|
|
3973
4520
|
}>;
|
|
@@ -4015,6 +4562,7 @@ export declare const VerifyRunListResponseSchema: z.ZodObject<{
|
|
|
4015
4562
|
"portable-context": "portable-context";
|
|
4016
4563
|
"preparation-config": "preparation-config";
|
|
4017
4564
|
"compile-run": "compile-run";
|
|
4565
|
+
"artifact-checks": "artifact-checks";
|
|
4018
4566
|
"readiness-checks": "readiness-checks";
|
|
4019
4567
|
"checks-current": "checks-current";
|
|
4020
4568
|
}>;
|
|
@@ -4205,6 +4753,7 @@ export declare const VerifyRunListResponseSchema: z.ZodObject<{
|
|
|
4205
4753
|
"portable-context": "portable-context";
|
|
4206
4754
|
"preparation-config": "preparation-config";
|
|
4207
4755
|
"compile-run": "compile-run";
|
|
4756
|
+
"artifact-checks": "artifact-checks";
|
|
4208
4757
|
"readiness-checks": "readiness-checks";
|
|
4209
4758
|
"checks-current": "checks-current";
|
|
4210
4759
|
}>;
|
|
@@ -4252,6 +4801,7 @@ export declare const VerifyRunListResponseSchema: z.ZodObject<{
|
|
|
4252
4801
|
"portable-context": "portable-context";
|
|
4253
4802
|
"preparation-config": "preparation-config";
|
|
4254
4803
|
"compile-run": "compile-run";
|
|
4804
|
+
"artifact-checks": "artifact-checks";
|
|
4255
4805
|
"readiness-checks": "readiness-checks";
|
|
4256
4806
|
"checks-current": "checks-current";
|
|
4257
4807
|
}>;
|
|
@@ -4370,6 +4920,7 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
|
|
|
4370
4920
|
"portable-context": "portable-context";
|
|
4371
4921
|
"preparation-config": "preparation-config";
|
|
4372
4922
|
"compile-run": "compile-run";
|
|
4923
|
+
"artifact-checks": "artifact-checks";
|
|
4373
4924
|
"readiness-checks": "readiness-checks";
|
|
4374
4925
|
"checks-current": "checks-current";
|
|
4375
4926
|
}>;
|
|
@@ -4417,6 +4968,7 @@ export declare const RunObservabilityListResponseSchema: z.ZodObject<{
|
|
|
4417
4968
|
"portable-context": "portable-context";
|
|
4418
4969
|
"preparation-config": "preparation-config";
|
|
4419
4970
|
"compile-run": "compile-run";
|
|
4971
|
+
"artifact-checks": "artifact-checks";
|
|
4420
4972
|
"readiness-checks": "readiness-checks";
|
|
4421
4973
|
"checks-current": "checks-current";
|
|
4422
4974
|
}>;
|
|
@@ -4524,10 +5076,10 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4524
5076
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4525
5077
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4526
5078
|
unknown: "unknown";
|
|
4527
|
-
mcp: "mcp";
|
|
4528
5079
|
"ui-chat": "ui-chat";
|
|
4529
5080
|
cli: "cli";
|
|
4530
5081
|
"agent-cli": "agent-cli";
|
|
5082
|
+
mcp: "mcp";
|
|
4531
5083
|
service: "service";
|
|
4532
5084
|
}>>;
|
|
4533
5085
|
created_at: z.ZodString;
|
|
@@ -4572,10 +5124,10 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4572
5124
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4573
5125
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4574
5126
|
unknown: "unknown";
|
|
4575
|
-
mcp: "mcp";
|
|
4576
5127
|
"ui-chat": "ui-chat";
|
|
4577
5128
|
cli: "cli";
|
|
4578
5129
|
"agent-cli": "agent-cli";
|
|
5130
|
+
mcp: "mcp";
|
|
4579
5131
|
service: "service";
|
|
4580
5132
|
}>>;
|
|
4581
5133
|
created_at: z.ZodString;
|
|
@@ -4629,10 +5181,10 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4629
5181
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4630
5182
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4631
5183
|
unknown: "unknown";
|
|
4632
|
-
mcp: "mcp";
|
|
4633
5184
|
"ui-chat": "ui-chat";
|
|
4634
5185
|
cli: "cli";
|
|
4635
5186
|
"agent-cli": "agent-cli";
|
|
5187
|
+
mcp: "mcp";
|
|
4636
5188
|
service: "service";
|
|
4637
5189
|
}>>;
|
|
4638
5190
|
created_at: z.ZodString;
|
|
@@ -4683,10 +5235,10 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4683
5235
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4684
5236
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4685
5237
|
unknown: "unknown";
|
|
4686
|
-
mcp: "mcp";
|
|
4687
5238
|
"ui-chat": "ui-chat";
|
|
4688
5239
|
cli: "cli";
|
|
4689
5240
|
"agent-cli": "agent-cli";
|
|
5241
|
+
mcp: "mcp";
|
|
4690
5242
|
service: "service";
|
|
4691
5243
|
}>>;
|
|
4692
5244
|
created_at: z.ZodString;
|
|
@@ -4736,10 +5288,10 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4736
5288
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4737
5289
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4738
5290
|
unknown: "unknown";
|
|
4739
|
-
mcp: "mcp";
|
|
4740
5291
|
"ui-chat": "ui-chat";
|
|
4741
5292
|
cli: "cli";
|
|
4742
5293
|
"agent-cli": "agent-cli";
|
|
5294
|
+
mcp: "mcp";
|
|
4743
5295
|
service: "service";
|
|
4744
5296
|
}>>;
|
|
4745
5297
|
created_at: z.ZodString;
|
|
@@ -4784,6 +5336,56 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4784
5336
|
}, z.core.$strip>>;
|
|
4785
5337
|
strictness: z.ZodOptional<z.ZodString>;
|
|
4786
5338
|
}, z.core.$strict>>>;
|
|
5339
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
5340
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5341
|
+
title: z.ZodString;
|
|
5342
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
5343
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5344
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5345
|
+
label: z.ZodString;
|
|
5346
|
+
}, z.core.$loose>]>>>;
|
|
5347
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
5348
|
+
path: z.ZodOptional<z.ZodString>;
|
|
5349
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
5350
|
+
kind: z.ZodLiteral<"path">;
|
|
5351
|
+
path: z.ZodString;
|
|
5352
|
+
artifact_kind: z.ZodEnum<{
|
|
5353
|
+
file: "file";
|
|
5354
|
+
directory: "directory";
|
|
5355
|
+
}>;
|
|
5356
|
+
}, z.core.$strict>>;
|
|
5357
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5358
|
+
id: z.ZodString;
|
|
5359
|
+
kind: z.ZodEnum<{
|
|
5360
|
+
file_exists: "file_exists";
|
|
5361
|
+
min_file_count: "min_file_count";
|
|
5362
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
5363
|
+
frontmatter_valid: "frontmatter_valid";
|
|
5364
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
5365
|
+
wikilinks_valid: "wikilinks_valid";
|
|
5366
|
+
must_not_contain: "must_not_contain";
|
|
5367
|
+
must_contain: "must_contain";
|
|
5368
|
+
qa_match: "qa_match";
|
|
5369
|
+
}>;
|
|
5370
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5371
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5372
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
5373
|
+
}, z.core.$strict>>>;
|
|
5374
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
5375
|
+
}, z.core.$strict>>;
|
|
5376
|
+
}, z.core.$strict>>>>;
|
|
5377
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5378
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
5379
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5380
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5381
|
+
path: z.ZodOptional<z.ZodString>;
|
|
5382
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
5383
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
5384
|
+
note: z.ZodOptional<z.ZodString>;
|
|
5385
|
+
}, z.core.$loose>>>;
|
|
5386
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5387
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5388
|
+
}, z.core.$loose>>>;
|
|
4787
5389
|
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4788
5390
|
id: z.ZodString;
|
|
4789
5391
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -4836,10 +5438,10 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4836
5438
|
method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4837
5439
|
client_origin: z.ZodDefault<z.ZodEnum<{
|
|
4838
5440
|
unknown: "unknown";
|
|
4839
|
-
mcp: "mcp";
|
|
4840
5441
|
"ui-chat": "ui-chat";
|
|
4841
5442
|
cli: "cli";
|
|
4842
5443
|
"agent-cli": "agent-cli";
|
|
5444
|
+
mcp: "mcp";
|
|
4843
5445
|
service: "service";
|
|
4844
5446
|
}>>;
|
|
4845
5447
|
created_at: z.ZodString;
|
|
@@ -4884,6 +5486,56 @@ export declare const ActionProposalListResponseSchema: z.ZodObject<{
|
|
|
4884
5486
|
}, z.core.$strip>>;
|
|
4885
5487
|
strictness: z.ZodOptional<z.ZodString>;
|
|
4886
5488
|
}, z.core.$strict>>>;
|
|
5489
|
+
requested_artifacts: z.ZodDefault<z.ZodArray<z.ZodPreprocess<z.ZodObject<{
|
|
5490
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5491
|
+
title: z.ZodString;
|
|
5492
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
5493
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5494
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5495
|
+
label: z.ZodString;
|
|
5496
|
+
}, z.core.$loose>]>>>;
|
|
5497
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
5498
|
+
path: z.ZodOptional<z.ZodString>;
|
|
5499
|
+
shape: z.ZodOptional<z.ZodObject<{
|
|
5500
|
+
kind: z.ZodLiteral<"path">;
|
|
5501
|
+
path: z.ZodString;
|
|
5502
|
+
artifact_kind: z.ZodEnum<{
|
|
5503
|
+
file: "file";
|
|
5504
|
+
directory: "directory";
|
|
5505
|
+
}>;
|
|
5506
|
+
}, z.core.$strict>>;
|
|
5507
|
+
checks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5508
|
+
id: z.ZodString;
|
|
5509
|
+
kind: z.ZodEnum<{
|
|
5510
|
+
file_exists: "file_exists";
|
|
5511
|
+
min_file_count: "min_file_count";
|
|
5512
|
+
min_file_count_matches_source: "min_file_count_matches_source";
|
|
5513
|
+
frontmatter_valid: "frontmatter_valid";
|
|
5514
|
+
frontmatter_required_keys: "frontmatter_required_keys";
|
|
5515
|
+
wikilinks_valid: "wikilinks_valid";
|
|
5516
|
+
must_not_contain: "must_not_contain";
|
|
5517
|
+
must_contain: "must_contain";
|
|
5518
|
+
qa_match: "qa_match";
|
|
5519
|
+
}>;
|
|
5520
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5521
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5522
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
5523
|
+
}, z.core.$strict>>>;
|
|
5524
|
+
stage_hint: z.ZodOptional<z.ZodString>;
|
|
5525
|
+
}, z.core.$strict>>;
|
|
5526
|
+
}, z.core.$strict>>>>;
|
|
5527
|
+
source_profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5528
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
5529
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
5530
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5531
|
+
path: z.ZodOptional<z.ZodString>;
|
|
5532
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
5533
|
+
page_count: z.ZodOptional<z.ZodNumber>;
|
|
5534
|
+
note: z.ZodOptional<z.ZodString>;
|
|
5535
|
+
}, z.core.$loose>>>;
|
|
5536
|
+
observations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5537
|
+
limitations: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5538
|
+
}, z.core.$loose>>>;
|
|
4887
5539
|
artifact_requirements: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
4888
5540
|
id: z.ZodString;
|
|
4889
5541
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -4948,6 +5600,7 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
|
|
|
4948
5600
|
"portable-context": "portable-context";
|
|
4949
5601
|
"preparation-config": "preparation-config";
|
|
4950
5602
|
"compile-run": "compile-run";
|
|
5603
|
+
"artifact-checks": "artifact-checks";
|
|
4951
5604
|
"readiness-checks": "readiness-checks";
|
|
4952
5605
|
"checks-current": "checks-current";
|
|
4953
5606
|
}>;
|
|
@@ -4995,6 +5648,7 @@ export declare const PortableContextListResponseSchema: z.ZodObject<{
|
|
|
4995
5648
|
"portable-context": "portable-context";
|
|
4996
5649
|
"preparation-config": "preparation-config";
|
|
4997
5650
|
"compile-run": "compile-run";
|
|
5651
|
+
"artifact-checks": "artifact-checks";
|
|
4998
5652
|
"readiness-checks": "readiness-checks";
|
|
4999
5653
|
"checks-current": "checks-current";
|
|
5000
5654
|
}>;
|
|
@@ -5061,6 +5715,7 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
|
|
|
5061
5715
|
"portable-context": "portable-context";
|
|
5062
5716
|
"preparation-config": "preparation-config";
|
|
5063
5717
|
"compile-run": "compile-run";
|
|
5718
|
+
"artifact-checks": "artifact-checks";
|
|
5064
5719
|
"readiness-checks": "readiness-checks";
|
|
5065
5720
|
"checks-current": "checks-current";
|
|
5066
5721
|
}>;
|
|
@@ -5108,6 +5763,7 @@ export declare const ReadinessListResponseSchema: z.ZodObject<{
|
|
|
5108
5763
|
"portable-context": "portable-context";
|
|
5109
5764
|
"preparation-config": "preparation-config";
|
|
5110
5765
|
"compile-run": "compile-run";
|
|
5766
|
+
"artifact-checks": "artifact-checks";
|
|
5111
5767
|
"readiness-checks": "readiness-checks";
|
|
5112
5768
|
"checks-current": "checks-current";
|
|
5113
5769
|
}>;
|