sysprom 1.20.0 → 1.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/dist/schema.json +4 -44
  2. package/dist/src/cli/commands/add.js +6 -2
  3. package/dist/src/cli/commands/query.js +5 -3
  4. package/dist/src/cli/commands/speckit.js +2 -2
  5. package/dist/src/cli/commands/update.js +6 -4
  6. package/dist/src/endpoint-types.d.ts +4 -0
  7. package/dist/src/endpoint-types.js +22 -121
  8. package/dist/src/json-to-md.js +2 -16
  9. package/dist/src/lifecycle-state.d.ts +9 -0
  10. package/dist/src/lifecycle-state.js +22 -0
  11. package/dist/src/mcp/server.js +3 -6
  12. package/dist/src/md-to-json.js +1 -19
  13. package/dist/src/operations/add-node.d.ts +21 -135
  14. package/dist/src/operations/add-plan-task.d.ts +14 -90
  15. package/dist/src/operations/add-relationship.d.ts +16 -105
  16. package/dist/src/operations/check.d.ts +7 -45
  17. package/dist/src/operations/graph-decision.d.ts +7 -45
  18. package/dist/src/operations/graph-decision.js +0 -1
  19. package/dist/src/operations/graph-dependency.d.ts +7 -45
  20. package/dist/src/operations/graph-dependency.js +3 -23
  21. package/dist/src/operations/graph-refinement.d.ts +7 -45
  22. package/dist/src/operations/graph-shared.js +1 -3
  23. package/dist/src/operations/graph.d.ts +7 -45
  24. package/dist/src/operations/infer-completeness.d.ts +10 -54
  25. package/dist/src/operations/infer-derived.d.ts +7 -45
  26. package/dist/src/operations/infer-derived.js +28 -4
  27. package/dist/src/operations/infer-impact.d.ts +49 -315
  28. package/dist/src/operations/infer-impact.js +22 -3
  29. package/dist/src/operations/infer-lifecycle.d.ts +8 -106
  30. package/dist/src/operations/infer-lifecycle.js +4 -10
  31. package/dist/src/operations/init-document.d.ts +7 -45
  32. package/dist/src/operations/json-to-markdown.d.ts +7 -45
  33. package/dist/src/operations/mark-task-done.d.ts +14 -90
  34. package/dist/src/operations/mark-task-undone.d.ts +14 -90
  35. package/dist/src/operations/markdown-to-json.d.ts +7 -45
  36. package/dist/src/operations/next-id.d.ts +8 -48
  37. package/dist/src/operations/node-history.d.ts +7 -45
  38. package/dist/src/operations/plan-add-task.d.ts +14 -90
  39. package/dist/src/operations/plan-gate.d.ts +7 -45
  40. package/dist/src/operations/plan-init.d.ts +7 -45
  41. package/dist/src/operations/plan-progress.d.ts +7 -45
  42. package/dist/src/operations/plan-status.d.ts +7 -45
  43. package/dist/src/operations/query-node.d.ts +29 -195
  44. package/dist/src/operations/query-nodes.d.ts +15 -91
  45. package/dist/src/operations/query-nodes.js +6 -4
  46. package/dist/src/operations/query-relationships.d.ts +9 -60
  47. package/dist/src/operations/remove-node.d.ts +21 -135
  48. package/dist/src/operations/remove-node.js +11 -1
  49. package/dist/src/operations/remove-relationship.d.ts +15 -104
  50. package/dist/src/operations/rename.d.ts +14 -90
  51. package/dist/src/operations/search.d.ts +14 -90
  52. package/dist/src/operations/speckit-diff.d.ts +7 -45
  53. package/dist/src/operations/speckit-export.d.ts +7 -45
  54. package/dist/src/operations/speckit-import.d.ts +7 -45
  55. package/dist/src/operations/speckit-sync.d.ts +22 -136
  56. package/dist/src/operations/speckit-sync.js +3 -3
  57. package/dist/src/operations/state-at.d.ts +7 -45
  58. package/dist/src/operations/stats.d.ts +7 -45
  59. package/dist/src/operations/sync.d.ts +21 -135
  60. package/dist/src/operations/task-list.d.ts +7 -45
  61. package/dist/src/operations/timeline.d.ts +7 -45
  62. package/dist/src/operations/trace-from-node.d.ts +21 -135
  63. package/dist/src/operations/update-metadata.d.ts +14 -90
  64. package/dist/src/operations/update-node.d.ts +20 -155
  65. package/dist/src/operations/update-plan-task.d.ts +14 -90
  66. package/dist/src/operations/validate.d.ts +7 -45
  67. package/dist/src/operations/validate.js +8 -6
  68. package/dist/src/schema.d.ts +22 -164
  69. package/dist/src/schema.js +4 -27
  70. package/dist/src/speckit/generate.js +10 -7
  71. package/dist/src/speckit/parse.js +6 -3
  72. package/dist/src/speckit/plan.js +1 -1
  73. package/package.json +12 -1
  74. package/schema.json +4 -44
@@ -39,39 +39,18 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
39
39
  gate: "gate";
40
40
  mode: "mode";
41
41
  artefact: "artefact";
42
- artefact_flow: "artefact_flow";
43
42
  decision: "decision";
44
43
  change: "change";
45
44
  view: "view";
46
45
  milestone: "milestone";
47
- version: "version";
48
46
  }> & {
49
- is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
47
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
50
48
  };
51
49
  name: z.ZodString;
52
50
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
53
51
  is(value: unknown): value is string | string[];
54
52
  }>;
55
- status: z.ZodOptional<z.ZodEnum<{
56
- deprecated: "deprecated";
57
- proposed: "proposed";
58
- accepted: "accepted";
59
- active: "active";
60
- implemented: "implemented";
61
- adopted: "adopted";
62
- defined: "defined";
63
- introduced: "introduced";
64
- in_progress: "in_progress";
65
- complete: "complete";
66
- consolidated: "consolidated";
67
- experimental: "experimental";
68
- retired: "retired";
69
- superseded: "superseded";
70
- abandoned: "abandoned";
71
- deferred: "deferred";
72
- }> & {
73
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
74
- }>;
53
+ status: z.ZodOptional<z.ZodNever>;
75
54
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
76
55
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
77
56
  is(value: unknown): value is string | string[];
@@ -126,8 +105,6 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
126
105
  }>>;
127
106
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
128
107
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
129
- input: z.ZodOptional<z.ZodString>;
130
- output: z.ZodOptional<z.ZodString>;
131
108
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
132
109
  role: z.ZodEnum<{
133
110
  output: "output";
@@ -171,27 +148,14 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
171
148
  affects: "affects";
172
149
  supersedes: "supersedes";
173
150
  must_preserve: "must_preserve";
174
- performs: "performs";
175
151
  part_of: "part_of";
176
152
  precedes: "precedes";
177
153
  must_follow: "must_follow";
178
- blocks: "blocks";
179
- routes_to: "routes_to";
180
- orchestrates: "orchestrates";
181
154
  governed_by: "governed_by";
182
155
  modifies: "modifies";
183
- triggered_by: "triggered_by";
184
- applies_to: "applies_to";
185
156
  produces: "produces";
186
- consumes: "consumes";
187
- transforms_into: "transforms_into";
188
- selects: "selects";
189
- requires: "requires";
190
- disables: "disables";
191
- influence: "influence";
192
- justifies: "justifies";
193
157
  }> & {
194
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
158
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
195
159
  };
196
160
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
197
161
  is(value: unknown): value is string | string[];
@@ -210,7 +174,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
210
174
  [x: string]: unknown;
211
175
  from: string;
212
176
  to: string;
213
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
177
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
214
178
  description?: string | string[] | undefined;
215
179
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
216
180
  strength?: number | undefined;
@@ -250,10 +214,10 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
250
214
  nodes: {
251
215
  [x: string]: unknown;
252
216
  id: string;
253
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
217
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
254
218
  name: string;
255
219
  description?: string | string[] | undefined;
256
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
220
+ status?: undefined;
257
221
  lifecycle?: Record<string, string | boolean> | undefined;
258
222
  context?: string | string[] | undefined;
259
223
  options?: {
@@ -277,8 +241,6 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
277
241
  }[] | undefined;
278
242
  propagation?: Record<string, boolean> | undefined;
279
243
  includes?: string[] | undefined;
280
- input?: string | undefined;
281
- output?: string | undefined;
282
244
  external_references?: {
283
245
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
284
246
  identifier: string;
@@ -301,7 +263,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
301
263
  [x: string]: unknown;
302
264
  from: string;
303
265
  to: string;
304
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
266
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
305
267
  description?: string | string[] | undefined;
306
268
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
307
269
  strength?: number | undefined;
@@ -352,39 +314,18 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
352
314
  gate: "gate";
353
315
  mode: "mode";
354
316
  artefact: "artefact";
355
- artefact_flow: "artefact_flow";
356
317
  decision: "decision";
357
318
  change: "change";
358
319
  view: "view";
359
320
  milestone: "milestone";
360
- version: "version";
361
321
  }> & {
362
- is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
322
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
363
323
  };
364
324
  name: z.ZodString;
365
325
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
366
326
  is(value: unknown): value is string | string[];
367
327
  }>;
368
- status: z.ZodOptional<z.ZodEnum<{
369
- deprecated: "deprecated";
370
- proposed: "proposed";
371
- accepted: "accepted";
372
- active: "active";
373
- implemented: "implemented";
374
- adopted: "adopted";
375
- defined: "defined";
376
- introduced: "introduced";
377
- in_progress: "in_progress";
378
- complete: "complete";
379
- consolidated: "consolidated";
380
- experimental: "experimental";
381
- retired: "retired";
382
- superseded: "superseded";
383
- abandoned: "abandoned";
384
- deferred: "deferred";
385
- }> & {
386
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
387
- }>;
328
+ status: z.ZodOptional<z.ZodNever>;
388
329
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
389
330
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
390
331
  is(value: unknown): value is string | string[];
@@ -439,8 +380,6 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
439
380
  }>>;
440
381
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
441
382
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
442
- input: z.ZodOptional<z.ZodString>;
443
- output: z.ZodOptional<z.ZodString>;
444
383
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
445
384
  role: z.ZodEnum<{
446
385
  output: "output";
@@ -484,27 +423,14 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
484
423
  affects: "affects";
485
424
  supersedes: "supersedes";
486
425
  must_preserve: "must_preserve";
487
- performs: "performs";
488
426
  part_of: "part_of";
489
427
  precedes: "precedes";
490
428
  must_follow: "must_follow";
491
- blocks: "blocks";
492
- routes_to: "routes_to";
493
- orchestrates: "orchestrates";
494
429
  governed_by: "governed_by";
495
430
  modifies: "modifies";
496
- triggered_by: "triggered_by";
497
- applies_to: "applies_to";
498
431
  produces: "produces";
499
- consumes: "consumes";
500
- transforms_into: "transforms_into";
501
- selects: "selects";
502
- requires: "requires";
503
- disables: "disables";
504
- influence: "influence";
505
- justifies: "justifies";
506
432
  }> & {
507
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
433
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
508
434
  };
509
435
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
510
436
  is(value: unknown): value is string | string[];
@@ -523,7 +449,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
523
449
  [x: string]: unknown;
524
450
  from: string;
525
451
  to: string;
526
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
452
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
527
453
  description?: string | string[] | undefined;
528
454
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
529
455
  strength?: number | undefined;
@@ -563,10 +489,10 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
563
489
  nodes: {
564
490
  [x: string]: unknown;
565
491
  id: string;
566
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
492
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
567
493
  name: string;
568
494
  description?: string | string[] | undefined;
569
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
495
+ status?: undefined;
570
496
  lifecycle?: Record<string, string | boolean> | undefined;
571
497
  context?: string | string[] | undefined;
572
498
  options?: {
@@ -590,8 +516,6 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
590
516
  }[] | undefined;
591
517
  propagation?: Record<string, boolean> | undefined;
592
518
  includes?: string[] | undefined;
593
- input?: string | undefined;
594
- output?: string | undefined;
595
519
  external_references?: {
596
520
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
597
521
  identifier: string;
@@ -614,7 +538,7 @@ export declare const markTaskDoneOp: import("./define-operation.js").DefinedOper
614
538
  [x: string]: unknown;
615
539
  from: string;
616
540
  to: string;
617
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
541
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
618
542
  description?: string | string[] | undefined;
619
543
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
620
544
  strength?: number | undefined;
@@ -39,39 +39,18 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
39
39
  gate: "gate";
40
40
  mode: "mode";
41
41
  artefact: "artefact";
42
- artefact_flow: "artefact_flow";
43
42
  decision: "decision";
44
43
  change: "change";
45
44
  view: "view";
46
45
  milestone: "milestone";
47
- version: "version";
48
46
  }> & {
49
- is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
47
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
50
48
  };
51
49
  name: z.ZodString;
52
50
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
53
51
  is(value: unknown): value is string | string[];
54
52
  }>;
55
- status: z.ZodOptional<z.ZodEnum<{
56
- deprecated: "deprecated";
57
- proposed: "proposed";
58
- accepted: "accepted";
59
- active: "active";
60
- implemented: "implemented";
61
- adopted: "adopted";
62
- defined: "defined";
63
- introduced: "introduced";
64
- in_progress: "in_progress";
65
- complete: "complete";
66
- consolidated: "consolidated";
67
- experimental: "experimental";
68
- retired: "retired";
69
- superseded: "superseded";
70
- abandoned: "abandoned";
71
- deferred: "deferred";
72
- }> & {
73
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
74
- }>;
53
+ status: z.ZodOptional<z.ZodNever>;
75
54
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
76
55
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
77
56
  is(value: unknown): value is string | string[];
@@ -126,8 +105,6 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
126
105
  }>>;
127
106
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
128
107
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
129
- input: z.ZodOptional<z.ZodString>;
130
- output: z.ZodOptional<z.ZodString>;
131
108
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
132
109
  role: z.ZodEnum<{
133
110
  output: "output";
@@ -171,27 +148,14 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
171
148
  affects: "affects";
172
149
  supersedes: "supersedes";
173
150
  must_preserve: "must_preserve";
174
- performs: "performs";
175
151
  part_of: "part_of";
176
152
  precedes: "precedes";
177
153
  must_follow: "must_follow";
178
- blocks: "blocks";
179
- routes_to: "routes_to";
180
- orchestrates: "orchestrates";
181
154
  governed_by: "governed_by";
182
155
  modifies: "modifies";
183
- triggered_by: "triggered_by";
184
- applies_to: "applies_to";
185
156
  produces: "produces";
186
- consumes: "consumes";
187
- transforms_into: "transforms_into";
188
- selects: "selects";
189
- requires: "requires";
190
- disables: "disables";
191
- influence: "influence";
192
- justifies: "justifies";
193
157
  }> & {
194
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
158
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
195
159
  };
196
160
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
197
161
  is(value: unknown): value is string | string[];
@@ -210,7 +174,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
210
174
  [x: string]: unknown;
211
175
  from: string;
212
176
  to: string;
213
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
177
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
214
178
  description?: string | string[] | undefined;
215
179
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
216
180
  strength?: number | undefined;
@@ -250,10 +214,10 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
250
214
  nodes: {
251
215
  [x: string]: unknown;
252
216
  id: string;
253
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
217
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
254
218
  name: string;
255
219
  description?: string | string[] | undefined;
256
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
220
+ status?: undefined;
257
221
  lifecycle?: Record<string, string | boolean> | undefined;
258
222
  context?: string | string[] | undefined;
259
223
  options?: {
@@ -277,8 +241,6 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
277
241
  }[] | undefined;
278
242
  propagation?: Record<string, boolean> | undefined;
279
243
  includes?: string[] | undefined;
280
- input?: string | undefined;
281
- output?: string | undefined;
282
244
  external_references?: {
283
245
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
284
246
  identifier: string;
@@ -301,7 +263,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
301
263
  [x: string]: unknown;
302
264
  from: string;
303
265
  to: string;
304
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
266
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
305
267
  description?: string | string[] | undefined;
306
268
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
307
269
  strength?: number | undefined;
@@ -352,39 +314,18 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
352
314
  gate: "gate";
353
315
  mode: "mode";
354
316
  artefact: "artefact";
355
- artefact_flow: "artefact_flow";
356
317
  decision: "decision";
357
318
  change: "change";
358
319
  view: "view";
359
320
  milestone: "milestone";
360
- version: "version";
361
321
  }> & {
362
- is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
322
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
363
323
  };
364
324
  name: z.ZodString;
365
325
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
366
326
  is(value: unknown): value is string | string[];
367
327
  }>;
368
- status: z.ZodOptional<z.ZodEnum<{
369
- deprecated: "deprecated";
370
- proposed: "proposed";
371
- accepted: "accepted";
372
- active: "active";
373
- implemented: "implemented";
374
- adopted: "adopted";
375
- defined: "defined";
376
- introduced: "introduced";
377
- in_progress: "in_progress";
378
- complete: "complete";
379
- consolidated: "consolidated";
380
- experimental: "experimental";
381
- retired: "retired";
382
- superseded: "superseded";
383
- abandoned: "abandoned";
384
- deferred: "deferred";
385
- }> & {
386
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
387
- }>;
328
+ status: z.ZodOptional<z.ZodNever>;
388
329
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
389
330
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
390
331
  is(value: unknown): value is string | string[];
@@ -439,8 +380,6 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
439
380
  }>>;
440
381
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
441
382
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
442
- input: z.ZodOptional<z.ZodString>;
443
- output: z.ZodOptional<z.ZodString>;
444
383
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
445
384
  role: z.ZodEnum<{
446
385
  output: "output";
@@ -484,27 +423,14 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
484
423
  affects: "affects";
485
424
  supersedes: "supersedes";
486
425
  must_preserve: "must_preserve";
487
- performs: "performs";
488
426
  part_of: "part_of";
489
427
  precedes: "precedes";
490
428
  must_follow: "must_follow";
491
- blocks: "blocks";
492
- routes_to: "routes_to";
493
- orchestrates: "orchestrates";
494
429
  governed_by: "governed_by";
495
430
  modifies: "modifies";
496
- triggered_by: "triggered_by";
497
- applies_to: "applies_to";
498
431
  produces: "produces";
499
- consumes: "consumes";
500
- transforms_into: "transforms_into";
501
- selects: "selects";
502
- requires: "requires";
503
- disables: "disables";
504
- influence: "influence";
505
- justifies: "justifies";
506
432
  }> & {
507
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
433
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
508
434
  };
509
435
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
510
436
  is(value: unknown): value is string | string[];
@@ -523,7 +449,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
523
449
  [x: string]: unknown;
524
450
  from: string;
525
451
  to: string;
526
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
452
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
527
453
  description?: string | string[] | undefined;
528
454
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
529
455
  strength?: number | undefined;
@@ -563,10 +489,10 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
563
489
  nodes: {
564
490
  [x: string]: unknown;
565
491
  id: string;
566
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
492
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
567
493
  name: string;
568
494
  description?: string | string[] | undefined;
569
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
495
+ status?: undefined;
570
496
  lifecycle?: Record<string, string | boolean> | undefined;
571
497
  context?: string | string[] | undefined;
572
498
  options?: {
@@ -590,8 +516,6 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
590
516
  }[] | undefined;
591
517
  propagation?: Record<string, boolean> | undefined;
592
518
  includes?: string[] | undefined;
593
- input?: string | undefined;
594
- output?: string | undefined;
595
519
  external_references?: {
596
520
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
597
521
  identifier: string;
@@ -614,7 +538,7 @@ export declare const markTaskUndoneOp: import("./define-operation.js").DefinedOp
614
538
  [x: string]: unknown;
615
539
  from: string;
616
540
  to: string;
617
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
541
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
618
542
  description?: string | string[] | undefined;
619
543
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
620
544
  strength?: number | undefined;
@@ -37,39 +37,18 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
37
37
  gate: "gate";
38
38
  mode: "mode";
39
39
  artefact: "artefact";
40
- artefact_flow: "artefact_flow";
41
40
  decision: "decision";
42
41
  change: "change";
43
42
  view: "view";
44
43
  milestone: "milestone";
45
- version: "version";
46
44
  }> & {
47
- is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
45
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
48
46
  };
49
47
  name: z.ZodString;
50
48
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
51
49
  is(value: unknown): value is string | string[];
52
50
  }>;
53
- status: z.ZodOptional<z.ZodEnum<{
54
- deprecated: "deprecated";
55
- proposed: "proposed";
56
- accepted: "accepted";
57
- active: "active";
58
- implemented: "implemented";
59
- adopted: "adopted";
60
- defined: "defined";
61
- introduced: "introduced";
62
- in_progress: "in_progress";
63
- complete: "complete";
64
- consolidated: "consolidated";
65
- experimental: "experimental";
66
- retired: "retired";
67
- superseded: "superseded";
68
- abandoned: "abandoned";
69
- deferred: "deferred";
70
- }> & {
71
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
72
- }>;
51
+ status: z.ZodOptional<z.ZodNever>;
73
52
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
74
53
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
75
54
  is(value: unknown): value is string | string[];
@@ -124,8 +103,6 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
124
103
  }>>;
125
104
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
126
105
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
127
- input: z.ZodOptional<z.ZodString>;
128
- output: z.ZodOptional<z.ZodString>;
129
106
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
130
107
  role: z.ZodEnum<{
131
108
  output: "output";
@@ -169,27 +146,14 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
169
146
  affects: "affects";
170
147
  supersedes: "supersedes";
171
148
  must_preserve: "must_preserve";
172
- performs: "performs";
173
149
  part_of: "part_of";
174
150
  precedes: "precedes";
175
151
  must_follow: "must_follow";
176
- blocks: "blocks";
177
- routes_to: "routes_to";
178
- orchestrates: "orchestrates";
179
152
  governed_by: "governed_by";
180
153
  modifies: "modifies";
181
- triggered_by: "triggered_by";
182
- applies_to: "applies_to";
183
154
  produces: "produces";
184
- consumes: "consumes";
185
- transforms_into: "transforms_into";
186
- selects: "selects";
187
- requires: "requires";
188
- disables: "disables";
189
- influence: "influence";
190
- justifies: "justifies";
191
155
  }> & {
192
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
156
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
193
157
  };
194
158
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
195
159
  is(value: unknown): value is string | string[];
@@ -208,7 +172,7 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
208
172
  [x: string]: unknown;
209
173
  from: string;
210
174
  to: string;
211
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
175
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
212
176
  description?: string | string[] | undefined;
213
177
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
214
178
  strength?: number | undefined;
@@ -248,10 +212,10 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
248
212
  nodes: {
249
213
  [x: string]: unknown;
250
214
  id: string;
251
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
215
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
252
216
  name: string;
253
217
  description?: string | string[] | undefined;
254
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
218
+ status?: undefined;
255
219
  lifecycle?: Record<string, string | boolean> | undefined;
256
220
  context?: string | string[] | undefined;
257
221
  options?: {
@@ -275,8 +239,6 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
275
239
  }[] | undefined;
276
240
  propagation?: Record<string, boolean> | undefined;
277
241
  includes?: string[] | undefined;
278
- input?: string | undefined;
279
- output?: string | undefined;
280
242
  external_references?: {
281
243
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
282
244
  identifier: string;
@@ -299,7 +261,7 @@ export declare const markdownToJsonOp: import("./define-operation.js").DefinedOp
299
261
  [x: string]: unknown;
300
262
  from: string;
301
263
  to: string;
302
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
264
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
303
265
  description?: string | string[] | undefined;
304
266
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
305
267
  strength?: number | undefined;