@lovelybunch/core 1.0.75-alpha.12 → 1.0.75-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mail.d.ts +14 -8
- package/dist/mail.d.ts.map +1 -1
- package/dist/mail.js +7 -0
- package/dist/mail.js.map +1 -1
- package/dist/markdown-storage.d.ts.map +1 -1
- package/dist/markdown-storage.js +5 -57
- package/dist/markdown-storage.js.map +1 -1
- package/dist/storage.d.ts.map +1 -1
- package/dist/storage.js +0 -31
- package/dist/storage.js.map +1 -1
- package/dist/system-prompts/schema/task.schema.md +1 -115
- package/dist/tasks.d.ts +218 -190
- package/dist/tasks.d.ts.map +1 -1
- package/dist/tasks.js +6 -12
- package/dist/tasks.js.map +1 -1
- package/package.json +2 -2
package/dist/tasks.d.ts
CHANGED
|
@@ -10,17 +10,17 @@ export declare const AuthorSchema: z.ZodObject<{
|
|
|
10
10
|
role: z.ZodOptional<z.ZodString>;
|
|
11
11
|
type: z.ZodEnum<["human", "agent"]>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
type: "agent" | "human";
|
|
14
|
-
name: string;
|
|
15
13
|
id: string;
|
|
16
|
-
|
|
14
|
+
name: string;
|
|
15
|
+
type: "human" | "agent";
|
|
17
16
|
email?: string | undefined;
|
|
17
|
+
role?: string | undefined;
|
|
18
18
|
}, {
|
|
19
|
-
type: "agent" | "human";
|
|
20
|
-
name: string;
|
|
21
19
|
id: string;
|
|
22
|
-
|
|
20
|
+
name: string;
|
|
21
|
+
type: "human" | "agent";
|
|
23
22
|
email?: string | undefined;
|
|
23
|
+
role?: string | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
export type AuthorInput = z.infer<typeof AuthorSchema>;
|
|
26
26
|
export declare const TaskFiltersSchema: z.ZodObject<{
|
|
@@ -31,19 +31,19 @@ export declare const TaskFiltersSchema: z.ZodObject<{
|
|
|
31
31
|
search: z.ZodOptional<z.ZodString>;
|
|
32
32
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
33
33
|
}, "strip", z.ZodTypeAny, {
|
|
34
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
35
|
+
author?: string | undefined;
|
|
36
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
34
37
|
tags?: string[] | undefined;
|
|
35
38
|
search?: string | undefined;
|
|
36
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
37
39
|
limit?: number | undefined;
|
|
40
|
+
}, {
|
|
41
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
38
42
|
author?: string | undefined;
|
|
39
43
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
40
|
-
}, {
|
|
41
44
|
tags?: string[] | undefined;
|
|
42
45
|
search?: string | undefined;
|
|
43
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
44
46
|
limit?: number | undefined;
|
|
45
|
-
author?: string | undefined;
|
|
46
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
47
47
|
}>;
|
|
48
48
|
export type TaskFilters = z.infer<typeof TaskFiltersSchema>;
|
|
49
49
|
export declare const PlanStepInputSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -54,14 +54,14 @@ export declare const PlanStepInputSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
54
54
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
|
56
56
|
description: string;
|
|
57
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
58
57
|
id?: string | undefined;
|
|
58
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
59
59
|
command?: string | undefined;
|
|
60
60
|
expectedOutcome?: string | undefined;
|
|
61
61
|
}, {
|
|
62
62
|
description: string;
|
|
63
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
64
63
|
id?: string | undefined;
|
|
64
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
65
65
|
command?: string | undefined;
|
|
66
66
|
expectedOutcome?: string | undefined;
|
|
67
67
|
}>]>;
|
|
@@ -78,17 +78,17 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
78
78
|
role: z.ZodOptional<z.ZodString>;
|
|
79
79
|
type: z.ZodEnum<["human", "agent"]>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
type: "agent" | "human";
|
|
82
|
-
name: string;
|
|
83
81
|
id: string;
|
|
84
|
-
|
|
82
|
+
name: string;
|
|
83
|
+
type: "human" | "agent";
|
|
85
84
|
email?: string | undefined;
|
|
85
|
+
role?: string | undefined;
|
|
86
86
|
}, {
|
|
87
|
-
type: "agent" | "human";
|
|
88
|
-
name: string;
|
|
89
87
|
id: string;
|
|
90
|
-
|
|
88
|
+
name: string;
|
|
89
|
+
type: "human" | "agent";
|
|
91
90
|
email?: string | undefined;
|
|
91
|
+
role?: string | undefined;
|
|
92
92
|
}>>;
|
|
93
93
|
planSteps: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
94
94
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -98,14 +98,14 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
98
98
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
99
99
|
}, "strip", z.ZodTypeAny, {
|
|
100
100
|
description: string;
|
|
101
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
102
101
|
id?: string | undefined;
|
|
102
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
103
103
|
command?: string | undefined;
|
|
104
104
|
expectedOutcome?: string | undefined;
|
|
105
105
|
}, {
|
|
106
106
|
description: string;
|
|
107
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
108
107
|
id?: string | undefined;
|
|
108
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
109
109
|
command?: string | undefined;
|
|
110
110
|
expectedOutcome?: string | undefined;
|
|
111
111
|
}>]>, "many">>;
|
|
@@ -113,116 +113,123 @@ export declare const CreateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
113
113
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
114
114
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
115
115
|
priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
|
|
116
|
+
readiness: z.ZodOptional<z.ZodNumber>;
|
|
116
117
|
reviewers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
117
118
|
}, "strip", z.ZodTypeAny, {
|
|
118
|
-
tags?: string[] | undefined;
|
|
119
119
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
120
|
+
tags?: string[] | undefined;
|
|
121
|
+
readiness?: number | undefined;
|
|
120
122
|
reviewers?: string[] | undefined;
|
|
121
123
|
}, {
|
|
122
|
-
tags?: string[] | undefined;
|
|
123
124
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
125
|
+
tags?: string[] | undefined;
|
|
126
|
+
readiness?: number | undefined;
|
|
124
127
|
reviewers?: string[] | undefined;
|
|
125
128
|
}>>;
|
|
126
129
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
127
130
|
}, "strip", z.ZodTypeAny, {
|
|
131
|
+
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate";
|
|
128
132
|
content: string;
|
|
129
|
-
status: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate";
|
|
130
133
|
author?: {
|
|
131
|
-
type: "agent" | "human";
|
|
132
|
-
name: string;
|
|
133
134
|
id: string;
|
|
134
|
-
|
|
135
|
+
name: string;
|
|
136
|
+
type: "human" | "agent";
|
|
135
137
|
email?: string | undefined;
|
|
136
|
-
|
|
137
|
-
metadata?: {
|
|
138
|
-
tags?: string[] | undefined;
|
|
139
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
140
|
-
reviewers?: string[] | undefined;
|
|
138
|
+
role?: string | undefined;
|
|
141
139
|
} | undefined;
|
|
142
140
|
title?: string | undefined;
|
|
143
141
|
intent?: string | undefined;
|
|
144
142
|
planSteps?: (string | {
|
|
145
143
|
description: string;
|
|
146
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
147
144
|
id?: string | undefined;
|
|
145
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
148
146
|
command?: string | undefined;
|
|
149
147
|
expectedOutcome?: string | undefined;
|
|
150
148
|
})[] | undefined;
|
|
149
|
+
metadata?: {
|
|
150
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
151
|
+
tags?: string[] | undefined;
|
|
152
|
+
readiness?: number | undefined;
|
|
153
|
+
reviewers?: string[] | undefined;
|
|
154
|
+
} | undefined;
|
|
151
155
|
productSpecRef?: string | undefined;
|
|
152
156
|
}, {
|
|
153
157
|
content: string;
|
|
154
|
-
status?: "
|
|
158
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
155
159
|
author?: {
|
|
156
|
-
type: "agent" | "human";
|
|
157
|
-
name: string;
|
|
158
160
|
id: string;
|
|
159
|
-
|
|
161
|
+
name: string;
|
|
162
|
+
type: "human" | "agent";
|
|
160
163
|
email?: string | undefined;
|
|
161
|
-
|
|
162
|
-
metadata?: {
|
|
163
|
-
tags?: string[] | undefined;
|
|
164
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
165
|
-
reviewers?: string[] | undefined;
|
|
164
|
+
role?: string | undefined;
|
|
166
165
|
} | undefined;
|
|
167
166
|
title?: string | undefined;
|
|
168
167
|
intent?: string | undefined;
|
|
169
168
|
planSteps?: (string | {
|
|
170
169
|
description: string;
|
|
171
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
172
170
|
id?: string | undefined;
|
|
171
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
173
172
|
command?: string | undefined;
|
|
174
173
|
expectedOutcome?: string | undefined;
|
|
175
174
|
})[] | undefined;
|
|
175
|
+
metadata?: {
|
|
176
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
177
|
+
tags?: string[] | undefined;
|
|
178
|
+
readiness?: number | undefined;
|
|
179
|
+
reviewers?: string[] | undefined;
|
|
180
|
+
} | undefined;
|
|
176
181
|
productSpecRef?: string | undefined;
|
|
177
182
|
}>, {
|
|
183
|
+
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate";
|
|
178
184
|
content: string;
|
|
179
|
-
status: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate";
|
|
180
185
|
author?: {
|
|
181
|
-
type: "agent" | "human";
|
|
182
|
-
name: string;
|
|
183
186
|
id: string;
|
|
184
|
-
|
|
187
|
+
name: string;
|
|
188
|
+
type: "human" | "agent";
|
|
185
189
|
email?: string | undefined;
|
|
186
|
-
|
|
187
|
-
metadata?: {
|
|
188
|
-
tags?: string[] | undefined;
|
|
189
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
190
|
-
reviewers?: string[] | undefined;
|
|
190
|
+
role?: string | undefined;
|
|
191
191
|
} | undefined;
|
|
192
192
|
title?: string | undefined;
|
|
193
193
|
intent?: string | undefined;
|
|
194
194
|
planSteps?: (string | {
|
|
195
195
|
description: string;
|
|
196
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
197
196
|
id?: string | undefined;
|
|
197
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
198
198
|
command?: string | undefined;
|
|
199
199
|
expectedOutcome?: string | undefined;
|
|
200
200
|
})[] | undefined;
|
|
201
|
+
metadata?: {
|
|
202
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
203
|
+
tags?: string[] | undefined;
|
|
204
|
+
readiness?: number | undefined;
|
|
205
|
+
reviewers?: string[] | undefined;
|
|
206
|
+
} | undefined;
|
|
201
207
|
productSpecRef?: string | undefined;
|
|
202
208
|
}, {
|
|
203
209
|
content: string;
|
|
204
|
-
status?: "
|
|
210
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
205
211
|
author?: {
|
|
206
|
-
type: "agent" | "human";
|
|
207
|
-
name: string;
|
|
208
212
|
id: string;
|
|
209
|
-
|
|
213
|
+
name: string;
|
|
214
|
+
type: "human" | "agent";
|
|
210
215
|
email?: string | undefined;
|
|
211
|
-
|
|
212
|
-
metadata?: {
|
|
213
|
-
tags?: string[] | undefined;
|
|
214
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
215
|
-
reviewers?: string[] | undefined;
|
|
216
|
+
role?: string | undefined;
|
|
216
217
|
} | undefined;
|
|
217
218
|
title?: string | undefined;
|
|
218
219
|
intent?: string | undefined;
|
|
219
220
|
planSteps?: (string | {
|
|
220
221
|
description: string;
|
|
221
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
222
222
|
id?: string | undefined;
|
|
223
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
223
224
|
command?: string | undefined;
|
|
224
225
|
expectedOutcome?: string | undefined;
|
|
225
226
|
})[] | undefined;
|
|
227
|
+
metadata?: {
|
|
228
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
229
|
+
tags?: string[] | undefined;
|
|
230
|
+
readiness?: number | undefined;
|
|
231
|
+
reviewers?: string[] | undefined;
|
|
232
|
+
} | undefined;
|
|
226
233
|
productSpecRef?: string | undefined;
|
|
227
234
|
}>;
|
|
228
235
|
export type CreateTaskInput = z.infer<typeof CreateTaskInputSchema>;
|
|
@@ -240,102 +247,109 @@ export declare const UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
240
247
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
241
248
|
}, "strip", z.ZodTypeAny, {
|
|
242
249
|
description: string;
|
|
243
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
244
250
|
id?: string | undefined;
|
|
251
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
245
252
|
command?: string | undefined;
|
|
246
253
|
expectedOutcome?: string | undefined;
|
|
247
254
|
}, {
|
|
248
255
|
description: string;
|
|
249
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
250
256
|
id?: string | undefined;
|
|
257
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
251
258
|
command?: string | undefined;
|
|
252
259
|
expectedOutcome?: string | undefined;
|
|
253
260
|
}>]>, "many">>;
|
|
254
261
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
255
262
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
256
263
|
priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
|
|
264
|
+
readiness: z.ZodOptional<z.ZodNumber>;
|
|
257
265
|
reviewers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
258
266
|
}, "strip", z.ZodTypeAny, {
|
|
259
|
-
tags?: string[] | undefined;
|
|
260
267
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
268
|
+
tags?: string[] | undefined;
|
|
269
|
+
readiness?: number | undefined;
|
|
261
270
|
reviewers?: string[] | undefined;
|
|
262
271
|
}, {
|
|
263
|
-
tags?: string[] | undefined;
|
|
264
272
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
273
|
+
tags?: string[] | undefined;
|
|
274
|
+
readiness?: number | undefined;
|
|
265
275
|
reviewers?: string[] | undefined;
|
|
266
276
|
}>>;
|
|
267
277
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
268
278
|
}, "strip", z.ZodTypeAny, {
|
|
269
|
-
|
|
270
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
271
|
-
metadata?: {
|
|
272
|
-
tags?: string[] | undefined;
|
|
273
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
274
|
-
reviewers?: string[] | undefined;
|
|
275
|
-
} | undefined;
|
|
279
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
276
280
|
title?: string | undefined;
|
|
277
281
|
intent?: string | undefined;
|
|
282
|
+
content?: string | undefined;
|
|
278
283
|
planSteps?: (string | {
|
|
279
284
|
description: string;
|
|
280
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
281
285
|
id?: string | undefined;
|
|
286
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
282
287
|
command?: string | undefined;
|
|
283
288
|
expectedOutcome?: string | undefined;
|
|
284
289
|
})[] | undefined;
|
|
285
|
-
productSpecRef?: string | undefined;
|
|
286
|
-
}, {
|
|
287
|
-
content?: string | undefined;
|
|
288
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
289
290
|
metadata?: {
|
|
290
|
-
tags?: string[] | undefined;
|
|
291
291
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
292
|
+
tags?: string[] | undefined;
|
|
293
|
+
readiness?: number | undefined;
|
|
292
294
|
reviewers?: string[] | undefined;
|
|
293
295
|
} | undefined;
|
|
296
|
+
productSpecRef?: string | undefined;
|
|
297
|
+
}, {
|
|
298
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
294
299
|
title?: string | undefined;
|
|
295
300
|
intent?: string | undefined;
|
|
301
|
+
content?: string | undefined;
|
|
296
302
|
planSteps?: (string | {
|
|
297
303
|
description: string;
|
|
298
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
299
304
|
id?: string | undefined;
|
|
305
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
300
306
|
command?: string | undefined;
|
|
301
307
|
expectedOutcome?: string | undefined;
|
|
302
308
|
})[] | undefined;
|
|
303
|
-
productSpecRef?: string | undefined;
|
|
304
|
-
}>, {
|
|
305
|
-
content?: string | undefined;
|
|
306
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
307
309
|
metadata?: {
|
|
308
|
-
tags?: string[] | undefined;
|
|
309
310
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
311
|
+
tags?: string[] | undefined;
|
|
312
|
+
readiness?: number | undefined;
|
|
310
313
|
reviewers?: string[] | undefined;
|
|
311
314
|
} | undefined;
|
|
315
|
+
productSpecRef?: string | undefined;
|
|
316
|
+
}>, {
|
|
317
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
312
318
|
title?: string | undefined;
|
|
313
319
|
intent?: string | undefined;
|
|
320
|
+
content?: string | undefined;
|
|
314
321
|
planSteps?: (string | {
|
|
315
322
|
description: string;
|
|
316
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
317
323
|
id?: string | undefined;
|
|
324
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
318
325
|
command?: string | undefined;
|
|
319
326
|
expectedOutcome?: string | undefined;
|
|
320
327
|
})[] | undefined;
|
|
321
|
-
productSpecRef?: string | undefined;
|
|
322
|
-
}, {
|
|
323
|
-
content?: string | undefined;
|
|
324
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
325
328
|
metadata?: {
|
|
326
|
-
tags?: string[] | undefined;
|
|
327
329
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
330
|
+
tags?: string[] | undefined;
|
|
331
|
+
readiness?: number | undefined;
|
|
328
332
|
reviewers?: string[] | undefined;
|
|
329
333
|
} | undefined;
|
|
334
|
+
productSpecRef?: string | undefined;
|
|
335
|
+
}, {
|
|
336
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
330
337
|
title?: string | undefined;
|
|
331
338
|
intent?: string | undefined;
|
|
339
|
+
content?: string | undefined;
|
|
332
340
|
planSteps?: (string | {
|
|
333
341
|
description: string;
|
|
334
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
335
342
|
id?: string | undefined;
|
|
343
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
336
344
|
command?: string | undefined;
|
|
337
345
|
expectedOutcome?: string | undefined;
|
|
338
346
|
})[] | undefined;
|
|
347
|
+
metadata?: {
|
|
348
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
349
|
+
tags?: string[] | undefined;
|
|
350
|
+
readiness?: number | undefined;
|
|
351
|
+
reviewers?: string[] | undefined;
|
|
352
|
+
} | undefined;
|
|
339
353
|
productSpecRef?: string | undefined;
|
|
340
354
|
}>;
|
|
341
355
|
export type UpdateTaskInput = z.infer<typeof UpdateTaskInputSchema>;
|
|
@@ -380,11 +394,11 @@ export declare const AddCommentInputSchema: z.ZodObject<{
|
|
|
380
394
|
author: z.ZodString;
|
|
381
395
|
content: z.ZodString;
|
|
382
396
|
}, "strip", z.ZodTypeAny, {
|
|
383
|
-
content: string;
|
|
384
397
|
author: string;
|
|
385
|
-
}, {
|
|
386
398
|
content: string;
|
|
399
|
+
}, {
|
|
387
400
|
author: string;
|
|
401
|
+
content: string;
|
|
388
402
|
}>;
|
|
389
403
|
export type AddCommentInput = z.infer<typeof AddCommentInputSchema>;
|
|
390
404
|
/**
|
|
@@ -410,17 +424,17 @@ export declare const taskSchemas: {
|
|
|
410
424
|
role: z.ZodOptional<z.ZodString>;
|
|
411
425
|
type: z.ZodEnum<["human", "agent"]>;
|
|
412
426
|
}, "strip", z.ZodTypeAny, {
|
|
413
|
-
type: "agent" | "human";
|
|
414
|
-
name: string;
|
|
415
427
|
id: string;
|
|
416
|
-
|
|
428
|
+
name: string;
|
|
429
|
+
type: "human" | "agent";
|
|
417
430
|
email?: string | undefined;
|
|
431
|
+
role?: string | undefined;
|
|
418
432
|
}, {
|
|
419
|
-
type: "agent" | "human";
|
|
420
|
-
name: string;
|
|
421
433
|
id: string;
|
|
422
|
-
|
|
434
|
+
name: string;
|
|
435
|
+
type: "human" | "agent";
|
|
423
436
|
email?: string | undefined;
|
|
437
|
+
role?: string | undefined;
|
|
424
438
|
}>;
|
|
425
439
|
TaskFiltersSchema: z.ZodObject<{
|
|
426
440
|
status: z.ZodOptional<z.ZodEnum<["draft", "backlog", "ready", "queued", "active", "blocked", "review", "done", "canceled", "duplicate"]>>;
|
|
@@ -430,19 +444,19 @@ export declare const taskSchemas: {
|
|
|
430
444
|
search: z.ZodOptional<z.ZodString>;
|
|
431
445
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
432
446
|
}, "strip", z.ZodTypeAny, {
|
|
447
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
448
|
+
author?: string | undefined;
|
|
449
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
433
450
|
tags?: string[] | undefined;
|
|
434
451
|
search?: string | undefined;
|
|
435
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
436
452
|
limit?: number | undefined;
|
|
453
|
+
}, {
|
|
454
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
437
455
|
author?: string | undefined;
|
|
438
456
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
439
|
-
}, {
|
|
440
457
|
tags?: string[] | undefined;
|
|
441
458
|
search?: string | undefined;
|
|
442
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
443
459
|
limit?: number | undefined;
|
|
444
|
-
author?: string | undefined;
|
|
445
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
446
460
|
}>;
|
|
447
461
|
PlanStepInputSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
448
462
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -452,14 +466,14 @@ export declare const taskSchemas: {
|
|
|
452
466
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
453
467
|
}, "strip", z.ZodTypeAny, {
|
|
454
468
|
description: string;
|
|
455
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
456
469
|
id?: string | undefined;
|
|
470
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
457
471
|
command?: string | undefined;
|
|
458
472
|
expectedOutcome?: string | undefined;
|
|
459
473
|
}, {
|
|
460
474
|
description: string;
|
|
461
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
462
475
|
id?: string | undefined;
|
|
476
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
463
477
|
command?: string | undefined;
|
|
464
478
|
expectedOutcome?: string | undefined;
|
|
465
479
|
}>]>;
|
|
@@ -475,17 +489,17 @@ export declare const taskSchemas: {
|
|
|
475
489
|
role: z.ZodOptional<z.ZodString>;
|
|
476
490
|
type: z.ZodEnum<["human", "agent"]>;
|
|
477
491
|
}, "strip", z.ZodTypeAny, {
|
|
478
|
-
type: "agent" | "human";
|
|
479
|
-
name: string;
|
|
480
492
|
id: string;
|
|
481
|
-
|
|
493
|
+
name: string;
|
|
494
|
+
type: "human" | "agent";
|
|
482
495
|
email?: string | undefined;
|
|
496
|
+
role?: string | undefined;
|
|
483
497
|
}, {
|
|
484
|
-
type: "agent" | "human";
|
|
485
|
-
name: string;
|
|
486
498
|
id: string;
|
|
487
|
-
|
|
499
|
+
name: string;
|
|
500
|
+
type: "human" | "agent";
|
|
488
501
|
email?: string | undefined;
|
|
502
|
+
role?: string | undefined;
|
|
489
503
|
}>>;
|
|
490
504
|
planSteps: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
491
505
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -495,14 +509,14 @@ export declare const taskSchemas: {
|
|
|
495
509
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
496
510
|
}, "strip", z.ZodTypeAny, {
|
|
497
511
|
description: string;
|
|
498
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
499
512
|
id?: string | undefined;
|
|
513
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
500
514
|
command?: string | undefined;
|
|
501
515
|
expectedOutcome?: string | undefined;
|
|
502
516
|
}, {
|
|
503
517
|
description: string;
|
|
504
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
505
518
|
id?: string | undefined;
|
|
519
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
506
520
|
command?: string | undefined;
|
|
507
521
|
expectedOutcome?: string | undefined;
|
|
508
522
|
}>]>, "many">>;
|
|
@@ -510,116 +524,123 @@ export declare const taskSchemas: {
|
|
|
510
524
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
511
525
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
512
526
|
priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
|
|
527
|
+
readiness: z.ZodOptional<z.ZodNumber>;
|
|
513
528
|
reviewers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
514
529
|
}, "strip", z.ZodTypeAny, {
|
|
515
|
-
tags?: string[] | undefined;
|
|
516
530
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
531
|
+
tags?: string[] | undefined;
|
|
532
|
+
readiness?: number | undefined;
|
|
517
533
|
reviewers?: string[] | undefined;
|
|
518
534
|
}, {
|
|
519
|
-
tags?: string[] | undefined;
|
|
520
535
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
536
|
+
tags?: string[] | undefined;
|
|
537
|
+
readiness?: number | undefined;
|
|
521
538
|
reviewers?: string[] | undefined;
|
|
522
539
|
}>>;
|
|
523
540
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
524
541
|
}, "strip", z.ZodTypeAny, {
|
|
542
|
+
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate";
|
|
525
543
|
content: string;
|
|
526
|
-
status: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate";
|
|
527
544
|
author?: {
|
|
528
|
-
type: "agent" | "human";
|
|
529
|
-
name: string;
|
|
530
545
|
id: string;
|
|
531
|
-
|
|
546
|
+
name: string;
|
|
547
|
+
type: "human" | "agent";
|
|
532
548
|
email?: string | undefined;
|
|
533
|
-
|
|
534
|
-
metadata?: {
|
|
535
|
-
tags?: string[] | undefined;
|
|
536
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
537
|
-
reviewers?: string[] | undefined;
|
|
549
|
+
role?: string | undefined;
|
|
538
550
|
} | undefined;
|
|
539
551
|
title?: string | undefined;
|
|
540
552
|
intent?: string | undefined;
|
|
541
553
|
planSteps?: (string | {
|
|
542
554
|
description: string;
|
|
543
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
544
555
|
id?: string | undefined;
|
|
556
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
545
557
|
command?: string | undefined;
|
|
546
558
|
expectedOutcome?: string | undefined;
|
|
547
559
|
})[] | undefined;
|
|
560
|
+
metadata?: {
|
|
561
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
562
|
+
tags?: string[] | undefined;
|
|
563
|
+
readiness?: number | undefined;
|
|
564
|
+
reviewers?: string[] | undefined;
|
|
565
|
+
} | undefined;
|
|
548
566
|
productSpecRef?: string | undefined;
|
|
549
567
|
}, {
|
|
550
568
|
content: string;
|
|
551
|
-
status?: "
|
|
569
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
552
570
|
author?: {
|
|
553
|
-
type: "agent" | "human";
|
|
554
|
-
name: string;
|
|
555
571
|
id: string;
|
|
556
|
-
|
|
572
|
+
name: string;
|
|
573
|
+
type: "human" | "agent";
|
|
557
574
|
email?: string | undefined;
|
|
558
|
-
|
|
559
|
-
metadata?: {
|
|
560
|
-
tags?: string[] | undefined;
|
|
561
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
562
|
-
reviewers?: string[] | undefined;
|
|
575
|
+
role?: string | undefined;
|
|
563
576
|
} | undefined;
|
|
564
577
|
title?: string | undefined;
|
|
565
578
|
intent?: string | undefined;
|
|
566
579
|
planSteps?: (string | {
|
|
567
580
|
description: string;
|
|
568
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
569
581
|
id?: string | undefined;
|
|
582
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
570
583
|
command?: string | undefined;
|
|
571
584
|
expectedOutcome?: string | undefined;
|
|
572
585
|
})[] | undefined;
|
|
586
|
+
metadata?: {
|
|
587
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
588
|
+
tags?: string[] | undefined;
|
|
589
|
+
readiness?: number | undefined;
|
|
590
|
+
reviewers?: string[] | undefined;
|
|
591
|
+
} | undefined;
|
|
573
592
|
productSpecRef?: string | undefined;
|
|
574
593
|
}>, {
|
|
594
|
+
status: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate";
|
|
575
595
|
content: string;
|
|
576
|
-
status: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate";
|
|
577
596
|
author?: {
|
|
578
|
-
type: "agent" | "human";
|
|
579
|
-
name: string;
|
|
580
597
|
id: string;
|
|
581
|
-
|
|
598
|
+
name: string;
|
|
599
|
+
type: "human" | "agent";
|
|
582
600
|
email?: string | undefined;
|
|
583
|
-
|
|
584
|
-
metadata?: {
|
|
585
|
-
tags?: string[] | undefined;
|
|
586
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
587
|
-
reviewers?: string[] | undefined;
|
|
601
|
+
role?: string | undefined;
|
|
588
602
|
} | undefined;
|
|
589
603
|
title?: string | undefined;
|
|
590
604
|
intent?: string | undefined;
|
|
591
605
|
planSteps?: (string | {
|
|
592
606
|
description: string;
|
|
593
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
594
607
|
id?: string | undefined;
|
|
608
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
595
609
|
command?: string | undefined;
|
|
596
610
|
expectedOutcome?: string | undefined;
|
|
597
611
|
})[] | undefined;
|
|
612
|
+
metadata?: {
|
|
613
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
614
|
+
tags?: string[] | undefined;
|
|
615
|
+
readiness?: number | undefined;
|
|
616
|
+
reviewers?: string[] | undefined;
|
|
617
|
+
} | undefined;
|
|
598
618
|
productSpecRef?: string | undefined;
|
|
599
619
|
}, {
|
|
600
620
|
content: string;
|
|
601
|
-
status?: "
|
|
621
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
602
622
|
author?: {
|
|
603
|
-
type: "agent" | "human";
|
|
604
|
-
name: string;
|
|
605
623
|
id: string;
|
|
606
|
-
|
|
624
|
+
name: string;
|
|
625
|
+
type: "human" | "agent";
|
|
607
626
|
email?: string | undefined;
|
|
608
|
-
|
|
609
|
-
metadata?: {
|
|
610
|
-
tags?: string[] | undefined;
|
|
611
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
612
|
-
reviewers?: string[] | undefined;
|
|
627
|
+
role?: string | undefined;
|
|
613
628
|
} | undefined;
|
|
614
629
|
title?: string | undefined;
|
|
615
630
|
intent?: string | undefined;
|
|
616
631
|
planSteps?: (string | {
|
|
617
632
|
description: string;
|
|
618
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
619
633
|
id?: string | undefined;
|
|
634
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
620
635
|
command?: string | undefined;
|
|
621
636
|
expectedOutcome?: string | undefined;
|
|
622
637
|
})[] | undefined;
|
|
638
|
+
metadata?: {
|
|
639
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
640
|
+
tags?: string[] | undefined;
|
|
641
|
+
readiness?: number | undefined;
|
|
642
|
+
reviewers?: string[] | undefined;
|
|
643
|
+
} | undefined;
|
|
623
644
|
productSpecRef?: string | undefined;
|
|
624
645
|
}>;
|
|
625
646
|
UpdateTaskInputSchema: z.ZodEffects<z.ZodObject<{
|
|
@@ -636,102 +657,109 @@ export declare const taskSchemas: {
|
|
|
636
657
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
637
658
|
}, "strip", z.ZodTypeAny, {
|
|
638
659
|
description: string;
|
|
639
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
640
660
|
id?: string | undefined;
|
|
661
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
641
662
|
command?: string | undefined;
|
|
642
663
|
expectedOutcome?: string | undefined;
|
|
643
664
|
}, {
|
|
644
665
|
description: string;
|
|
645
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
646
666
|
id?: string | undefined;
|
|
667
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
647
668
|
command?: string | undefined;
|
|
648
669
|
expectedOutcome?: string | undefined;
|
|
649
670
|
}>]>, "many">>;
|
|
650
671
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
651
672
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
652
673
|
priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
|
|
674
|
+
readiness: z.ZodOptional<z.ZodNumber>;
|
|
653
675
|
reviewers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
654
676
|
}, "strip", z.ZodTypeAny, {
|
|
655
|
-
tags?: string[] | undefined;
|
|
656
677
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
678
|
+
tags?: string[] | undefined;
|
|
679
|
+
readiness?: number | undefined;
|
|
657
680
|
reviewers?: string[] | undefined;
|
|
658
681
|
}, {
|
|
659
|
-
tags?: string[] | undefined;
|
|
660
682
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
683
|
+
tags?: string[] | undefined;
|
|
684
|
+
readiness?: number | undefined;
|
|
661
685
|
reviewers?: string[] | undefined;
|
|
662
686
|
}>>;
|
|
663
687
|
productSpecRef: z.ZodOptional<z.ZodString>;
|
|
664
688
|
}, "strip", z.ZodTypeAny, {
|
|
665
|
-
|
|
666
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
667
|
-
metadata?: {
|
|
668
|
-
tags?: string[] | undefined;
|
|
669
|
-
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
670
|
-
reviewers?: string[] | undefined;
|
|
671
|
-
} | undefined;
|
|
689
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
672
690
|
title?: string | undefined;
|
|
673
691
|
intent?: string | undefined;
|
|
692
|
+
content?: string | undefined;
|
|
674
693
|
planSteps?: (string | {
|
|
675
694
|
description: string;
|
|
676
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
677
695
|
id?: string | undefined;
|
|
696
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
678
697
|
command?: string | undefined;
|
|
679
698
|
expectedOutcome?: string | undefined;
|
|
680
699
|
})[] | undefined;
|
|
681
|
-
productSpecRef?: string | undefined;
|
|
682
|
-
}, {
|
|
683
|
-
content?: string | undefined;
|
|
684
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
685
700
|
metadata?: {
|
|
686
|
-
tags?: string[] | undefined;
|
|
687
701
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
702
|
+
tags?: string[] | undefined;
|
|
703
|
+
readiness?: number | undefined;
|
|
688
704
|
reviewers?: string[] | undefined;
|
|
689
705
|
} | undefined;
|
|
706
|
+
productSpecRef?: string | undefined;
|
|
707
|
+
}, {
|
|
708
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
690
709
|
title?: string | undefined;
|
|
691
710
|
intent?: string | undefined;
|
|
711
|
+
content?: string | undefined;
|
|
692
712
|
planSteps?: (string | {
|
|
693
713
|
description: string;
|
|
694
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
695
714
|
id?: string | undefined;
|
|
715
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
696
716
|
command?: string | undefined;
|
|
697
717
|
expectedOutcome?: string | undefined;
|
|
698
718
|
})[] | undefined;
|
|
699
|
-
productSpecRef?: string | undefined;
|
|
700
|
-
}>, {
|
|
701
|
-
content?: string | undefined;
|
|
702
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
703
719
|
metadata?: {
|
|
704
|
-
tags?: string[] | undefined;
|
|
705
720
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
721
|
+
tags?: string[] | undefined;
|
|
722
|
+
readiness?: number | undefined;
|
|
706
723
|
reviewers?: string[] | undefined;
|
|
707
724
|
} | undefined;
|
|
725
|
+
productSpecRef?: string | undefined;
|
|
726
|
+
}>, {
|
|
727
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
708
728
|
title?: string | undefined;
|
|
709
729
|
intent?: string | undefined;
|
|
730
|
+
content?: string | undefined;
|
|
710
731
|
planSteps?: (string | {
|
|
711
732
|
description: string;
|
|
712
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
713
733
|
id?: string | undefined;
|
|
734
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
714
735
|
command?: string | undefined;
|
|
715
736
|
expectedOutcome?: string | undefined;
|
|
716
737
|
})[] | undefined;
|
|
717
|
-
productSpecRef?: string | undefined;
|
|
718
|
-
}, {
|
|
719
|
-
content?: string | undefined;
|
|
720
|
-
status?: "ready" | "draft" | "backlog" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
721
738
|
metadata?: {
|
|
722
|
-
tags?: string[] | undefined;
|
|
723
739
|
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
740
|
+
tags?: string[] | undefined;
|
|
741
|
+
readiness?: number | undefined;
|
|
724
742
|
reviewers?: string[] | undefined;
|
|
725
743
|
} | undefined;
|
|
744
|
+
productSpecRef?: string | undefined;
|
|
745
|
+
}, {
|
|
746
|
+
status?: "draft" | "backlog" | "ready" | "queued" | "active" | "blocked" | "review" | "done" | "canceled" | "duplicate" | undefined;
|
|
726
747
|
title?: string | undefined;
|
|
727
748
|
intent?: string | undefined;
|
|
749
|
+
content?: string | undefined;
|
|
728
750
|
planSteps?: (string | {
|
|
729
751
|
description: string;
|
|
730
|
-
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
731
752
|
id?: string | undefined;
|
|
753
|
+
status?: "pending" | "in-progress" | "completed" | "failed" | undefined;
|
|
732
754
|
command?: string | undefined;
|
|
733
755
|
expectedOutcome?: string | undefined;
|
|
734
756
|
})[] | undefined;
|
|
757
|
+
metadata?: {
|
|
758
|
+
priority?: "low" | "medium" | "high" | "critical" | undefined;
|
|
759
|
+
tags?: string[] | undefined;
|
|
760
|
+
readiness?: number | undefined;
|
|
761
|
+
reviewers?: string[] | undefined;
|
|
762
|
+
} | undefined;
|
|
735
763
|
productSpecRef?: string | undefined;
|
|
736
764
|
}>;
|
|
737
765
|
AddPlanStepInputSchema: z.ZodObject<{
|
|
@@ -754,11 +782,11 @@ export declare const taskSchemas: {
|
|
|
754
782
|
author: z.ZodString;
|
|
755
783
|
content: z.ZodString;
|
|
756
784
|
}, "strip", z.ZodTypeAny, {
|
|
757
|
-
content: string;
|
|
758
785
|
author: string;
|
|
759
|
-
}, {
|
|
760
786
|
content: string;
|
|
787
|
+
}, {
|
|
761
788
|
author: string;
|
|
789
|
+
content: string;
|
|
762
790
|
}>;
|
|
763
791
|
};
|
|
764
792
|
export declare const taskJsonSchemas: {
|