sysprom 1.20.0 → 1.21.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +13 -2
  74. package/schema.json +4 -44
@@ -18,39 +18,18 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
18
18
  gate: "gate";
19
19
  mode: "mode";
20
20
  artefact: "artefact";
21
- artefact_flow: "artefact_flow";
22
21
  decision: "decision";
23
22
  change: "change";
24
23
  view: "view";
25
24
  milestone: "milestone";
26
- version: "version";
27
25
  }> & {
28
- 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";
26
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
29
27
  };
30
28
  name: z.ZodString;
31
29
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
32
30
  is(value: unknown): value is string | string[];
33
31
  }>;
34
- status: z.ZodOptional<z.ZodEnum<{
35
- deprecated: "deprecated";
36
- proposed: "proposed";
37
- accepted: "accepted";
38
- active: "active";
39
- implemented: "implemented";
40
- adopted: "adopted";
41
- defined: "defined";
42
- introduced: "introduced";
43
- in_progress: "in_progress";
44
- complete: "complete";
45
- consolidated: "consolidated";
46
- experimental: "experimental";
47
- retired: "retired";
48
- superseded: "superseded";
49
- abandoned: "abandoned";
50
- deferred: "deferred";
51
- }> & {
52
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
53
- }>;
32
+ status: z.ZodOptional<z.ZodNever>;
54
33
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
55
34
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
56
35
  is(value: unknown): value is string | string[];
@@ -105,8 +84,6 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
105
84
  }>>;
106
85
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
107
86
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
108
- input: z.ZodOptional<z.ZodString>;
109
- output: z.ZodOptional<z.ZodString>;
110
87
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
111
88
  role: z.ZodEnum<{
112
89
  output: "output";
@@ -167,27 +144,14 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
167
144
  affects: "affects";
168
145
  supersedes: "supersedes";
169
146
  must_preserve: "must_preserve";
170
- performs: "performs";
171
147
  part_of: "part_of";
172
148
  precedes: "precedes";
173
149
  must_follow: "must_follow";
174
- blocks: "blocks";
175
- routes_to: "routes_to";
176
- orchestrates: "orchestrates";
177
150
  governed_by: "governed_by";
178
151
  modifies: "modifies";
179
- triggered_by: "triggered_by";
180
- applies_to: "applies_to";
181
152
  produces: "produces";
182
- consumes: "consumes";
183
- transforms_into: "transforms_into";
184
- selects: "selects";
185
- requires: "requires";
186
- disables: "disables";
187
- influence: "influence";
188
- justifies: "justifies";
189
153
  }> & {
190
- 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";
154
+ 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";
191
155
  };
192
156
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
193
157
  is(value: unknown): value is string | string[];
@@ -206,7 +170,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
206
170
  [x: string]: unknown;
207
171
  from: string;
208
172
  to: string;
209
- 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";
173
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
210
174
  description?: string | string[] | undefined;
211
175
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
212
176
  strength?: number | undefined;
@@ -246,10 +210,10 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
246
210
  is(value: unknown): value is {
247
211
  [x: string]: unknown;
248
212
  id: string;
249
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
213
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
250
214
  name: string;
251
215
  description?: string | string[] | undefined;
252
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
216
+ status?: undefined;
253
217
  lifecycle?: Record<string, string | boolean> | undefined;
254
218
  context?: string | string[] | undefined;
255
219
  options?: {
@@ -273,8 +237,6 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
273
237
  }[] | undefined;
274
238
  propagation?: Record<string, boolean> | undefined;
275
239
  includes?: string[] | undefined;
276
- input?: string | undefined;
277
- output?: string | undefined;
278
240
  external_references?: {
279
241
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
280
242
  identifier: string;
@@ -297,7 +259,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
297
259
  [x: string]: unknown;
298
260
  from: string;
299
261
  to: string;
300
- 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";
262
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
301
263
  description?: string | string[] | undefined;
302
264
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
303
265
  strength?: number | undefined;
@@ -324,27 +286,14 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
324
286
  affects: "affects";
325
287
  supersedes: "supersedes";
326
288
  must_preserve: "must_preserve";
327
- performs: "performs";
328
289
  part_of: "part_of";
329
290
  precedes: "precedes";
330
291
  must_follow: "must_follow";
331
- blocks: "blocks";
332
- routes_to: "routes_to";
333
- orchestrates: "orchestrates";
334
292
  governed_by: "governed_by";
335
293
  modifies: "modifies";
336
- triggered_by: "triggered_by";
337
- applies_to: "applies_to";
338
294
  produces: "produces";
339
- consumes: "consumes";
340
- transforms_into: "transforms_into";
341
- selects: "selects";
342
- requires: "requires";
343
- disables: "disables";
344
- influence: "influence";
345
- justifies: "justifies";
346
295
  }> & {
347
- 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";
296
+ 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";
348
297
  };
349
298
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
350
299
  is(value: unknown): value is string | string[];
@@ -363,7 +312,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
363
312
  [x: string]: unknown;
364
313
  from: string;
365
314
  to: string;
366
- 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";
315
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
367
316
  description?: string | string[] | undefined;
368
317
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
369
318
  strength?: number | undefined;
@@ -381,27 +330,14 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
381
330
  affects: "affects";
382
331
  supersedes: "supersedes";
383
332
  must_preserve: "must_preserve";
384
- performs: "performs";
385
333
  part_of: "part_of";
386
334
  precedes: "precedes";
387
335
  must_follow: "must_follow";
388
- blocks: "blocks";
389
- routes_to: "routes_to";
390
- orchestrates: "orchestrates";
391
336
  governed_by: "governed_by";
392
337
  modifies: "modifies";
393
- triggered_by: "triggered_by";
394
- applies_to: "applies_to";
395
338
  produces: "produces";
396
- consumes: "consumes";
397
- transforms_into: "transforms_into";
398
- selects: "selects";
399
- requires: "requires";
400
- disables: "disables";
401
- influence: "influence";
402
- justifies: "justifies";
403
339
  }> & {
404
- 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";
340
+ 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";
405
341
  };
406
342
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
407
343
  is(value: unknown): value is string | string[];
@@ -420,7 +356,7 @@ export declare const NodeDetail: z.ZodNullable<z.ZodObject<{
420
356
  [x: string]: unknown;
421
357
  from: string;
422
358
  to: string;
423
- 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";
359
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
424
360
  description?: string | string[] | undefined;
425
361
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
426
362
  strength?: number | undefined;
@@ -466,39 +402,18 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
466
402
  gate: "gate";
467
403
  mode: "mode";
468
404
  artefact: "artefact";
469
- artefact_flow: "artefact_flow";
470
405
  decision: "decision";
471
406
  change: "change";
472
407
  view: "view";
473
408
  milestone: "milestone";
474
- version: "version";
475
409
  }> & {
476
- 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";
410
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
477
411
  };
478
412
  name: z.ZodString;
479
413
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
480
414
  is(value: unknown): value is string | string[];
481
415
  }>;
482
- status: z.ZodOptional<z.ZodEnum<{
483
- deprecated: "deprecated";
484
- proposed: "proposed";
485
- accepted: "accepted";
486
- active: "active";
487
- implemented: "implemented";
488
- adopted: "adopted";
489
- defined: "defined";
490
- introduced: "introduced";
491
- in_progress: "in_progress";
492
- complete: "complete";
493
- consolidated: "consolidated";
494
- experimental: "experimental";
495
- retired: "retired";
496
- superseded: "superseded";
497
- abandoned: "abandoned";
498
- deferred: "deferred";
499
- }> & {
500
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
501
- }>;
416
+ status: z.ZodOptional<z.ZodNever>;
502
417
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
503
418
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
504
419
  is(value: unknown): value is string | string[];
@@ -553,8 +468,6 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
553
468
  }>>;
554
469
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
555
470
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
556
- input: z.ZodOptional<z.ZodString>;
557
- output: z.ZodOptional<z.ZodString>;
558
471
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
559
472
  role: z.ZodEnum<{
560
473
  output: "output";
@@ -598,27 +511,14 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
598
511
  affects: "affects";
599
512
  supersedes: "supersedes";
600
513
  must_preserve: "must_preserve";
601
- performs: "performs";
602
514
  part_of: "part_of";
603
515
  precedes: "precedes";
604
516
  must_follow: "must_follow";
605
- blocks: "blocks";
606
- routes_to: "routes_to";
607
- orchestrates: "orchestrates";
608
517
  governed_by: "governed_by";
609
518
  modifies: "modifies";
610
- triggered_by: "triggered_by";
611
- applies_to: "applies_to";
612
519
  produces: "produces";
613
- consumes: "consumes";
614
- transforms_into: "transforms_into";
615
- selects: "selects";
616
- requires: "requires";
617
- disables: "disables";
618
- influence: "influence";
619
- justifies: "justifies";
620
520
  }> & {
621
- 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";
521
+ 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";
622
522
  };
623
523
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
624
524
  is(value: unknown): value is string | string[];
@@ -637,7 +537,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
637
537
  [x: string]: unknown;
638
538
  from: string;
639
539
  to: string;
640
- 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";
540
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
641
541
  description?: string | string[] | undefined;
642
542
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
643
543
  strength?: number | undefined;
@@ -677,10 +577,10 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
677
577
  nodes: {
678
578
  [x: string]: unknown;
679
579
  id: string;
680
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
580
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
681
581
  name: string;
682
582
  description?: string | string[] | undefined;
683
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
583
+ status?: undefined;
684
584
  lifecycle?: Record<string, string | boolean> | undefined;
685
585
  context?: string | string[] | undefined;
686
586
  options?: {
@@ -704,8 +604,6 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
704
604
  }[] | undefined;
705
605
  propagation?: Record<string, boolean> | undefined;
706
606
  includes?: string[] | undefined;
707
- input?: string | undefined;
708
- output?: string | undefined;
709
607
  external_references?: {
710
608
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
711
609
  identifier: string;
@@ -728,7 +626,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
728
626
  [x: string]: unknown;
729
627
  from: string;
730
628
  to: string;
731
- 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";
629
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
732
630
  description?: string | string[] | undefined;
733
631
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
734
632
  strength?: number | undefined;
@@ -761,39 +659,18 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
761
659
  gate: "gate";
762
660
  mode: "mode";
763
661
  artefact: "artefact";
764
- artefact_flow: "artefact_flow";
765
662
  decision: "decision";
766
663
  change: "change";
767
664
  view: "view";
768
665
  milestone: "milestone";
769
- version: "version";
770
666
  }> & {
771
- 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";
667
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
772
668
  };
773
669
  name: z.ZodString;
774
670
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
775
671
  is(value: unknown): value is string | string[];
776
672
  }>;
777
- status: z.ZodOptional<z.ZodEnum<{
778
- deprecated: "deprecated";
779
- proposed: "proposed";
780
- accepted: "accepted";
781
- active: "active";
782
- implemented: "implemented";
783
- adopted: "adopted";
784
- defined: "defined";
785
- introduced: "introduced";
786
- in_progress: "in_progress";
787
- complete: "complete";
788
- consolidated: "consolidated";
789
- experimental: "experimental";
790
- retired: "retired";
791
- superseded: "superseded";
792
- abandoned: "abandoned";
793
- deferred: "deferred";
794
- }> & {
795
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
796
- }>;
673
+ status: z.ZodOptional<z.ZodNever>;
797
674
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
798
675
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
799
676
  is(value: unknown): value is string | string[];
@@ -848,8 +725,6 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
848
725
  }>>;
849
726
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
850
727
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
851
- input: z.ZodOptional<z.ZodString>;
852
- output: z.ZodOptional<z.ZodString>;
853
728
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
854
729
  role: z.ZodEnum<{
855
730
  output: "output";
@@ -910,27 +785,14 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
910
785
  affects: "affects";
911
786
  supersedes: "supersedes";
912
787
  must_preserve: "must_preserve";
913
- performs: "performs";
914
788
  part_of: "part_of";
915
789
  precedes: "precedes";
916
790
  must_follow: "must_follow";
917
- blocks: "blocks";
918
- routes_to: "routes_to";
919
- orchestrates: "orchestrates";
920
791
  governed_by: "governed_by";
921
792
  modifies: "modifies";
922
- triggered_by: "triggered_by";
923
- applies_to: "applies_to";
924
793
  produces: "produces";
925
- consumes: "consumes";
926
- transforms_into: "transforms_into";
927
- selects: "selects";
928
- requires: "requires";
929
- disables: "disables";
930
- influence: "influence";
931
- justifies: "justifies";
932
794
  }> & {
933
- 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";
795
+ 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";
934
796
  };
935
797
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
936
798
  is(value: unknown): value is string | string[];
@@ -949,7 +811,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
949
811
  [x: string]: unknown;
950
812
  from: string;
951
813
  to: string;
952
- 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";
814
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
953
815
  description?: string | string[] | undefined;
954
816
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
955
817
  strength?: number | undefined;
@@ -989,10 +851,10 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
989
851
  is(value: unknown): value is {
990
852
  [x: string]: unknown;
991
853
  id: string;
992
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
854
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
993
855
  name: string;
994
856
  description?: string | string[] | undefined;
995
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
857
+ status?: undefined;
996
858
  lifecycle?: Record<string, string | boolean> | undefined;
997
859
  context?: string | string[] | undefined;
998
860
  options?: {
@@ -1016,8 +878,6 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
1016
878
  }[] | undefined;
1017
879
  propagation?: Record<string, boolean> | undefined;
1018
880
  includes?: string[] | undefined;
1019
- input?: string | undefined;
1020
- output?: string | undefined;
1021
881
  external_references?: {
1022
882
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
1023
883
  identifier: string;
@@ -1040,7 +900,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
1040
900
  [x: string]: unknown;
1041
901
  from: string;
1042
902
  to: string;
1043
- 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";
903
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
1044
904
  description?: string | string[] | undefined;
1045
905
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
1046
906
  strength?: number | undefined;
@@ -1067,27 +927,14 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
1067
927
  affects: "affects";
1068
928
  supersedes: "supersedes";
1069
929
  must_preserve: "must_preserve";
1070
- performs: "performs";
1071
930
  part_of: "part_of";
1072
931
  precedes: "precedes";
1073
932
  must_follow: "must_follow";
1074
- blocks: "blocks";
1075
- routes_to: "routes_to";
1076
- orchestrates: "orchestrates";
1077
933
  governed_by: "governed_by";
1078
934
  modifies: "modifies";
1079
- triggered_by: "triggered_by";
1080
- applies_to: "applies_to";
1081
935
  produces: "produces";
1082
- consumes: "consumes";
1083
- transforms_into: "transforms_into";
1084
- selects: "selects";
1085
- requires: "requires";
1086
- disables: "disables";
1087
- influence: "influence";
1088
- justifies: "justifies";
1089
936
  }> & {
1090
- 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";
937
+ 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";
1091
938
  };
1092
939
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
1093
940
  is(value: unknown): value is string | string[];
@@ -1106,7 +953,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
1106
953
  [x: string]: unknown;
1107
954
  from: string;
1108
955
  to: string;
1109
- 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";
956
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
1110
957
  description?: string | string[] | undefined;
1111
958
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
1112
959
  strength?: number | undefined;
@@ -1124,27 +971,14 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
1124
971
  affects: "affects";
1125
972
  supersedes: "supersedes";
1126
973
  must_preserve: "must_preserve";
1127
- performs: "performs";
1128
974
  part_of: "part_of";
1129
975
  precedes: "precedes";
1130
976
  must_follow: "must_follow";
1131
- blocks: "blocks";
1132
- routes_to: "routes_to";
1133
- orchestrates: "orchestrates";
1134
977
  governed_by: "governed_by";
1135
978
  modifies: "modifies";
1136
- triggered_by: "triggered_by";
1137
- applies_to: "applies_to";
1138
979
  produces: "produces";
1139
- consumes: "consumes";
1140
- transforms_into: "transforms_into";
1141
- selects: "selects";
1142
- requires: "requires";
1143
- disables: "disables";
1144
- influence: "influence";
1145
- justifies: "justifies";
1146
980
  }> & {
1147
- 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";
981
+ 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";
1148
982
  };
1149
983
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
1150
984
  is(value: unknown): value is string | string[];
@@ -1163,7 +997,7 @@ export declare const queryNodeOp: import("./define-operation.js").DefinedOperati
1163
997
  [x: string]: unknown;
1164
998
  from: string;
1165
999
  to: string;
1166
- 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";
1000
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
1167
1001
  description?: string | string[] | undefined;
1168
1002
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
1169
1003
  strength?: number | undefined;