@ai-dev-orchestrator/schemas 0.1.1

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.
Files changed (103) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +51 -0
  3. package/dist/artifacts/agreement-artifacts.d.ts +311 -0
  4. package/dist/artifacts/agreement-artifacts.js +48 -0
  5. package/dist/artifacts/artifact-dependency-graph.d.ts +775 -0
  6. package/dist/artifacts/artifact-dependency-graph.js +57 -0
  7. package/dist/artifacts/artifact-system.d.ts +657 -0
  8. package/dist/artifacts/artifact-system.js +124 -0
  9. package/dist/artifacts/index.d.ts +3 -0
  10. package/dist/artifacts/index.js +3 -0
  11. package/dist/config/configuration.d.ts +324 -0
  12. package/dist/config/configuration.js +93 -0
  13. package/dist/config/event-bus-config.d.ts +153 -0
  14. package/dist/config/event-bus-config.js +27 -0
  15. package/dist/config/event-payloads.d.ts +919 -0
  16. package/dist/config/event-payloads.js +304 -0
  17. package/dist/config/event-system.d.ts +3231 -0
  18. package/dist/config/event-system.js +428 -0
  19. package/dist/config/event-types.d.ts +62 -0
  20. package/dist/config/event-types.js +66 -0
  21. package/dist/config/index.d.ts +5 -0
  22. package/dist/config/index.js +5 -0
  23. package/dist/dashboard/dashboard-api.d.ts +149 -0
  24. package/dist/dashboard/dashboard-api.js +80 -0
  25. package/dist/dashboard/dashboard-domain.d.ts +1076 -0
  26. package/dist/dashboard/dashboard-domain.js +305 -0
  27. package/dist/dashboard/index.d.ts +3 -0
  28. package/dist/dashboard/index.js +3 -0
  29. package/dist/dashboard/run-creation-params.d.ts +111 -0
  30. package/dist/dashboard/run-creation-params.js +14 -0
  31. package/dist/governance/governance.d.ts +1119 -0
  32. package/dist/governance/governance.js +111 -0
  33. package/dist/governance/index.d.ts +3 -0
  34. package/dist/governance/index.js +3 -0
  35. package/dist/governance/policy-engine.d.ts +634 -0
  36. package/dist/governance/policy-engine.js +214 -0
  37. package/dist/governance/review-resolution.d.ts +1053 -0
  38. package/dist/governance/review-resolution.js +67 -0
  39. package/dist/index.d.ts +10 -0
  40. package/dist/index.js +10 -0
  41. package/dist/observability/diagnostics.d.ts +185 -0
  42. package/dist/observability/diagnostics.js +63 -0
  43. package/dist/observability/index.d.ts +2 -0
  44. package/dist/observability/index.js +2 -0
  45. package/dist/observability/metrics.d.ts +187 -0
  46. package/dist/observability/metrics.js +67 -0
  47. package/dist/persistence/execution-analytics.d.ts +173 -0
  48. package/dist/persistence/execution-analytics.js +71 -0
  49. package/dist/persistence/index.d.ts +5 -0
  50. package/dist/persistence/index.js +5 -0
  51. package/dist/persistence/project-context.d.ts +164 -0
  52. package/dist/persistence/project-context.js +88 -0
  53. package/dist/persistence/repository-model.d.ts +27 -0
  54. package/dist/persistence/repository-model.js +16 -0
  55. package/dist/persistence/run-manifest.d.ts +422 -0
  56. package/dist/persistence/run-manifest.js +118 -0
  57. package/dist/persistence/state-persistence.d.ts +276 -0
  58. package/dist/persistence/state-persistence.js +83 -0
  59. package/dist/runner/built-in-runner-ids.d.ts +8 -0
  60. package/dist/runner/built-in-runner-ids.js +11 -0
  61. package/dist/runner/collaboration-model.d.ts +100 -0
  62. package/dist/runner/collaboration-model.js +19 -0
  63. package/dist/runner/confidence.d.ts +17 -0
  64. package/dist/runner/confidence.js +11 -0
  65. package/dist/runner/index.d.ts +8 -0
  66. package/dist/runner/index.js +8 -0
  67. package/dist/runner/permission-approval.d.ts +38 -0
  68. package/dist/runner/permission-approval.js +14 -0
  69. package/dist/runner/prompt-engine.d.ts +1467 -0
  70. package/dist/runner/prompt-engine.js +193 -0
  71. package/dist/runner/role-system.d.ts +458 -0
  72. package/dist/runner/role-system.js +94 -0
  73. package/dist/runner/runner-system.d.ts +1721 -0
  74. package/dist/runner/runner-system.js +268 -0
  75. package/dist/runner/task-brief.d.ts +18 -0
  76. package/dist/runner/task-brief.js +12 -0
  77. package/dist/shared/index.d.ts +3 -0
  78. package/dist/shared/index.js +3 -0
  79. package/dist/shared/shared.d.ts +30 -0
  80. package/dist/shared/shared.js +27 -0
  81. package/dist/shared/string-enums.d.ts +59 -0
  82. package/dist/shared/string-enums.js +24 -0
  83. package/dist/shared/utils.d.ts +25 -0
  84. package/dist/shared/utils.js +22 -0
  85. package/dist/specification/canonical-specification.d.ts +475 -0
  86. package/dist/specification/canonical-specification.js +151 -0
  87. package/dist/specification/index.d.ts +3 -0
  88. package/dist/specification/index.js +3 -0
  89. package/dist/specification/intake.d.ts +419 -0
  90. package/dist/specification/intake.js +70 -0
  91. package/dist/specification/iteration-contracts.d.ts +421 -0
  92. package/dist/specification/iteration-contracts.js +61 -0
  93. package/dist/workflow/index.d.ts +4 -0
  94. package/dist/workflow/index.js +4 -0
  95. package/dist/workflow/workflow-dsl.d.ts +81 -0
  96. package/dist/workflow/workflow-dsl.js +38 -0
  97. package/dist/workflow/workflow-engine.d.ts +5788 -0
  98. package/dist/workflow/workflow-engine.js +414 -0
  99. package/dist/workflow/workflow-file.d.ts +331 -0
  100. package/dist/workflow/workflow-file.js +41 -0
  101. package/dist/workflow/workflow-journal.d.ts +520 -0
  102. package/dist/workflow/workflow-journal.js +151 -0
  103. package/package.json +39 -0
@@ -0,0 +1,1053 @@
1
+ import { z } from 'zod/v4';
2
+ export declare const findingBlockingSchema: z.ZodEnum<{
3
+ must_fix: "must_fix";
4
+ should_fix: "should_fix";
5
+ nit: "nit";
6
+ }>;
7
+ export type FindingBlocking = z.infer<typeof findingBlockingSchema>;
8
+ export declare const findingCategorySchema: z.ZodEnum<{
9
+ completeness: "completeness";
10
+ correctness: "correctness";
11
+ consistency: "consistency";
12
+ security: "security";
13
+ performance: "performance";
14
+ maintainability: "maintainability";
15
+ style: "style";
16
+ documentation: "documentation";
17
+ test_coverage: "test_coverage";
18
+ architecture: "architecture";
19
+ other: "other";
20
+ }>;
21
+ export type FindingCategory = z.infer<typeof findingCategorySchema>;
22
+ export declare const findingStatusSchema: z.ZodEnum<{
23
+ rejected: "rejected";
24
+ escalated: "escalated";
25
+ open: "open";
26
+ addressed: "addressed";
27
+ accepted: "accepted";
28
+ }>;
29
+ export type FindingStatus = z.infer<typeof findingStatusSchema>;
30
+ export declare const findingLocationSchema: z.ZodObject<{
31
+ artifactRef: z.ZodObject<{
32
+ type: z.ZodEnum<{
33
+ intake_requirements: "intake_requirements";
34
+ canonical_specification: "canonical_specification";
35
+ clarification_questions: "clarification_questions";
36
+ clarification_answers: "clarification_answers";
37
+ plan: "plan";
38
+ plan_review: "plan_review";
39
+ test_plan: "test_plan";
40
+ implementation: "implementation";
41
+ static_review: "static_review";
42
+ security_review: "security_review";
43
+ performance_review: "performance_review";
44
+ adversarial_review: "adversarial_review";
45
+ design_review: "design_review";
46
+ docs_review: "docs_review";
47
+ ux_review: "ux_review";
48
+ review_report: "review_report";
49
+ remediation_plan: "remediation_plan";
50
+ verification: "verification";
51
+ judge_decision: "judge_decision";
52
+ planning_agreement: "planning_agreement";
53
+ implementation_agreement: "implementation_agreement";
54
+ verification_agreement: "verification_agreement";
55
+ release_summary: "release_summary";
56
+ release_agreement: "release_agreement";
57
+ escalation_context: "escalation_context";
58
+ run_manifest: "run_manifest";
59
+ codebase_context: "codebase_context";
60
+ test_suite: "test_suite";
61
+ acceptance_validation: "acceptance_validation";
62
+ review_findings: "review_findings";
63
+ task_breakdown: "task_breakdown";
64
+ decomposition_review: "decomposition_review";
65
+ task_specifications: "task_specifications";
66
+ pr_diff_context: "pr_diff_context";
67
+ }>;
68
+ name: z.ZodString;
69
+ version: z.ZodNumber;
70
+ checksum: z.ZodString;
71
+ }, z.core.$strip>;
72
+ section: z.ZodOptional<z.ZodString>;
73
+ line: z.ZodOptional<z.ZodNumber>;
74
+ snippet: z.ZodOptional<z.ZodString>;
75
+ }, z.core.$strip>;
76
+ export type FindingLocation = z.infer<typeof findingLocationSchema>;
77
+ export declare const findingResolutionSchema: z.ZodObject<{
78
+ status: z.ZodEnum<{
79
+ rejected: "rejected";
80
+ escalated: "escalated";
81
+ open: "open";
82
+ addressed: "addressed";
83
+ accepted: "accepted";
84
+ }>;
85
+ resolvedInArtifact: z.ZodOptional<z.ZodObject<{
86
+ type: z.ZodEnum<{
87
+ intake_requirements: "intake_requirements";
88
+ canonical_specification: "canonical_specification";
89
+ clarification_questions: "clarification_questions";
90
+ clarification_answers: "clarification_answers";
91
+ plan: "plan";
92
+ plan_review: "plan_review";
93
+ test_plan: "test_plan";
94
+ implementation: "implementation";
95
+ static_review: "static_review";
96
+ security_review: "security_review";
97
+ performance_review: "performance_review";
98
+ adversarial_review: "adversarial_review";
99
+ design_review: "design_review";
100
+ docs_review: "docs_review";
101
+ ux_review: "ux_review";
102
+ review_report: "review_report";
103
+ remediation_plan: "remediation_plan";
104
+ verification: "verification";
105
+ judge_decision: "judge_decision";
106
+ planning_agreement: "planning_agreement";
107
+ implementation_agreement: "implementation_agreement";
108
+ verification_agreement: "verification_agreement";
109
+ release_summary: "release_summary";
110
+ release_agreement: "release_agreement";
111
+ escalation_context: "escalation_context";
112
+ run_manifest: "run_manifest";
113
+ codebase_context: "codebase_context";
114
+ test_suite: "test_suite";
115
+ acceptance_validation: "acceptance_validation";
116
+ review_findings: "review_findings";
117
+ task_breakdown: "task_breakdown";
118
+ decomposition_review: "decomposition_review";
119
+ task_specifications: "task_specifications";
120
+ pr_diff_context: "pr_diff_context";
121
+ }>;
122
+ name: z.ZodString;
123
+ version: z.ZodNumber;
124
+ checksum: z.ZodString;
125
+ }, z.core.$strip>>;
126
+ resolvedBy: z.ZodString;
127
+ rationale: z.ZodString;
128
+ timestamp: z.ZodString;
129
+ }, z.core.$strip>;
130
+ export type FindingResolution = z.infer<typeof findingResolutionSchema>;
131
+ export declare const findingSchema: z.ZodObject<{
132
+ id: z.ZodString;
133
+ severity: z.ZodString;
134
+ blocking: z.ZodEnum<{
135
+ must_fix: "must_fix";
136
+ should_fix: "should_fix";
137
+ nit: "nit";
138
+ }>;
139
+ category: z.ZodEnum<{
140
+ completeness: "completeness";
141
+ correctness: "correctness";
142
+ consistency: "consistency";
143
+ security: "security";
144
+ performance: "performance";
145
+ maintainability: "maintainability";
146
+ style: "style";
147
+ documentation: "documentation";
148
+ test_coverage: "test_coverage";
149
+ architecture: "architecture";
150
+ other: "other";
151
+ }>;
152
+ title: z.ZodString;
153
+ description: z.ZodString;
154
+ location: z.ZodOptional<z.ZodObject<{
155
+ artifactRef: z.ZodObject<{
156
+ type: z.ZodEnum<{
157
+ intake_requirements: "intake_requirements";
158
+ canonical_specification: "canonical_specification";
159
+ clarification_questions: "clarification_questions";
160
+ clarification_answers: "clarification_answers";
161
+ plan: "plan";
162
+ plan_review: "plan_review";
163
+ test_plan: "test_plan";
164
+ implementation: "implementation";
165
+ static_review: "static_review";
166
+ security_review: "security_review";
167
+ performance_review: "performance_review";
168
+ adversarial_review: "adversarial_review";
169
+ design_review: "design_review";
170
+ docs_review: "docs_review";
171
+ ux_review: "ux_review";
172
+ review_report: "review_report";
173
+ remediation_plan: "remediation_plan";
174
+ verification: "verification";
175
+ judge_decision: "judge_decision";
176
+ planning_agreement: "planning_agreement";
177
+ implementation_agreement: "implementation_agreement";
178
+ verification_agreement: "verification_agreement";
179
+ release_summary: "release_summary";
180
+ release_agreement: "release_agreement";
181
+ escalation_context: "escalation_context";
182
+ run_manifest: "run_manifest";
183
+ codebase_context: "codebase_context";
184
+ test_suite: "test_suite";
185
+ acceptance_validation: "acceptance_validation";
186
+ review_findings: "review_findings";
187
+ task_breakdown: "task_breakdown";
188
+ decomposition_review: "decomposition_review";
189
+ task_specifications: "task_specifications";
190
+ pr_diff_context: "pr_diff_context";
191
+ }>;
192
+ name: z.ZodString;
193
+ version: z.ZodNumber;
194
+ checksum: z.ZodString;
195
+ }, z.core.$strip>;
196
+ section: z.ZodOptional<z.ZodString>;
197
+ line: z.ZodOptional<z.ZodNumber>;
198
+ snippet: z.ZodOptional<z.ZodString>;
199
+ }, z.core.$strip>>;
200
+ suggestedFix: z.ZodOptional<z.ZodString>;
201
+ status: z.ZodEnum<{
202
+ rejected: "rejected";
203
+ escalated: "escalated";
204
+ open: "open";
205
+ addressed: "addressed";
206
+ accepted: "accepted";
207
+ }>;
208
+ resolution: z.ZodOptional<z.ZodObject<{
209
+ status: z.ZodEnum<{
210
+ rejected: "rejected";
211
+ escalated: "escalated";
212
+ open: "open";
213
+ addressed: "addressed";
214
+ accepted: "accepted";
215
+ }>;
216
+ resolvedInArtifact: z.ZodOptional<z.ZodObject<{
217
+ type: z.ZodEnum<{
218
+ intake_requirements: "intake_requirements";
219
+ canonical_specification: "canonical_specification";
220
+ clarification_questions: "clarification_questions";
221
+ clarification_answers: "clarification_answers";
222
+ plan: "plan";
223
+ plan_review: "plan_review";
224
+ test_plan: "test_plan";
225
+ implementation: "implementation";
226
+ static_review: "static_review";
227
+ security_review: "security_review";
228
+ performance_review: "performance_review";
229
+ adversarial_review: "adversarial_review";
230
+ design_review: "design_review";
231
+ docs_review: "docs_review";
232
+ ux_review: "ux_review";
233
+ review_report: "review_report";
234
+ remediation_plan: "remediation_plan";
235
+ verification: "verification";
236
+ judge_decision: "judge_decision";
237
+ planning_agreement: "planning_agreement";
238
+ implementation_agreement: "implementation_agreement";
239
+ verification_agreement: "verification_agreement";
240
+ release_summary: "release_summary";
241
+ release_agreement: "release_agreement";
242
+ escalation_context: "escalation_context";
243
+ run_manifest: "run_manifest";
244
+ codebase_context: "codebase_context";
245
+ test_suite: "test_suite";
246
+ acceptance_validation: "acceptance_validation";
247
+ review_findings: "review_findings";
248
+ task_breakdown: "task_breakdown";
249
+ decomposition_review: "decomposition_review";
250
+ task_specifications: "task_specifications";
251
+ pr_diff_context: "pr_diff_context";
252
+ }>;
253
+ name: z.ZodString;
254
+ version: z.ZodNumber;
255
+ checksum: z.ZodString;
256
+ }, z.core.$strip>>;
257
+ resolvedBy: z.ZodString;
258
+ rationale: z.ZodString;
259
+ timestamp: z.ZodString;
260
+ }, z.core.$strip>>;
261
+ supersedes: z.ZodOptional<z.ZodString>;
262
+ }, z.core.$strip>;
263
+ export type Finding = z.infer<typeof findingSchema>;
264
+ export declare const aggregatedFindingsSchema: z.ZodObject<{
265
+ total: z.ZodNumber;
266
+ bySeverity: z.ZodRecord<z.ZodString, z.ZodNumber>;
267
+ byStatus: z.ZodRecord<z.ZodString, z.ZodNumber>;
268
+ byCategory: z.ZodRecord<z.ZodString, z.ZodNumber>;
269
+ blocking: z.ZodReadonly<z.ZodArray<z.ZodObject<{
270
+ id: z.ZodString;
271
+ severity: z.ZodString;
272
+ blocking: z.ZodEnum<{
273
+ must_fix: "must_fix";
274
+ should_fix: "should_fix";
275
+ nit: "nit";
276
+ }>;
277
+ category: z.ZodEnum<{
278
+ completeness: "completeness";
279
+ correctness: "correctness";
280
+ consistency: "consistency";
281
+ security: "security";
282
+ performance: "performance";
283
+ maintainability: "maintainability";
284
+ style: "style";
285
+ documentation: "documentation";
286
+ test_coverage: "test_coverage";
287
+ architecture: "architecture";
288
+ other: "other";
289
+ }>;
290
+ title: z.ZodString;
291
+ description: z.ZodString;
292
+ location: z.ZodOptional<z.ZodObject<{
293
+ artifactRef: z.ZodObject<{
294
+ type: z.ZodEnum<{
295
+ intake_requirements: "intake_requirements";
296
+ canonical_specification: "canonical_specification";
297
+ clarification_questions: "clarification_questions";
298
+ clarification_answers: "clarification_answers";
299
+ plan: "plan";
300
+ plan_review: "plan_review";
301
+ test_plan: "test_plan";
302
+ implementation: "implementation";
303
+ static_review: "static_review";
304
+ security_review: "security_review";
305
+ performance_review: "performance_review";
306
+ adversarial_review: "adversarial_review";
307
+ design_review: "design_review";
308
+ docs_review: "docs_review";
309
+ ux_review: "ux_review";
310
+ review_report: "review_report";
311
+ remediation_plan: "remediation_plan";
312
+ verification: "verification";
313
+ judge_decision: "judge_decision";
314
+ planning_agreement: "planning_agreement";
315
+ implementation_agreement: "implementation_agreement";
316
+ verification_agreement: "verification_agreement";
317
+ release_summary: "release_summary";
318
+ release_agreement: "release_agreement";
319
+ escalation_context: "escalation_context";
320
+ run_manifest: "run_manifest";
321
+ codebase_context: "codebase_context";
322
+ test_suite: "test_suite";
323
+ acceptance_validation: "acceptance_validation";
324
+ review_findings: "review_findings";
325
+ task_breakdown: "task_breakdown";
326
+ decomposition_review: "decomposition_review";
327
+ task_specifications: "task_specifications";
328
+ pr_diff_context: "pr_diff_context";
329
+ }>;
330
+ name: z.ZodString;
331
+ version: z.ZodNumber;
332
+ checksum: z.ZodString;
333
+ }, z.core.$strip>;
334
+ section: z.ZodOptional<z.ZodString>;
335
+ line: z.ZodOptional<z.ZodNumber>;
336
+ snippet: z.ZodOptional<z.ZodString>;
337
+ }, z.core.$strip>>;
338
+ suggestedFix: z.ZodOptional<z.ZodString>;
339
+ status: z.ZodEnum<{
340
+ rejected: "rejected";
341
+ escalated: "escalated";
342
+ open: "open";
343
+ addressed: "addressed";
344
+ accepted: "accepted";
345
+ }>;
346
+ resolution: z.ZodOptional<z.ZodObject<{
347
+ status: z.ZodEnum<{
348
+ rejected: "rejected";
349
+ escalated: "escalated";
350
+ open: "open";
351
+ addressed: "addressed";
352
+ accepted: "accepted";
353
+ }>;
354
+ resolvedInArtifact: z.ZodOptional<z.ZodObject<{
355
+ type: z.ZodEnum<{
356
+ intake_requirements: "intake_requirements";
357
+ canonical_specification: "canonical_specification";
358
+ clarification_questions: "clarification_questions";
359
+ clarification_answers: "clarification_answers";
360
+ plan: "plan";
361
+ plan_review: "plan_review";
362
+ test_plan: "test_plan";
363
+ implementation: "implementation";
364
+ static_review: "static_review";
365
+ security_review: "security_review";
366
+ performance_review: "performance_review";
367
+ adversarial_review: "adversarial_review";
368
+ design_review: "design_review";
369
+ docs_review: "docs_review";
370
+ ux_review: "ux_review";
371
+ review_report: "review_report";
372
+ remediation_plan: "remediation_plan";
373
+ verification: "verification";
374
+ judge_decision: "judge_decision";
375
+ planning_agreement: "planning_agreement";
376
+ implementation_agreement: "implementation_agreement";
377
+ verification_agreement: "verification_agreement";
378
+ release_summary: "release_summary";
379
+ release_agreement: "release_agreement";
380
+ escalation_context: "escalation_context";
381
+ run_manifest: "run_manifest";
382
+ codebase_context: "codebase_context";
383
+ test_suite: "test_suite";
384
+ acceptance_validation: "acceptance_validation";
385
+ review_findings: "review_findings";
386
+ task_breakdown: "task_breakdown";
387
+ decomposition_review: "decomposition_review";
388
+ task_specifications: "task_specifications";
389
+ pr_diff_context: "pr_diff_context";
390
+ }>;
391
+ name: z.ZodString;
392
+ version: z.ZodNumber;
393
+ checksum: z.ZodString;
394
+ }, z.core.$strip>>;
395
+ resolvedBy: z.ZodString;
396
+ rationale: z.ZodString;
397
+ timestamp: z.ZodString;
398
+ }, z.core.$strip>>;
399
+ supersedes: z.ZodOptional<z.ZodString>;
400
+ }, z.core.$strip>>>;
401
+ nonBlocking: z.ZodReadonly<z.ZodArray<z.ZodObject<{
402
+ id: z.ZodString;
403
+ severity: z.ZodString;
404
+ blocking: z.ZodEnum<{
405
+ must_fix: "must_fix";
406
+ should_fix: "should_fix";
407
+ nit: "nit";
408
+ }>;
409
+ category: z.ZodEnum<{
410
+ completeness: "completeness";
411
+ correctness: "correctness";
412
+ consistency: "consistency";
413
+ security: "security";
414
+ performance: "performance";
415
+ maintainability: "maintainability";
416
+ style: "style";
417
+ documentation: "documentation";
418
+ test_coverage: "test_coverage";
419
+ architecture: "architecture";
420
+ other: "other";
421
+ }>;
422
+ title: z.ZodString;
423
+ description: z.ZodString;
424
+ location: z.ZodOptional<z.ZodObject<{
425
+ artifactRef: z.ZodObject<{
426
+ type: z.ZodEnum<{
427
+ intake_requirements: "intake_requirements";
428
+ canonical_specification: "canonical_specification";
429
+ clarification_questions: "clarification_questions";
430
+ clarification_answers: "clarification_answers";
431
+ plan: "plan";
432
+ plan_review: "plan_review";
433
+ test_plan: "test_plan";
434
+ implementation: "implementation";
435
+ static_review: "static_review";
436
+ security_review: "security_review";
437
+ performance_review: "performance_review";
438
+ adversarial_review: "adversarial_review";
439
+ design_review: "design_review";
440
+ docs_review: "docs_review";
441
+ ux_review: "ux_review";
442
+ review_report: "review_report";
443
+ remediation_plan: "remediation_plan";
444
+ verification: "verification";
445
+ judge_decision: "judge_decision";
446
+ planning_agreement: "planning_agreement";
447
+ implementation_agreement: "implementation_agreement";
448
+ verification_agreement: "verification_agreement";
449
+ release_summary: "release_summary";
450
+ release_agreement: "release_agreement";
451
+ escalation_context: "escalation_context";
452
+ run_manifest: "run_manifest";
453
+ codebase_context: "codebase_context";
454
+ test_suite: "test_suite";
455
+ acceptance_validation: "acceptance_validation";
456
+ review_findings: "review_findings";
457
+ task_breakdown: "task_breakdown";
458
+ decomposition_review: "decomposition_review";
459
+ task_specifications: "task_specifications";
460
+ pr_diff_context: "pr_diff_context";
461
+ }>;
462
+ name: z.ZodString;
463
+ version: z.ZodNumber;
464
+ checksum: z.ZodString;
465
+ }, z.core.$strip>;
466
+ section: z.ZodOptional<z.ZodString>;
467
+ line: z.ZodOptional<z.ZodNumber>;
468
+ snippet: z.ZodOptional<z.ZodString>;
469
+ }, z.core.$strip>>;
470
+ suggestedFix: z.ZodOptional<z.ZodString>;
471
+ status: z.ZodEnum<{
472
+ rejected: "rejected";
473
+ escalated: "escalated";
474
+ open: "open";
475
+ addressed: "addressed";
476
+ accepted: "accepted";
477
+ }>;
478
+ resolution: z.ZodOptional<z.ZodObject<{
479
+ status: z.ZodEnum<{
480
+ rejected: "rejected";
481
+ escalated: "escalated";
482
+ open: "open";
483
+ addressed: "addressed";
484
+ accepted: "accepted";
485
+ }>;
486
+ resolvedInArtifact: z.ZodOptional<z.ZodObject<{
487
+ type: z.ZodEnum<{
488
+ intake_requirements: "intake_requirements";
489
+ canonical_specification: "canonical_specification";
490
+ clarification_questions: "clarification_questions";
491
+ clarification_answers: "clarification_answers";
492
+ plan: "plan";
493
+ plan_review: "plan_review";
494
+ test_plan: "test_plan";
495
+ implementation: "implementation";
496
+ static_review: "static_review";
497
+ security_review: "security_review";
498
+ performance_review: "performance_review";
499
+ adversarial_review: "adversarial_review";
500
+ design_review: "design_review";
501
+ docs_review: "docs_review";
502
+ ux_review: "ux_review";
503
+ review_report: "review_report";
504
+ remediation_plan: "remediation_plan";
505
+ verification: "verification";
506
+ judge_decision: "judge_decision";
507
+ planning_agreement: "planning_agreement";
508
+ implementation_agreement: "implementation_agreement";
509
+ verification_agreement: "verification_agreement";
510
+ release_summary: "release_summary";
511
+ release_agreement: "release_agreement";
512
+ escalation_context: "escalation_context";
513
+ run_manifest: "run_manifest";
514
+ codebase_context: "codebase_context";
515
+ test_suite: "test_suite";
516
+ acceptance_validation: "acceptance_validation";
517
+ review_findings: "review_findings";
518
+ task_breakdown: "task_breakdown";
519
+ decomposition_review: "decomposition_review";
520
+ task_specifications: "task_specifications";
521
+ pr_diff_context: "pr_diff_context";
522
+ }>;
523
+ name: z.ZodString;
524
+ version: z.ZodNumber;
525
+ checksum: z.ZodString;
526
+ }, z.core.$strip>>;
527
+ resolvedBy: z.ZodString;
528
+ rationale: z.ZodString;
529
+ timestamp: z.ZodString;
530
+ }, z.core.$strip>>;
531
+ supersedes: z.ZodOptional<z.ZodString>;
532
+ }, z.core.$strip>>>;
533
+ }, z.core.$strip>;
534
+ export type AggregatedFindings = z.infer<typeof aggregatedFindingsSchema>;
535
+ export declare const correlatedFindingSchema: z.ZodObject<{
536
+ finding: z.ZodObject<{
537
+ id: z.ZodString;
538
+ severity: z.ZodString;
539
+ blocking: z.ZodEnum<{
540
+ must_fix: "must_fix";
541
+ should_fix: "should_fix";
542
+ nit: "nit";
543
+ }>;
544
+ category: z.ZodEnum<{
545
+ completeness: "completeness";
546
+ correctness: "correctness";
547
+ consistency: "consistency";
548
+ security: "security";
549
+ performance: "performance";
550
+ maintainability: "maintainability";
551
+ style: "style";
552
+ documentation: "documentation";
553
+ test_coverage: "test_coverage";
554
+ architecture: "architecture";
555
+ other: "other";
556
+ }>;
557
+ title: z.ZodString;
558
+ description: z.ZodString;
559
+ location: z.ZodOptional<z.ZodObject<{
560
+ artifactRef: z.ZodObject<{
561
+ type: z.ZodEnum<{
562
+ intake_requirements: "intake_requirements";
563
+ canonical_specification: "canonical_specification";
564
+ clarification_questions: "clarification_questions";
565
+ clarification_answers: "clarification_answers";
566
+ plan: "plan";
567
+ plan_review: "plan_review";
568
+ test_plan: "test_plan";
569
+ implementation: "implementation";
570
+ static_review: "static_review";
571
+ security_review: "security_review";
572
+ performance_review: "performance_review";
573
+ adversarial_review: "adversarial_review";
574
+ design_review: "design_review";
575
+ docs_review: "docs_review";
576
+ ux_review: "ux_review";
577
+ review_report: "review_report";
578
+ remediation_plan: "remediation_plan";
579
+ verification: "verification";
580
+ judge_decision: "judge_decision";
581
+ planning_agreement: "planning_agreement";
582
+ implementation_agreement: "implementation_agreement";
583
+ verification_agreement: "verification_agreement";
584
+ release_summary: "release_summary";
585
+ release_agreement: "release_agreement";
586
+ escalation_context: "escalation_context";
587
+ run_manifest: "run_manifest";
588
+ codebase_context: "codebase_context";
589
+ test_suite: "test_suite";
590
+ acceptance_validation: "acceptance_validation";
591
+ review_findings: "review_findings";
592
+ task_breakdown: "task_breakdown";
593
+ decomposition_review: "decomposition_review";
594
+ task_specifications: "task_specifications";
595
+ pr_diff_context: "pr_diff_context";
596
+ }>;
597
+ name: z.ZodString;
598
+ version: z.ZodNumber;
599
+ checksum: z.ZodString;
600
+ }, z.core.$strip>;
601
+ section: z.ZodOptional<z.ZodString>;
602
+ line: z.ZodOptional<z.ZodNumber>;
603
+ snippet: z.ZodOptional<z.ZodString>;
604
+ }, z.core.$strip>>;
605
+ suggestedFix: z.ZodOptional<z.ZodString>;
606
+ status: z.ZodEnum<{
607
+ rejected: "rejected";
608
+ escalated: "escalated";
609
+ open: "open";
610
+ addressed: "addressed";
611
+ accepted: "accepted";
612
+ }>;
613
+ resolution: z.ZodOptional<z.ZodObject<{
614
+ status: z.ZodEnum<{
615
+ rejected: "rejected";
616
+ escalated: "escalated";
617
+ open: "open";
618
+ addressed: "addressed";
619
+ accepted: "accepted";
620
+ }>;
621
+ resolvedInArtifact: z.ZodOptional<z.ZodObject<{
622
+ type: z.ZodEnum<{
623
+ intake_requirements: "intake_requirements";
624
+ canonical_specification: "canonical_specification";
625
+ clarification_questions: "clarification_questions";
626
+ clarification_answers: "clarification_answers";
627
+ plan: "plan";
628
+ plan_review: "plan_review";
629
+ test_plan: "test_plan";
630
+ implementation: "implementation";
631
+ static_review: "static_review";
632
+ security_review: "security_review";
633
+ performance_review: "performance_review";
634
+ adversarial_review: "adversarial_review";
635
+ design_review: "design_review";
636
+ docs_review: "docs_review";
637
+ ux_review: "ux_review";
638
+ review_report: "review_report";
639
+ remediation_plan: "remediation_plan";
640
+ verification: "verification";
641
+ judge_decision: "judge_decision";
642
+ planning_agreement: "planning_agreement";
643
+ implementation_agreement: "implementation_agreement";
644
+ verification_agreement: "verification_agreement";
645
+ release_summary: "release_summary";
646
+ release_agreement: "release_agreement";
647
+ escalation_context: "escalation_context";
648
+ run_manifest: "run_manifest";
649
+ codebase_context: "codebase_context";
650
+ test_suite: "test_suite";
651
+ acceptance_validation: "acceptance_validation";
652
+ review_findings: "review_findings";
653
+ task_breakdown: "task_breakdown";
654
+ decomposition_review: "decomposition_review";
655
+ task_specifications: "task_specifications";
656
+ pr_diff_context: "pr_diff_context";
657
+ }>;
658
+ name: z.ZodString;
659
+ version: z.ZodNumber;
660
+ checksum: z.ZodString;
661
+ }, z.core.$strip>>;
662
+ resolvedBy: z.ZodString;
663
+ rationale: z.ZodString;
664
+ timestamp: z.ZodString;
665
+ }, z.core.$strip>>;
666
+ supersedes: z.ZodOptional<z.ZodString>;
667
+ }, z.core.$strip>;
668
+ producedIn: z.ZodObject<{
669
+ type: z.ZodEnum<{
670
+ intake_requirements: "intake_requirements";
671
+ canonical_specification: "canonical_specification";
672
+ clarification_questions: "clarification_questions";
673
+ clarification_answers: "clarification_answers";
674
+ plan: "plan";
675
+ plan_review: "plan_review";
676
+ test_plan: "test_plan";
677
+ implementation: "implementation";
678
+ static_review: "static_review";
679
+ security_review: "security_review";
680
+ performance_review: "performance_review";
681
+ adversarial_review: "adversarial_review";
682
+ design_review: "design_review";
683
+ docs_review: "docs_review";
684
+ ux_review: "ux_review";
685
+ review_report: "review_report";
686
+ remediation_plan: "remediation_plan";
687
+ verification: "verification";
688
+ judge_decision: "judge_decision";
689
+ planning_agreement: "planning_agreement";
690
+ implementation_agreement: "implementation_agreement";
691
+ verification_agreement: "verification_agreement";
692
+ release_summary: "release_summary";
693
+ release_agreement: "release_agreement";
694
+ escalation_context: "escalation_context";
695
+ run_manifest: "run_manifest";
696
+ codebase_context: "codebase_context";
697
+ test_suite: "test_suite";
698
+ acceptance_validation: "acceptance_validation";
699
+ review_findings: "review_findings";
700
+ task_breakdown: "task_breakdown";
701
+ decomposition_review: "decomposition_review";
702
+ task_specifications: "task_specifications";
703
+ pr_diff_context: "pr_diff_context";
704
+ }>;
705
+ name: z.ZodString;
706
+ version: z.ZodNumber;
707
+ checksum: z.ZodString;
708
+ }, z.core.$strip>;
709
+ addressedIn: z.ZodOptional<z.ZodObject<{
710
+ type: z.ZodEnum<{
711
+ intake_requirements: "intake_requirements";
712
+ canonical_specification: "canonical_specification";
713
+ clarification_questions: "clarification_questions";
714
+ clarification_answers: "clarification_answers";
715
+ plan: "plan";
716
+ plan_review: "plan_review";
717
+ test_plan: "test_plan";
718
+ implementation: "implementation";
719
+ static_review: "static_review";
720
+ security_review: "security_review";
721
+ performance_review: "performance_review";
722
+ adversarial_review: "adversarial_review";
723
+ design_review: "design_review";
724
+ docs_review: "docs_review";
725
+ ux_review: "ux_review";
726
+ review_report: "review_report";
727
+ remediation_plan: "remediation_plan";
728
+ verification: "verification";
729
+ judge_decision: "judge_decision";
730
+ planning_agreement: "planning_agreement";
731
+ implementation_agreement: "implementation_agreement";
732
+ verification_agreement: "verification_agreement";
733
+ release_summary: "release_summary";
734
+ release_agreement: "release_agreement";
735
+ escalation_context: "escalation_context";
736
+ run_manifest: "run_manifest";
737
+ codebase_context: "codebase_context";
738
+ test_suite: "test_suite";
739
+ acceptance_validation: "acceptance_validation";
740
+ review_findings: "review_findings";
741
+ task_breakdown: "task_breakdown";
742
+ decomposition_review: "decomposition_review";
743
+ task_specifications: "task_specifications";
744
+ pr_diff_context: "pr_diff_context";
745
+ }>;
746
+ name: z.ZodString;
747
+ version: z.ZodNumber;
748
+ checksum: z.ZodString;
749
+ }, z.core.$strip>>;
750
+ verifiedIn: z.ZodOptional<z.ZodObject<{
751
+ type: z.ZodEnum<{
752
+ intake_requirements: "intake_requirements";
753
+ canonical_specification: "canonical_specification";
754
+ clarification_questions: "clarification_questions";
755
+ clarification_answers: "clarification_answers";
756
+ plan: "plan";
757
+ plan_review: "plan_review";
758
+ test_plan: "test_plan";
759
+ implementation: "implementation";
760
+ static_review: "static_review";
761
+ security_review: "security_review";
762
+ performance_review: "performance_review";
763
+ adversarial_review: "adversarial_review";
764
+ design_review: "design_review";
765
+ docs_review: "docs_review";
766
+ ux_review: "ux_review";
767
+ review_report: "review_report";
768
+ remediation_plan: "remediation_plan";
769
+ verification: "verification";
770
+ judge_decision: "judge_decision";
771
+ planning_agreement: "planning_agreement";
772
+ implementation_agreement: "implementation_agreement";
773
+ verification_agreement: "verification_agreement";
774
+ release_summary: "release_summary";
775
+ release_agreement: "release_agreement";
776
+ escalation_context: "escalation_context";
777
+ run_manifest: "run_manifest";
778
+ codebase_context: "codebase_context";
779
+ test_suite: "test_suite";
780
+ acceptance_validation: "acceptance_validation";
781
+ review_findings: "review_findings";
782
+ task_breakdown: "task_breakdown";
783
+ decomposition_review: "decomposition_review";
784
+ task_specifications: "task_specifications";
785
+ pr_diff_context: "pr_diff_context";
786
+ }>;
787
+ name: z.ZodString;
788
+ version: z.ZodNumber;
789
+ checksum: z.ZodString;
790
+ }, z.core.$strip>>;
791
+ }, z.core.$strip>;
792
+ export type CorrelatedFinding = z.infer<typeof correlatedFindingSchema>;
793
+ export declare const correlatedFindingsSchema: z.ZodObject<{
794
+ findings: z.ZodReadonly<z.ZodArray<z.ZodObject<{
795
+ finding: z.ZodObject<{
796
+ id: z.ZodString;
797
+ severity: z.ZodString;
798
+ blocking: z.ZodEnum<{
799
+ must_fix: "must_fix";
800
+ should_fix: "should_fix";
801
+ nit: "nit";
802
+ }>;
803
+ category: z.ZodEnum<{
804
+ completeness: "completeness";
805
+ correctness: "correctness";
806
+ consistency: "consistency";
807
+ security: "security";
808
+ performance: "performance";
809
+ maintainability: "maintainability";
810
+ style: "style";
811
+ documentation: "documentation";
812
+ test_coverage: "test_coverage";
813
+ architecture: "architecture";
814
+ other: "other";
815
+ }>;
816
+ title: z.ZodString;
817
+ description: z.ZodString;
818
+ location: z.ZodOptional<z.ZodObject<{
819
+ artifactRef: z.ZodObject<{
820
+ type: z.ZodEnum<{
821
+ intake_requirements: "intake_requirements";
822
+ canonical_specification: "canonical_specification";
823
+ clarification_questions: "clarification_questions";
824
+ clarification_answers: "clarification_answers";
825
+ plan: "plan";
826
+ plan_review: "plan_review";
827
+ test_plan: "test_plan";
828
+ implementation: "implementation";
829
+ static_review: "static_review";
830
+ security_review: "security_review";
831
+ performance_review: "performance_review";
832
+ adversarial_review: "adversarial_review";
833
+ design_review: "design_review";
834
+ docs_review: "docs_review";
835
+ ux_review: "ux_review";
836
+ review_report: "review_report";
837
+ remediation_plan: "remediation_plan";
838
+ verification: "verification";
839
+ judge_decision: "judge_decision";
840
+ planning_agreement: "planning_agreement";
841
+ implementation_agreement: "implementation_agreement";
842
+ verification_agreement: "verification_agreement";
843
+ release_summary: "release_summary";
844
+ release_agreement: "release_agreement";
845
+ escalation_context: "escalation_context";
846
+ run_manifest: "run_manifest";
847
+ codebase_context: "codebase_context";
848
+ test_suite: "test_suite";
849
+ acceptance_validation: "acceptance_validation";
850
+ review_findings: "review_findings";
851
+ task_breakdown: "task_breakdown";
852
+ decomposition_review: "decomposition_review";
853
+ task_specifications: "task_specifications";
854
+ pr_diff_context: "pr_diff_context";
855
+ }>;
856
+ name: z.ZodString;
857
+ version: z.ZodNumber;
858
+ checksum: z.ZodString;
859
+ }, z.core.$strip>;
860
+ section: z.ZodOptional<z.ZodString>;
861
+ line: z.ZodOptional<z.ZodNumber>;
862
+ snippet: z.ZodOptional<z.ZodString>;
863
+ }, z.core.$strip>>;
864
+ suggestedFix: z.ZodOptional<z.ZodString>;
865
+ status: z.ZodEnum<{
866
+ rejected: "rejected";
867
+ escalated: "escalated";
868
+ open: "open";
869
+ addressed: "addressed";
870
+ accepted: "accepted";
871
+ }>;
872
+ resolution: z.ZodOptional<z.ZodObject<{
873
+ status: z.ZodEnum<{
874
+ rejected: "rejected";
875
+ escalated: "escalated";
876
+ open: "open";
877
+ addressed: "addressed";
878
+ accepted: "accepted";
879
+ }>;
880
+ resolvedInArtifact: z.ZodOptional<z.ZodObject<{
881
+ type: z.ZodEnum<{
882
+ intake_requirements: "intake_requirements";
883
+ canonical_specification: "canonical_specification";
884
+ clarification_questions: "clarification_questions";
885
+ clarification_answers: "clarification_answers";
886
+ plan: "plan";
887
+ plan_review: "plan_review";
888
+ test_plan: "test_plan";
889
+ implementation: "implementation";
890
+ static_review: "static_review";
891
+ security_review: "security_review";
892
+ performance_review: "performance_review";
893
+ adversarial_review: "adversarial_review";
894
+ design_review: "design_review";
895
+ docs_review: "docs_review";
896
+ ux_review: "ux_review";
897
+ review_report: "review_report";
898
+ remediation_plan: "remediation_plan";
899
+ verification: "verification";
900
+ judge_decision: "judge_decision";
901
+ planning_agreement: "planning_agreement";
902
+ implementation_agreement: "implementation_agreement";
903
+ verification_agreement: "verification_agreement";
904
+ release_summary: "release_summary";
905
+ release_agreement: "release_agreement";
906
+ escalation_context: "escalation_context";
907
+ run_manifest: "run_manifest";
908
+ codebase_context: "codebase_context";
909
+ test_suite: "test_suite";
910
+ acceptance_validation: "acceptance_validation";
911
+ review_findings: "review_findings";
912
+ task_breakdown: "task_breakdown";
913
+ decomposition_review: "decomposition_review";
914
+ task_specifications: "task_specifications";
915
+ pr_diff_context: "pr_diff_context";
916
+ }>;
917
+ name: z.ZodString;
918
+ version: z.ZodNumber;
919
+ checksum: z.ZodString;
920
+ }, z.core.$strip>>;
921
+ resolvedBy: z.ZodString;
922
+ rationale: z.ZodString;
923
+ timestamp: z.ZodString;
924
+ }, z.core.$strip>>;
925
+ supersedes: z.ZodOptional<z.ZodString>;
926
+ }, z.core.$strip>;
927
+ producedIn: z.ZodObject<{
928
+ type: z.ZodEnum<{
929
+ intake_requirements: "intake_requirements";
930
+ canonical_specification: "canonical_specification";
931
+ clarification_questions: "clarification_questions";
932
+ clarification_answers: "clarification_answers";
933
+ plan: "plan";
934
+ plan_review: "plan_review";
935
+ test_plan: "test_plan";
936
+ implementation: "implementation";
937
+ static_review: "static_review";
938
+ security_review: "security_review";
939
+ performance_review: "performance_review";
940
+ adversarial_review: "adversarial_review";
941
+ design_review: "design_review";
942
+ docs_review: "docs_review";
943
+ ux_review: "ux_review";
944
+ review_report: "review_report";
945
+ remediation_plan: "remediation_plan";
946
+ verification: "verification";
947
+ judge_decision: "judge_decision";
948
+ planning_agreement: "planning_agreement";
949
+ implementation_agreement: "implementation_agreement";
950
+ verification_agreement: "verification_agreement";
951
+ release_summary: "release_summary";
952
+ release_agreement: "release_agreement";
953
+ escalation_context: "escalation_context";
954
+ run_manifest: "run_manifest";
955
+ codebase_context: "codebase_context";
956
+ test_suite: "test_suite";
957
+ acceptance_validation: "acceptance_validation";
958
+ review_findings: "review_findings";
959
+ task_breakdown: "task_breakdown";
960
+ decomposition_review: "decomposition_review";
961
+ task_specifications: "task_specifications";
962
+ pr_diff_context: "pr_diff_context";
963
+ }>;
964
+ name: z.ZodString;
965
+ version: z.ZodNumber;
966
+ checksum: z.ZodString;
967
+ }, z.core.$strip>;
968
+ addressedIn: z.ZodOptional<z.ZodObject<{
969
+ type: z.ZodEnum<{
970
+ intake_requirements: "intake_requirements";
971
+ canonical_specification: "canonical_specification";
972
+ clarification_questions: "clarification_questions";
973
+ clarification_answers: "clarification_answers";
974
+ plan: "plan";
975
+ plan_review: "plan_review";
976
+ test_plan: "test_plan";
977
+ implementation: "implementation";
978
+ static_review: "static_review";
979
+ security_review: "security_review";
980
+ performance_review: "performance_review";
981
+ adversarial_review: "adversarial_review";
982
+ design_review: "design_review";
983
+ docs_review: "docs_review";
984
+ ux_review: "ux_review";
985
+ review_report: "review_report";
986
+ remediation_plan: "remediation_plan";
987
+ verification: "verification";
988
+ judge_decision: "judge_decision";
989
+ planning_agreement: "planning_agreement";
990
+ implementation_agreement: "implementation_agreement";
991
+ verification_agreement: "verification_agreement";
992
+ release_summary: "release_summary";
993
+ release_agreement: "release_agreement";
994
+ escalation_context: "escalation_context";
995
+ run_manifest: "run_manifest";
996
+ codebase_context: "codebase_context";
997
+ test_suite: "test_suite";
998
+ acceptance_validation: "acceptance_validation";
999
+ review_findings: "review_findings";
1000
+ task_breakdown: "task_breakdown";
1001
+ decomposition_review: "decomposition_review";
1002
+ task_specifications: "task_specifications";
1003
+ pr_diff_context: "pr_diff_context";
1004
+ }>;
1005
+ name: z.ZodString;
1006
+ version: z.ZodNumber;
1007
+ checksum: z.ZodString;
1008
+ }, z.core.$strip>>;
1009
+ verifiedIn: z.ZodOptional<z.ZodObject<{
1010
+ type: z.ZodEnum<{
1011
+ intake_requirements: "intake_requirements";
1012
+ canonical_specification: "canonical_specification";
1013
+ clarification_questions: "clarification_questions";
1014
+ clarification_answers: "clarification_answers";
1015
+ plan: "plan";
1016
+ plan_review: "plan_review";
1017
+ test_plan: "test_plan";
1018
+ implementation: "implementation";
1019
+ static_review: "static_review";
1020
+ security_review: "security_review";
1021
+ performance_review: "performance_review";
1022
+ adversarial_review: "adversarial_review";
1023
+ design_review: "design_review";
1024
+ docs_review: "docs_review";
1025
+ ux_review: "ux_review";
1026
+ review_report: "review_report";
1027
+ remediation_plan: "remediation_plan";
1028
+ verification: "verification";
1029
+ judge_decision: "judge_decision";
1030
+ planning_agreement: "planning_agreement";
1031
+ implementation_agreement: "implementation_agreement";
1032
+ verification_agreement: "verification_agreement";
1033
+ release_summary: "release_summary";
1034
+ release_agreement: "release_agreement";
1035
+ escalation_context: "escalation_context";
1036
+ run_manifest: "run_manifest";
1037
+ codebase_context: "codebase_context";
1038
+ test_suite: "test_suite";
1039
+ acceptance_validation: "acceptance_validation";
1040
+ review_findings: "review_findings";
1041
+ task_breakdown: "task_breakdown";
1042
+ decomposition_review: "decomposition_review";
1043
+ task_specifications: "task_specifications";
1044
+ pr_diff_context: "pr_diff_context";
1045
+ }>;
1046
+ name: z.ZodString;
1047
+ version: z.ZodNumber;
1048
+ checksum: z.ZodString;
1049
+ }, z.core.$strip>>;
1050
+ }, z.core.$strip>>>;
1051
+ resolutionRate: z.ZodNumber;
1052
+ }, z.core.$strip>;
1053
+ export type CorrelatedFindings = z.infer<typeof correlatedFindingsSchema>;