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
@@ -52,39 +52,18 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
52
52
  gate: "gate";
53
53
  mode: "mode";
54
54
  artefact: "artefact";
55
- artefact_flow: "artefact_flow";
56
55
  decision: "decision";
57
56
  change: "change";
58
57
  view: "view";
59
58
  milestone: "milestone";
60
- version: "version";
61
59
  }> & {
62
- 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";
60
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
63
61
  };
64
62
  name: z.ZodString;
65
63
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
66
64
  is(value: unknown): value is string | string[];
67
65
  }>;
68
- status: z.ZodOptional<z.ZodEnum<{
69
- deprecated: "deprecated";
70
- proposed: "proposed";
71
- accepted: "accepted";
72
- active: "active";
73
- implemented: "implemented";
74
- adopted: "adopted";
75
- defined: "defined";
76
- introduced: "introduced";
77
- in_progress: "in_progress";
78
- complete: "complete";
79
- consolidated: "consolidated";
80
- experimental: "experimental";
81
- retired: "retired";
82
- superseded: "superseded";
83
- abandoned: "abandoned";
84
- deferred: "deferred";
85
- }> & {
86
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
87
- }>;
66
+ status: z.ZodOptional<z.ZodNever>;
88
67
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
89
68
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
90
69
  is(value: unknown): value is string | string[];
@@ -139,8 +118,6 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
139
118
  }>>;
140
119
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
141
120
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
142
- input: z.ZodOptional<z.ZodString>;
143
- output: z.ZodOptional<z.ZodString>;
144
121
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
145
122
  role: z.ZodEnum<{
146
123
  output: "output";
@@ -184,27 +161,14 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
184
161
  affects: "affects";
185
162
  supersedes: "supersedes";
186
163
  must_preserve: "must_preserve";
187
- performs: "performs";
188
164
  part_of: "part_of";
189
165
  precedes: "precedes";
190
166
  must_follow: "must_follow";
191
- blocks: "blocks";
192
- routes_to: "routes_to";
193
- orchestrates: "orchestrates";
194
167
  governed_by: "governed_by";
195
168
  modifies: "modifies";
196
- triggered_by: "triggered_by";
197
- applies_to: "applies_to";
198
169
  produces: "produces";
199
- consumes: "consumes";
200
- transforms_into: "transforms_into";
201
- selects: "selects";
202
- requires: "requires";
203
- disables: "disables";
204
- influence: "influence";
205
- justifies: "justifies";
206
170
  }> & {
207
- 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";
171
+ 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";
208
172
  };
209
173
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
210
174
  is(value: unknown): value is string | string[];
@@ -223,7 +187,7 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
223
187
  [x: string]: unknown;
224
188
  from: string;
225
189
  to: string;
226
- 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";
190
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
227
191
  description?: string | string[] | undefined;
228
192
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
229
193
  strength?: number | undefined;
@@ -263,10 +227,10 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
263
227
  nodes: {
264
228
  [x: string]: unknown;
265
229
  id: string;
266
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
230
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
267
231
  name: string;
268
232
  description?: string | string[] | undefined;
269
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
233
+ status?: undefined;
270
234
  lifecycle?: Record<string, string | boolean> | undefined;
271
235
  context?: string | string[] | undefined;
272
236
  options?: {
@@ -290,8 +254,6 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
290
254
  }[] | undefined;
291
255
  propagation?: Record<string, boolean> | undefined;
292
256
  includes?: string[] | undefined;
293
- input?: string | undefined;
294
- output?: string | undefined;
295
257
  external_references?: {
296
258
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
297
259
  identifier: string;
@@ -314,7 +276,7 @@ export declare const statsOp: import("./define-operation.js").DefinedOperation<z
314
276
  [x: string]: unknown;
315
277
  from: string;
316
278
  to: string;
317
- 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";
279
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
318
280
  description?: string | string[] | undefined;
319
281
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
320
282
  strength?: number | undefined;
@@ -73,39 +73,18 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
73
73
  gate: "gate";
74
74
  mode: "mode";
75
75
  artefact: "artefact";
76
- artefact_flow: "artefact_flow";
77
76
  decision: "decision";
78
77
  change: "change";
79
78
  view: "view";
80
79
  milestone: "milestone";
81
- version: "version";
82
80
  }> & {
83
- 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";
81
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
84
82
  };
85
83
  name: z.ZodString;
86
84
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
87
85
  is(value: unknown): value is string | string[];
88
86
  }>;
89
- status: z.ZodOptional<z.ZodEnum<{
90
- deprecated: "deprecated";
91
- proposed: "proposed";
92
- accepted: "accepted";
93
- active: "active";
94
- implemented: "implemented";
95
- adopted: "adopted";
96
- defined: "defined";
97
- introduced: "introduced";
98
- in_progress: "in_progress";
99
- complete: "complete";
100
- consolidated: "consolidated";
101
- experimental: "experimental";
102
- retired: "retired";
103
- superseded: "superseded";
104
- abandoned: "abandoned";
105
- deferred: "deferred";
106
- }> & {
107
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
108
- }>;
87
+ status: z.ZodOptional<z.ZodNever>;
109
88
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
110
89
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
111
90
  is(value: unknown): value is string | string[];
@@ -160,8 +139,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
160
139
  }>>;
161
140
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
162
141
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
163
- input: z.ZodOptional<z.ZodString>;
164
- output: z.ZodOptional<z.ZodString>;
165
142
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
166
143
  role: z.ZodEnum<{
167
144
  output: "output";
@@ -205,27 +182,14 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
205
182
  affects: "affects";
206
183
  supersedes: "supersedes";
207
184
  must_preserve: "must_preserve";
208
- performs: "performs";
209
185
  part_of: "part_of";
210
186
  precedes: "precedes";
211
187
  must_follow: "must_follow";
212
- blocks: "blocks";
213
- routes_to: "routes_to";
214
- orchestrates: "orchestrates";
215
188
  governed_by: "governed_by";
216
189
  modifies: "modifies";
217
- triggered_by: "triggered_by";
218
- applies_to: "applies_to";
219
190
  produces: "produces";
220
- consumes: "consumes";
221
- transforms_into: "transforms_into";
222
- selects: "selects";
223
- requires: "requires";
224
- disables: "disables";
225
- influence: "influence";
226
- justifies: "justifies";
227
191
  }> & {
228
- 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";
192
+ 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";
229
193
  };
230
194
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
231
195
  is(value: unknown): value is string | string[];
@@ -244,7 +208,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
244
208
  [x: string]: unknown;
245
209
  from: string;
246
210
  to: string;
247
- 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";
211
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
248
212
  description?: string | string[] | undefined;
249
213
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
250
214
  strength?: number | undefined;
@@ -284,10 +248,10 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
284
248
  nodes: {
285
249
  [x: string]: unknown;
286
250
  id: string;
287
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
251
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
288
252
  name: string;
289
253
  description?: string | string[] | undefined;
290
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
254
+ status?: undefined;
291
255
  lifecycle?: Record<string, string | boolean> | undefined;
292
256
  context?: string | string[] | undefined;
293
257
  options?: {
@@ -311,8 +275,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
311
275
  }[] | undefined;
312
276
  propagation?: Record<string, boolean> | undefined;
313
277
  includes?: string[] | undefined;
314
- input?: string | undefined;
315
- output?: string | undefined;
316
278
  external_references?: {
317
279
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
318
280
  identifier: string;
@@ -335,7 +297,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
335
297
  [x: string]: unknown;
336
298
  from: string;
337
299
  to: string;
338
- 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";
300
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
339
301
  description?: string | string[] | undefined;
340
302
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
341
303
  strength?: number | undefined;
@@ -384,39 +346,18 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
384
346
  gate: "gate";
385
347
  mode: "mode";
386
348
  artefact: "artefact";
387
- artefact_flow: "artefact_flow";
388
349
  decision: "decision";
389
350
  change: "change";
390
351
  view: "view";
391
352
  milestone: "milestone";
392
- version: "version";
393
353
  }> & {
394
- 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";
354
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
395
355
  };
396
356
  name: z.ZodString;
397
357
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
398
358
  is(value: unknown): value is string | string[];
399
359
  }>;
400
- status: z.ZodOptional<z.ZodEnum<{
401
- deprecated: "deprecated";
402
- proposed: "proposed";
403
- accepted: "accepted";
404
- active: "active";
405
- implemented: "implemented";
406
- adopted: "adopted";
407
- defined: "defined";
408
- introduced: "introduced";
409
- in_progress: "in_progress";
410
- complete: "complete";
411
- consolidated: "consolidated";
412
- experimental: "experimental";
413
- retired: "retired";
414
- superseded: "superseded";
415
- abandoned: "abandoned";
416
- deferred: "deferred";
417
- }> & {
418
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
419
- }>;
360
+ status: z.ZodOptional<z.ZodNever>;
420
361
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
421
362
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
422
363
  is(value: unknown): value is string | string[];
@@ -471,8 +412,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
471
412
  }>>;
472
413
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
473
414
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
474
- input: z.ZodOptional<z.ZodString>;
475
- output: z.ZodOptional<z.ZodString>;
476
415
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
477
416
  role: z.ZodEnum<{
478
417
  output: "output";
@@ -516,27 +455,14 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
516
455
  affects: "affects";
517
456
  supersedes: "supersedes";
518
457
  must_preserve: "must_preserve";
519
- performs: "performs";
520
458
  part_of: "part_of";
521
459
  precedes: "precedes";
522
460
  must_follow: "must_follow";
523
- blocks: "blocks";
524
- routes_to: "routes_to";
525
- orchestrates: "orchestrates";
526
461
  governed_by: "governed_by";
527
462
  modifies: "modifies";
528
- triggered_by: "triggered_by";
529
- applies_to: "applies_to";
530
463
  produces: "produces";
531
- consumes: "consumes";
532
- transforms_into: "transforms_into";
533
- selects: "selects";
534
- requires: "requires";
535
- disables: "disables";
536
- influence: "influence";
537
- justifies: "justifies";
538
464
  }> & {
539
- 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";
465
+ 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";
540
466
  };
541
467
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
542
468
  is(value: unknown): value is string | string[];
@@ -555,7 +481,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
555
481
  [x: string]: unknown;
556
482
  from: string;
557
483
  to: string;
558
- 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";
484
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
559
485
  description?: string | string[] | undefined;
560
486
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
561
487
  strength?: number | undefined;
@@ -595,10 +521,10 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
595
521
  nodes: {
596
522
  [x: string]: unknown;
597
523
  id: string;
598
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
524
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
599
525
  name: string;
600
526
  description?: string | string[] | undefined;
601
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
527
+ status?: undefined;
602
528
  lifecycle?: Record<string, string | boolean> | undefined;
603
529
  context?: string | string[] | undefined;
604
530
  options?: {
@@ -622,8 +548,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
622
548
  }[] | undefined;
623
549
  propagation?: Record<string, boolean> | undefined;
624
550
  includes?: string[] | undefined;
625
- input?: string | undefined;
626
- output?: string | undefined;
627
551
  external_references?: {
628
552
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
629
553
  identifier: string;
@@ -646,7 +570,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
646
570
  [x: string]: unknown;
647
571
  from: string;
648
572
  to: string;
649
- 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";
573
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
650
574
  description?: string | string[] | undefined;
651
575
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
652
576
  strength?: number | undefined;
@@ -704,39 +628,18 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
704
628
  gate: "gate";
705
629
  mode: "mode";
706
630
  artefact: "artefact";
707
- artefact_flow: "artefact_flow";
708
631
  decision: "decision";
709
632
  change: "change";
710
633
  view: "view";
711
634
  milestone: "milestone";
712
- version: "version";
713
635
  }> & {
714
- 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";
636
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
715
637
  };
716
638
  name: z.ZodString;
717
639
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
718
640
  is(value: unknown): value is string | string[];
719
641
  }>;
720
- status: z.ZodOptional<z.ZodEnum<{
721
- deprecated: "deprecated";
722
- proposed: "proposed";
723
- accepted: "accepted";
724
- active: "active";
725
- implemented: "implemented";
726
- adopted: "adopted";
727
- defined: "defined";
728
- introduced: "introduced";
729
- in_progress: "in_progress";
730
- complete: "complete";
731
- consolidated: "consolidated";
732
- experimental: "experimental";
733
- retired: "retired";
734
- superseded: "superseded";
735
- abandoned: "abandoned";
736
- deferred: "deferred";
737
- }> & {
738
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
739
- }>;
642
+ status: z.ZodOptional<z.ZodNever>;
740
643
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
741
644
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
742
645
  is(value: unknown): value is string | string[];
@@ -791,8 +694,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
791
694
  }>>;
792
695
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
793
696
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
794
- input: z.ZodOptional<z.ZodString>;
795
- output: z.ZodOptional<z.ZodString>;
796
697
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
797
698
  role: z.ZodEnum<{
798
699
  output: "output";
@@ -836,27 +737,14 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
836
737
  affects: "affects";
837
738
  supersedes: "supersedes";
838
739
  must_preserve: "must_preserve";
839
- performs: "performs";
840
740
  part_of: "part_of";
841
741
  precedes: "precedes";
842
742
  must_follow: "must_follow";
843
- blocks: "blocks";
844
- routes_to: "routes_to";
845
- orchestrates: "orchestrates";
846
743
  governed_by: "governed_by";
847
744
  modifies: "modifies";
848
- triggered_by: "triggered_by";
849
- applies_to: "applies_to";
850
745
  produces: "produces";
851
- consumes: "consumes";
852
- transforms_into: "transforms_into";
853
- selects: "selects";
854
- requires: "requires";
855
- disables: "disables";
856
- influence: "influence";
857
- justifies: "justifies";
858
746
  }> & {
859
- 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";
747
+ 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";
860
748
  };
861
749
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
862
750
  is(value: unknown): value is string | string[];
@@ -875,7 +763,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
875
763
  [x: string]: unknown;
876
764
  from: string;
877
765
  to: string;
878
- 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";
766
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
879
767
  description?: string | string[] | undefined;
880
768
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
881
769
  strength?: number | undefined;
@@ -915,10 +803,10 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
915
803
  nodes: {
916
804
  [x: string]: unknown;
917
805
  id: string;
918
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
806
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
919
807
  name: string;
920
808
  description?: string | string[] | undefined;
921
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
809
+ status?: undefined;
922
810
  lifecycle?: Record<string, string | boolean> | undefined;
923
811
  context?: string | string[] | undefined;
924
812
  options?: {
@@ -942,8 +830,6 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
942
830
  }[] | undefined;
943
831
  propagation?: Record<string, boolean> | undefined;
944
832
  includes?: string[] | undefined;
945
- input?: string | undefined;
946
- output?: string | undefined;
947
833
  external_references?: {
948
834
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
949
835
  identifier: string;
@@ -966,7 +852,7 @@ export declare const syncDocumentsOp: import("./define-operation.js").DefinedOpe
966
852
  [x: string]: unknown;
967
853
  from: string;
968
854
  to: string;
969
- 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";
855
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
970
856
  description?: string | string[] | undefined;
971
857
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
972
858
  strength?: number | undefined;
@@ -40,39 +40,18 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
40
40
  gate: "gate";
41
41
  mode: "mode";
42
42
  artefact: "artefact";
43
- artefact_flow: "artefact_flow";
44
43
  decision: "decision";
45
44
  change: "change";
46
45
  view: "view";
47
46
  milestone: "milestone";
48
- version: "version";
49
47
  }> & {
50
- 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";
48
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
51
49
  };
52
50
  name: z.ZodString;
53
51
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
54
52
  is(value: unknown): value is string | string[];
55
53
  }>;
56
- status: z.ZodOptional<z.ZodEnum<{
57
- deprecated: "deprecated";
58
- proposed: "proposed";
59
- accepted: "accepted";
60
- active: "active";
61
- implemented: "implemented";
62
- adopted: "adopted";
63
- defined: "defined";
64
- introduced: "introduced";
65
- in_progress: "in_progress";
66
- complete: "complete";
67
- consolidated: "consolidated";
68
- experimental: "experimental";
69
- retired: "retired";
70
- superseded: "superseded";
71
- abandoned: "abandoned";
72
- deferred: "deferred";
73
- }> & {
74
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
75
- }>;
54
+ status: z.ZodOptional<z.ZodNever>;
76
55
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
77
56
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
78
57
  is(value: unknown): value is string | string[];
@@ -127,8 +106,6 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
127
106
  }>>;
128
107
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
129
108
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
130
- input: z.ZodOptional<z.ZodString>;
131
- output: z.ZodOptional<z.ZodString>;
132
109
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
133
110
  role: z.ZodEnum<{
134
111
  output: "output";
@@ -172,27 +149,14 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
172
149
  affects: "affects";
173
150
  supersedes: "supersedes";
174
151
  must_preserve: "must_preserve";
175
- performs: "performs";
176
152
  part_of: "part_of";
177
153
  precedes: "precedes";
178
154
  must_follow: "must_follow";
179
- blocks: "blocks";
180
- routes_to: "routes_to";
181
- orchestrates: "orchestrates";
182
155
  governed_by: "governed_by";
183
156
  modifies: "modifies";
184
- triggered_by: "triggered_by";
185
- applies_to: "applies_to";
186
157
  produces: "produces";
187
- consumes: "consumes";
188
- transforms_into: "transforms_into";
189
- selects: "selects";
190
- requires: "requires";
191
- disables: "disables";
192
- influence: "influence";
193
- justifies: "justifies";
194
158
  }> & {
195
- 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";
159
+ 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";
196
160
  };
197
161
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
198
162
  is(value: unknown): value is string | string[];
@@ -211,7 +175,7 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
211
175
  [x: string]: unknown;
212
176
  from: string;
213
177
  to: string;
214
- 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";
178
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
215
179
  description?: string | string[] | undefined;
216
180
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
217
181
  strength?: number | undefined;
@@ -251,10 +215,10 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
251
215
  nodes: {
252
216
  [x: string]: unknown;
253
217
  id: string;
254
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
218
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
255
219
  name: string;
256
220
  description?: string | string[] | undefined;
257
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
221
+ status?: undefined;
258
222
  lifecycle?: Record<string, string | boolean> | undefined;
259
223
  context?: string | string[] | undefined;
260
224
  options?: {
@@ -278,8 +242,6 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
278
242
  }[] | undefined;
279
243
  propagation?: Record<string, boolean> | undefined;
280
244
  includes?: string[] | undefined;
281
- input?: string | undefined;
282
- output?: string | undefined;
283
245
  external_references?: {
284
246
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
285
247
  identifier: string;
@@ -302,7 +264,7 @@ export declare const taskListOp: import("./define-operation.js").DefinedOperatio
302
264
  [x: string]: unknown;
303
265
  from: string;
304
266
  to: string;
305
- 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";
267
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
306
268
  description?: string | string[] | undefined;
307
269
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
308
270
  strength?: number | undefined;