sysprom 1.21.1 → 1.22.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/dist/schema.json +0 -31
- package/dist/src/cli/commands/plan.js +54 -3
- package/dist/src/cli/commands/speckit.js +0 -1
- package/dist/src/cli/program.js +0 -2
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.js +2 -2
- package/dist/src/json-to-md.js +0 -8
- package/dist/src/mcp/server.js +0 -1
- package/dist/src/md-to-json.js +0 -10
- package/dist/src/operations/add-node.d.ts +0 -51
- package/dist/src/operations/add-relationship.d.ts +0 -34
- package/dist/src/operations/check.d.ts +0 -17
- package/dist/src/operations/graph-decision.d.ts +0 -17
- package/dist/src/operations/graph-dependency.d.ts +0 -17
- package/dist/src/operations/graph-refinement.d.ts +0 -17
- package/dist/src/operations/graph.d.ts +0 -17
- package/dist/src/operations/index.d.ts +3 -5
- package/dist/src/operations/index.js +3 -5
- package/dist/src/operations/infer-completeness.d.ts +0 -17
- package/dist/src/operations/infer-completeness.js +0 -4
- package/dist/src/operations/infer-derived.d.ts +0 -17
- package/dist/src/operations/infer-impact.d.ts +0 -119
- package/dist/src/operations/infer-lifecycle.d.ts +0 -17
- package/dist/src/operations/init-document.d.ts +0 -17
- package/dist/src/operations/json-to-markdown.d.ts +0 -17
- package/dist/src/operations/markdown-to-json.d.ts +0 -17
- package/dist/src/operations/next-id.d.ts +0 -17
- package/dist/src/operations/node-history.d.ts +0 -17
- package/dist/src/operations/plan-add-task.d.ts +0 -34
- package/dist/src/operations/{mark-task-done.d.ts → plan-complete-task.d.ts} +4 -41
- package/dist/src/operations/plan-complete-task.js +18 -0
- package/dist/src/operations/plan-gate.d.ts +0 -17
- package/dist/src/operations/plan-init.d.ts +0 -17
- package/dist/src/operations/plan-progress.d.ts +18 -17
- package/dist/src/operations/plan-progress.js +6 -0
- package/dist/src/operations/{mark-task-undone.d.ts → plan-reopen-task.d.ts} +4 -41
- package/dist/src/operations/plan-reopen-task.js +18 -0
- package/dist/src/operations/{add-plan-task.d.ts → plan-start-task.d.ts} +4 -41
- package/dist/src/operations/plan-start-task.js +18 -0
- package/dist/src/operations/plan-status.d.ts +22 -17
- package/dist/src/operations/plan-status.js +8 -0
- package/dist/src/operations/query-node.d.ts +0 -51
- package/dist/src/operations/query-nodes.d.ts +0 -34
- package/dist/src/operations/query-relationships.d.ts +0 -17
- package/dist/src/operations/remove-node.d.ts +0 -51
- package/dist/src/operations/remove-relationship.d.ts +0 -34
- package/dist/src/operations/rename.d.ts +0 -34
- package/dist/src/operations/search.d.ts +0 -34
- package/dist/src/operations/speckit-diff.d.ts +0 -17
- package/dist/src/operations/speckit-export.d.ts +0 -17
- package/dist/src/operations/speckit-import.d.ts +0 -17
- package/dist/src/operations/speckit-sync.d.ts +0 -51
- package/dist/src/operations/speckit-sync.js +0 -1
- package/dist/src/operations/state-at.d.ts +0 -17
- package/dist/src/operations/stats.d.ts +0 -17
- package/dist/src/operations/sync.d.ts +0 -51
- package/dist/src/operations/timeline.d.ts +0 -17
- package/dist/src/operations/trace-from-node.d.ts +0 -51
- package/dist/src/operations/update-metadata.d.ts +0 -34
- package/dist/src/operations/update-node.d.ts +0 -58
- package/dist/src/operations/validate.d.ts +0 -17
- package/dist/src/operations/validate.js +71 -0
- package/dist/src/schema.d.ts +0 -61
- package/dist/src/schema.js +0 -11
- package/dist/src/speckit/generate.js +17 -20
- package/dist/src/speckit/index.d.ts +1 -1
- package/dist/src/speckit/index.js +1 -1
- package/dist/src/speckit/parse.d.ts +1 -1
- package/dist/src/speckit/parse.js +20 -14
- package/dist/src/speckit/plan.d.ts +29 -7
- package/dist/src/speckit/plan.js +181 -47
- package/package.json +3 -3
- package/schema.json +0 -31
- package/dist/src/cli/commands/task.d.ts +0 -2
- package/dist/src/cli/commands/task.js +0 -157
- package/dist/src/operations/add-plan-task.js +0 -29
- package/dist/src/operations/mark-task-done.js +0 -30
- package/dist/src/operations/mark-task-undone.js +0 -30
- package/dist/src/operations/task-list.d.ts +0 -288
- package/dist/src/operations/task-list.js +0 -49
- package/dist/src/operations/update-plan-task.d.ts +0 -555
- package/dist/src/operations/update-plan-task.js +0 -35
|
@@ -92,18 +92,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
92
92
|
description?: string | string[] | undefined;
|
|
93
93
|
};
|
|
94
94
|
}>>;
|
|
95
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
96
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
97
|
-
is(value: unknown): value is string | string[];
|
|
98
|
-
};
|
|
99
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
100
|
-
}, z.core.$loose> & {
|
|
101
|
-
is(value: unknown): value is {
|
|
102
|
-
[x: string]: unknown;
|
|
103
|
-
description: string | string[];
|
|
104
|
-
done?: boolean | undefined;
|
|
105
|
-
};
|
|
106
|
-
}>>;
|
|
107
95
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
108
96
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
109
97
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -235,11 +223,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
235
223
|
target?: string | undefined;
|
|
236
224
|
description?: string | string[] | undefined;
|
|
237
225
|
}[] | undefined;
|
|
238
|
-
plan?: {
|
|
239
|
-
[x: string]: unknown;
|
|
240
|
-
description: string | string[];
|
|
241
|
-
done?: boolean | undefined;
|
|
242
|
-
}[] | undefined;
|
|
243
226
|
propagation?: Record<string, boolean> | undefined;
|
|
244
227
|
includes?: string[] | undefined;
|
|
245
228
|
external_references?: {
|
|
@@ -387,18 +370,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
387
370
|
description?: string | string[] | undefined;
|
|
388
371
|
};
|
|
389
372
|
}>>;
|
|
390
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
391
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
392
|
-
is(value: unknown): value is string | string[];
|
|
393
|
-
};
|
|
394
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
395
|
-
}, z.core.$loose> & {
|
|
396
|
-
is(value: unknown): value is {
|
|
397
|
-
[x: string]: unknown;
|
|
398
|
-
description: string | string[];
|
|
399
|
-
done?: boolean | undefined;
|
|
400
|
-
};
|
|
401
|
-
}>>;
|
|
402
373
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
403
374
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
404
375
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -530,11 +501,6 @@ export declare const removeRelationshipOp: import("./define-operation.js").Defin
|
|
|
530
501
|
target?: string | undefined;
|
|
531
502
|
description?: string | string[] | undefined;
|
|
532
503
|
}[] | undefined;
|
|
533
|
-
plan?: {
|
|
534
|
-
[x: string]: unknown;
|
|
535
|
-
description: string | string[];
|
|
536
|
-
done?: boolean | undefined;
|
|
537
|
-
}[] | undefined;
|
|
538
504
|
propagation?: Record<string, boolean> | undefined;
|
|
539
505
|
includes?: string[] | undefined;
|
|
540
506
|
external_references?: {
|
|
@@ -93,18 +93,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
93
93
|
description?: string | string[] | undefined;
|
|
94
94
|
};
|
|
95
95
|
}>>;
|
|
96
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
97
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
98
|
-
is(value: unknown): value is string | string[];
|
|
99
|
-
};
|
|
100
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
101
|
-
}, z.core.$loose> & {
|
|
102
|
-
is(value: unknown): value is {
|
|
103
|
-
[x: string]: unknown;
|
|
104
|
-
description: string | string[];
|
|
105
|
-
done?: boolean | undefined;
|
|
106
|
-
};
|
|
107
|
-
}>>;
|
|
108
96
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
109
97
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
110
98
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -236,11 +224,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
236
224
|
target?: string | undefined;
|
|
237
225
|
description?: string | string[] | undefined;
|
|
238
226
|
}[] | undefined;
|
|
239
|
-
plan?: {
|
|
240
|
-
[x: string]: unknown;
|
|
241
|
-
description: string | string[];
|
|
242
|
-
done?: boolean | undefined;
|
|
243
|
-
}[] | undefined;
|
|
244
227
|
propagation?: Record<string, boolean> | undefined;
|
|
245
228
|
includes?: string[] | undefined;
|
|
246
229
|
external_references?: {
|
|
@@ -368,18 +351,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
368
351
|
description?: string | string[] | undefined;
|
|
369
352
|
};
|
|
370
353
|
}>>;
|
|
371
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
372
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
373
|
-
is(value: unknown): value is string | string[];
|
|
374
|
-
};
|
|
375
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
376
|
-
}, z.core.$loose> & {
|
|
377
|
-
is(value: unknown): value is {
|
|
378
|
-
[x: string]: unknown;
|
|
379
|
-
description: string | string[];
|
|
380
|
-
done?: boolean | undefined;
|
|
381
|
-
};
|
|
382
|
-
}>>;
|
|
383
354
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
384
355
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
385
356
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -511,11 +482,6 @@ export declare const renameOp: import("./define-operation.js").DefinedOperation<
|
|
|
511
482
|
target?: string | undefined;
|
|
512
483
|
description?: string | string[] | undefined;
|
|
513
484
|
}[] | undefined;
|
|
514
|
-
plan?: {
|
|
515
|
-
[x: string]: unknown;
|
|
516
|
-
description: string | string[];
|
|
517
|
-
done?: boolean | undefined;
|
|
518
|
-
}[] | undefined;
|
|
519
485
|
propagation?: Record<string, boolean> | undefined;
|
|
520
486
|
includes?: string[] | undefined;
|
|
521
487
|
external_references?: {
|
|
@@ -88,18 +88,6 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
88
88
|
description?: string | string[] | undefined;
|
|
89
89
|
};
|
|
90
90
|
}>>;
|
|
91
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
93
|
-
is(value: unknown): value is string | string[];
|
|
94
|
-
};
|
|
95
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
96
|
-
}, z.core.$loose> & {
|
|
97
|
-
is(value: unknown): value is {
|
|
98
|
-
[x: string]: unknown;
|
|
99
|
-
description: string | string[];
|
|
100
|
-
done?: boolean | undefined;
|
|
101
|
-
};
|
|
102
|
-
}>>;
|
|
103
91
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
104
92
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
105
93
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -231,11 +219,6 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
231
219
|
target?: string | undefined;
|
|
232
220
|
description?: string | string[] | undefined;
|
|
233
221
|
}[] | undefined;
|
|
234
|
-
plan?: {
|
|
235
|
-
[x: string]: unknown;
|
|
236
|
-
description: string | string[];
|
|
237
|
-
done?: boolean | undefined;
|
|
238
|
-
}[] | undefined;
|
|
239
222
|
propagation?: Record<string, boolean> | undefined;
|
|
240
223
|
includes?: string[] | undefined;
|
|
241
224
|
external_references?: {
|
|
@@ -344,18 +327,6 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
344
327
|
description?: string | string[] | undefined;
|
|
345
328
|
};
|
|
346
329
|
}>>;
|
|
347
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
348
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
349
|
-
is(value: unknown): value is string | string[];
|
|
350
|
-
};
|
|
351
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
352
|
-
}, z.core.$loose> & {
|
|
353
|
-
is(value: unknown): value is {
|
|
354
|
-
[x: string]: unknown;
|
|
355
|
-
description: string | string[];
|
|
356
|
-
done?: boolean | undefined;
|
|
357
|
-
};
|
|
358
|
-
}>>;
|
|
359
330
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
360
331
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
361
332
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -504,11 +475,6 @@ export declare const searchOp: import("./define-operation.js").DefinedOperation<
|
|
|
504
475
|
target?: string | undefined;
|
|
505
476
|
description?: string | string[] | undefined;
|
|
506
477
|
}[] | undefined;
|
|
507
|
-
plan?: {
|
|
508
|
-
[x: string]: unknown;
|
|
509
|
-
description: string | string[];
|
|
510
|
-
done?: boolean | undefined;
|
|
511
|
-
}[] | undefined;
|
|
512
478
|
propagation?: Record<string, boolean> | undefined;
|
|
513
479
|
includes?: string[] | undefined;
|
|
514
480
|
external_references?: {
|
|
@@ -106,18 +106,6 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
106
106
|
description?: string | string[] | undefined;
|
|
107
107
|
};
|
|
108
108
|
}>>;
|
|
109
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
110
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
111
|
-
is(value: unknown): value is string | string[];
|
|
112
|
-
};
|
|
113
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
114
|
-
}, z.core.$loose> & {
|
|
115
|
-
is(value: unknown): value is {
|
|
116
|
-
[x: string]: unknown;
|
|
117
|
-
description: string | string[];
|
|
118
|
-
done?: boolean | undefined;
|
|
119
|
-
};
|
|
120
|
-
}>>;
|
|
121
109
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
122
110
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
123
111
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -249,11 +237,6 @@ export declare const speckitDiffOp: import("./define-operation.js").DefinedOpera
|
|
|
249
237
|
target?: string | undefined;
|
|
250
238
|
description?: string | string[] | undefined;
|
|
251
239
|
}[] | undefined;
|
|
252
|
-
plan?: {
|
|
253
|
-
[x: string]: unknown;
|
|
254
|
-
description: string | string[];
|
|
255
|
-
done?: boolean | undefined;
|
|
256
|
-
}[] | undefined;
|
|
257
240
|
propagation?: Record<string, boolean> | undefined;
|
|
258
241
|
includes?: string[] | undefined;
|
|
259
242
|
external_references?: {
|
|
@@ -88,18 +88,6 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
88
88
|
description?: string | string[] | undefined;
|
|
89
89
|
};
|
|
90
90
|
}>>;
|
|
91
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
92
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
93
|
-
is(value: unknown): value is string | string[];
|
|
94
|
-
};
|
|
95
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
96
|
-
}, z.core.$loose> & {
|
|
97
|
-
is(value: unknown): value is {
|
|
98
|
-
[x: string]: unknown;
|
|
99
|
-
description: string | string[];
|
|
100
|
-
done?: boolean | undefined;
|
|
101
|
-
};
|
|
102
|
-
}>>;
|
|
103
91
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
104
92
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
105
93
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -231,11 +219,6 @@ export declare const speckitExportOp: import("./define-operation.js").DefinedOpe
|
|
|
231
219
|
target?: string | undefined;
|
|
232
220
|
description?: string | string[] | undefined;
|
|
233
221
|
}[] | undefined;
|
|
234
|
-
plan?: {
|
|
235
|
-
[x: string]: unknown;
|
|
236
|
-
description: string | string[];
|
|
237
|
-
done?: boolean | undefined;
|
|
238
|
-
}[] | undefined;
|
|
239
222
|
propagation?: Record<string, boolean> | undefined;
|
|
240
223
|
includes?: string[] | undefined;
|
|
241
224
|
external_references?: {
|
|
@@ -90,18 +90,6 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
90
90
|
description?: string | string[] | undefined;
|
|
91
91
|
};
|
|
92
92
|
}>>;
|
|
93
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
94
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
95
|
-
is(value: unknown): value is string | string[];
|
|
96
|
-
};
|
|
97
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
98
|
-
}, z.core.$loose> & {
|
|
99
|
-
is(value: unknown): value is {
|
|
100
|
-
[x: string]: unknown;
|
|
101
|
-
description: string | string[];
|
|
102
|
-
done?: boolean | undefined;
|
|
103
|
-
};
|
|
104
|
-
}>>;
|
|
105
93
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
106
94
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
107
95
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -233,11 +221,6 @@ export declare const speckitImportOp: import("./define-operation.js").DefinedOpe
|
|
|
233
221
|
target?: string | undefined;
|
|
234
222
|
description?: string | string[] | undefined;
|
|
235
223
|
}[] | undefined;
|
|
236
|
-
plan?: {
|
|
237
|
-
[x: string]: unknown;
|
|
238
|
-
description: string | string[];
|
|
239
|
-
done?: boolean | undefined;
|
|
240
|
-
}[] | undefined;
|
|
241
224
|
propagation?: Record<string, boolean> | undefined;
|
|
242
225
|
includes?: string[] | undefined;
|
|
243
226
|
external_references?: {
|
|
@@ -90,18 +90,6 @@ export declare const SyncResult: z.ZodObject<{
|
|
|
90
90
|
description?: string | string[] | undefined;
|
|
91
91
|
};
|
|
92
92
|
}>>;
|
|
93
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
94
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
95
|
-
is(value: unknown): value is string | string[];
|
|
96
|
-
};
|
|
97
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
98
|
-
}, z.core.$loose> & {
|
|
99
|
-
is(value: unknown): value is {
|
|
100
|
-
[x: string]: unknown;
|
|
101
|
-
description: string | string[];
|
|
102
|
-
done?: boolean | undefined;
|
|
103
|
-
};
|
|
104
|
-
}>>;
|
|
105
93
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
106
94
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
107
95
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -233,11 +221,6 @@ export declare const SyncResult: z.ZodObject<{
|
|
|
233
221
|
target?: string | undefined;
|
|
234
222
|
description?: string | string[] | undefined;
|
|
235
223
|
}[] | undefined;
|
|
236
|
-
plan?: {
|
|
237
|
-
[x: string]: unknown;
|
|
238
|
-
description: string | string[];
|
|
239
|
-
done?: boolean | undefined;
|
|
240
|
-
}[] | undefined;
|
|
241
224
|
propagation?: Record<string, boolean> | undefined;
|
|
242
225
|
includes?: string[] | undefined;
|
|
243
226
|
external_references?: {
|
|
@@ -369,18 +352,6 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
|
|
|
369
352
|
description?: string | string[] | undefined;
|
|
370
353
|
};
|
|
371
354
|
}>>;
|
|
372
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
373
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
374
|
-
is(value: unknown): value is string | string[];
|
|
375
|
-
};
|
|
376
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
377
|
-
}, z.core.$loose> & {
|
|
378
|
-
is(value: unknown): value is {
|
|
379
|
-
[x: string]: unknown;
|
|
380
|
-
description: string | string[];
|
|
381
|
-
done?: boolean | undefined;
|
|
382
|
-
};
|
|
383
|
-
}>>;
|
|
384
355
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
385
356
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
386
357
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -512,11 +483,6 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
|
|
|
512
483
|
target?: string | undefined;
|
|
513
484
|
description?: string | string[] | undefined;
|
|
514
485
|
}[] | undefined;
|
|
515
|
-
plan?: {
|
|
516
|
-
[x: string]: unknown;
|
|
517
|
-
description: string | string[];
|
|
518
|
-
done?: boolean | undefined;
|
|
519
|
-
}[] | undefined;
|
|
520
486
|
propagation?: Record<string, boolean> | undefined;
|
|
521
487
|
includes?: string[] | undefined;
|
|
522
488
|
external_references?: {
|
|
@@ -645,18 +611,6 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
|
|
|
645
611
|
description?: string | string[] | undefined;
|
|
646
612
|
};
|
|
647
613
|
}>>;
|
|
648
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
649
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
650
|
-
is(value: unknown): value is string | string[];
|
|
651
|
-
};
|
|
652
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
653
|
-
}, z.core.$loose> & {
|
|
654
|
-
is(value: unknown): value is {
|
|
655
|
-
[x: string]: unknown;
|
|
656
|
-
description: string | string[];
|
|
657
|
-
done?: boolean | undefined;
|
|
658
|
-
};
|
|
659
|
-
}>>;
|
|
660
614
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
661
615
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
662
616
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -788,11 +742,6 @@ export declare const speckitSyncOp: import("./define-operation.js").DefinedOpera
|
|
|
788
742
|
target?: string | undefined;
|
|
789
743
|
description?: string | string[] | undefined;
|
|
790
744
|
}[] | undefined;
|
|
791
|
-
plan?: {
|
|
792
|
-
[x: string]: unknown;
|
|
793
|
-
description: string | string[];
|
|
794
|
-
done?: boolean | undefined;
|
|
795
|
-
}[] | undefined;
|
|
796
745
|
propagation?: Record<string, boolean> | undefined;
|
|
797
746
|
includes?: string[] | undefined;
|
|
798
747
|
external_references?: {
|
|
@@ -87,7 +87,6 @@ export const speckitSyncOp = defineOperation({
|
|
|
87
87
|
rationale: specKitNode.rationale ?? syspromNode.rationale,
|
|
88
88
|
scope: specKitNode.scope ?? syspromNode.scope,
|
|
89
89
|
operations: specKitNode.operations ?? syspromNode.operations,
|
|
90
|
-
plan: specKitNode.plan ?? syspromNode.plan,
|
|
91
90
|
};
|
|
92
91
|
mergedNodes.set(id, merged);
|
|
93
92
|
}
|
|
@@ -96,18 +96,6 @@ export declare const stateAtOp: import("./define-operation.js").DefinedOperation
|
|
|
96
96
|
description?: string | string[] | undefined;
|
|
97
97
|
};
|
|
98
98
|
}>>;
|
|
99
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
100
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
101
|
-
is(value: unknown): value is string | string[];
|
|
102
|
-
};
|
|
103
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
104
|
-
}, z.core.$loose> & {
|
|
105
|
-
is(value: unknown): value is {
|
|
106
|
-
[x: string]: unknown;
|
|
107
|
-
description: string | string[];
|
|
108
|
-
done?: boolean | undefined;
|
|
109
|
-
};
|
|
110
|
-
}>>;
|
|
111
99
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
112
100
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
113
101
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -239,11 +227,6 @@ export declare const stateAtOp: import("./define-operation.js").DefinedOperation
|
|
|
239
227
|
target?: string | undefined;
|
|
240
228
|
description?: string | string[] | undefined;
|
|
241
229
|
}[] | undefined;
|
|
242
|
-
plan?: {
|
|
243
|
-
[x: string]: unknown;
|
|
244
|
-
description: string | string[];
|
|
245
|
-
done?: boolean | undefined;
|
|
246
|
-
}[] | undefined;
|
|
247
230
|
propagation?: Record<string, boolean> | undefined;
|
|
248
231
|
includes?: string[] | undefined;
|
|
249
232
|
external_references?: {
|
|
@@ -104,18 +104,6 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
|
|
|
104
104
|
description?: string | string[] | undefined;
|
|
105
105
|
};
|
|
106
106
|
}>>;
|
|
107
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
108
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
109
|
-
is(value: unknown): value is string | string[];
|
|
110
|
-
};
|
|
111
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
112
|
-
}, z.core.$loose> & {
|
|
113
|
-
is(value: unknown): value is {
|
|
114
|
-
[x: string]: unknown;
|
|
115
|
-
description: string | string[];
|
|
116
|
-
done?: boolean | undefined;
|
|
117
|
-
};
|
|
118
|
-
}>>;
|
|
119
107
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
120
108
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
121
109
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -247,11 +235,6 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
|
|
|
247
235
|
target?: string | undefined;
|
|
248
236
|
description?: string | string[] | undefined;
|
|
249
237
|
}[] | undefined;
|
|
250
|
-
plan?: {
|
|
251
|
-
[x: string]: unknown;
|
|
252
|
-
description: string | string[];
|
|
253
|
-
done?: boolean | undefined;
|
|
254
|
-
}[] | undefined;
|
|
255
238
|
propagation?: Record<string, boolean> | undefined;
|
|
256
239
|
includes?: string[] | undefined;
|
|
257
240
|
external_references?: {
|
|
@@ -125,18 +125,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
125
125
|
description?: string | string[] | undefined;
|
|
126
126
|
};
|
|
127
127
|
}>>;
|
|
128
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
129
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
130
|
-
is(value: unknown): value is string | string[];
|
|
131
|
-
};
|
|
132
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
133
|
-
}, z.core.$loose> & {
|
|
134
|
-
is(value: unknown): value is {
|
|
135
|
-
[x: string]: unknown;
|
|
136
|
-
description: string | string[];
|
|
137
|
-
done?: boolean | undefined;
|
|
138
|
-
};
|
|
139
|
-
}>>;
|
|
140
128
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
141
129
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
142
130
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -268,11 +256,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
268
256
|
target?: string | undefined;
|
|
269
257
|
description?: string | string[] | undefined;
|
|
270
258
|
}[] | undefined;
|
|
271
|
-
plan?: {
|
|
272
|
-
[x: string]: unknown;
|
|
273
|
-
description: string | string[];
|
|
274
|
-
done?: boolean | undefined;
|
|
275
|
-
}[] | undefined;
|
|
276
259
|
propagation?: Record<string, boolean> | undefined;
|
|
277
260
|
includes?: string[] | undefined;
|
|
278
261
|
external_references?: {
|
|
@@ -398,18 +381,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
398
381
|
description?: string | string[] | undefined;
|
|
399
382
|
};
|
|
400
383
|
}>>;
|
|
401
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
402
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
403
|
-
is(value: unknown): value is string | string[];
|
|
404
|
-
};
|
|
405
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
406
|
-
}, z.core.$loose> & {
|
|
407
|
-
is(value: unknown): value is {
|
|
408
|
-
[x: string]: unknown;
|
|
409
|
-
description: string | string[];
|
|
410
|
-
done?: boolean | undefined;
|
|
411
|
-
};
|
|
412
|
-
}>>;
|
|
413
384
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
414
385
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
415
386
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -541,11 +512,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
541
512
|
target?: string | undefined;
|
|
542
513
|
description?: string | string[] | undefined;
|
|
543
514
|
}[] | undefined;
|
|
544
|
-
plan?: {
|
|
545
|
-
[x: string]: unknown;
|
|
546
|
-
description: string | string[];
|
|
547
|
-
done?: boolean | undefined;
|
|
548
|
-
}[] | undefined;
|
|
549
515
|
propagation?: Record<string, boolean> | undefined;
|
|
550
516
|
includes?: string[] | undefined;
|
|
551
517
|
external_references?: {
|
|
@@ -680,18 +646,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
680
646
|
description?: string | string[] | undefined;
|
|
681
647
|
};
|
|
682
648
|
}>>;
|
|
683
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
684
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
685
|
-
is(value: unknown): value is string | string[];
|
|
686
|
-
};
|
|
687
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
688
|
-
}, z.core.$loose> & {
|
|
689
|
-
is(value: unknown): value is {
|
|
690
|
-
[x: string]: unknown;
|
|
691
|
-
description: string | string[];
|
|
692
|
-
done?: boolean | undefined;
|
|
693
|
-
};
|
|
694
|
-
}>>;
|
|
695
649
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
696
650
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
697
651
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -823,11 +777,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
|
|
|
823
777
|
target?: string | undefined;
|
|
824
778
|
description?: string | string[] | undefined;
|
|
825
779
|
}[] | undefined;
|
|
826
|
-
plan?: {
|
|
827
|
-
[x: string]: unknown;
|
|
828
|
-
description: string | string[];
|
|
829
|
-
done?: boolean | undefined;
|
|
830
|
-
}[] | undefined;
|
|
831
780
|
propagation?: Record<string, boolean> | undefined;
|
|
832
781
|
includes?: string[] | undefined;
|
|
833
782
|
external_references?: {
|
|
@@ -98,18 +98,6 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
98
98
|
description?: string | string[] | undefined;
|
|
99
99
|
};
|
|
100
100
|
}>>;
|
|
101
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
102
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
103
|
-
is(value: unknown): value is string | string[];
|
|
104
|
-
};
|
|
105
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
106
|
-
}, z.core.$loose> & {
|
|
107
|
-
is(value: unknown): value is {
|
|
108
|
-
[x: string]: unknown;
|
|
109
|
-
description: string | string[];
|
|
110
|
-
done?: boolean | undefined;
|
|
111
|
-
};
|
|
112
|
-
}>>;
|
|
113
101
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
114
102
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
115
103
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -241,11 +229,6 @@ export declare const timelineOp: import("./define-operation.js").DefinedOperatio
|
|
|
241
229
|
target?: string | undefined;
|
|
242
230
|
description?: string | string[] | undefined;
|
|
243
231
|
}[] | undefined;
|
|
244
|
-
plan?: {
|
|
245
|
-
[x: string]: unknown;
|
|
246
|
-
description: string | string[];
|
|
247
|
-
done?: boolean | undefined;
|
|
248
|
-
}[] | undefined;
|
|
249
232
|
propagation?: Record<string, boolean> | undefined;
|
|
250
233
|
includes?: string[] | undefined;
|
|
251
234
|
external_references?: {
|
|
@@ -70,18 +70,6 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
70
70
|
description?: string | string[] | undefined;
|
|
71
71
|
};
|
|
72
72
|
}>>;
|
|
73
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
74
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
75
|
-
is(value: unknown): value is string | string[];
|
|
76
|
-
};
|
|
77
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
78
|
-
}, z.core.$loose> & {
|
|
79
|
-
is(value: unknown): value is {
|
|
80
|
-
[x: string]: unknown;
|
|
81
|
-
description: string | string[];
|
|
82
|
-
done?: boolean | undefined;
|
|
83
|
-
};
|
|
84
|
-
}>>;
|
|
85
73
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
86
74
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
87
75
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -230,11 +218,6 @@ declare const TraceNodeSchema: z.ZodObject<{
|
|
|
230
218
|
target?: string | undefined;
|
|
231
219
|
description?: string | string[] | undefined;
|
|
232
220
|
}[] | undefined;
|
|
233
|
-
plan?: {
|
|
234
|
-
[x: string]: unknown;
|
|
235
|
-
description: string | string[];
|
|
236
|
-
done?: boolean | undefined;
|
|
237
|
-
}[] | undefined;
|
|
238
221
|
propagation?: Record<string, boolean> | undefined;
|
|
239
222
|
includes?: string[] | undefined;
|
|
240
223
|
external_references?: {
|
|
@@ -367,18 +350,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
367
350
|
description?: string | string[] | undefined;
|
|
368
351
|
};
|
|
369
352
|
}>>;
|
|
370
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
371
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
372
|
-
is(value: unknown): value is string | string[];
|
|
373
|
-
};
|
|
374
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
375
|
-
}, z.core.$loose> & {
|
|
376
|
-
is(value: unknown): value is {
|
|
377
|
-
[x: string]: unknown;
|
|
378
|
-
description: string | string[];
|
|
379
|
-
done?: boolean | undefined;
|
|
380
|
-
};
|
|
381
|
-
}>>;
|
|
382
353
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
383
354
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
384
355
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -510,11 +481,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
510
481
|
target?: string | undefined;
|
|
511
482
|
description?: string | string[] | undefined;
|
|
512
483
|
}[] | undefined;
|
|
513
|
-
plan?: {
|
|
514
|
-
[x: string]: unknown;
|
|
515
|
-
description: string | string[];
|
|
516
|
-
done?: boolean | undefined;
|
|
517
|
-
}[] | undefined;
|
|
518
484
|
propagation?: Record<string, boolean> | undefined;
|
|
519
485
|
includes?: string[] | undefined;
|
|
520
486
|
external_references?: {
|
|
@@ -625,18 +591,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
625
591
|
description?: string | string[] | undefined;
|
|
626
592
|
};
|
|
627
593
|
}>>;
|
|
628
|
-
plan: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
629
|
-
description: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
630
|
-
is(value: unknown): value is string | string[];
|
|
631
|
-
};
|
|
632
|
-
done: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
633
|
-
}, z.core.$loose> & {
|
|
634
|
-
is(value: unknown): value is {
|
|
635
|
-
[x: string]: unknown;
|
|
636
|
-
description: string | string[];
|
|
637
|
-
done?: boolean | undefined;
|
|
638
|
-
};
|
|
639
|
-
}>>;
|
|
640
594
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
641
595
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
642
596
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -785,11 +739,6 @@ export declare const traceFromNodeOp: import("./define-operation.js").DefinedOpe
|
|
|
785
739
|
target?: string | undefined;
|
|
786
740
|
description?: string | string[] | undefined;
|
|
787
741
|
}[] | undefined;
|
|
788
|
-
plan?: {
|
|
789
|
-
[x: string]: unknown;
|
|
790
|
-
description: string | string[];
|
|
791
|
-
done?: boolean | undefined;
|
|
792
|
-
}[] | undefined;
|
|
793
742
|
propagation?: Record<string, boolean> | undefined;
|
|
794
743
|
includes?: string[] | undefined;
|
|
795
744
|
external_references?: {
|