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
@@ -73,39 +73,18 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
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 planGateOp: import("./define-operation.js").DefinedOperatio
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 planGateOp: import("./define-operation.js").DefinedOperatio
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 planGateOp: import("./define-operation.js").DefinedOperatio
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 planGateOp: import("./define-operation.js").DefinedOperatio
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 planGateOp: import("./define-operation.js").DefinedOperatio
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 planGateOp: import("./define-operation.js").DefinedOperatio
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;
@@ -38,39 +38,18 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
38
38
  gate: "gate";
39
39
  mode: "mode";
40
40
  artefact: "artefact";
41
- artefact_flow: "artefact_flow";
42
41
  decision: "decision";
43
42
  change: "change";
44
43
  view: "view";
45
44
  milestone: "milestone";
46
- version: "version";
47
45
  }> & {
48
- 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";
46
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
49
47
  };
50
48
  name: z.ZodString;
51
49
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
52
50
  is(value: unknown): value is string | string[];
53
51
  }>;
54
- status: z.ZodOptional<z.ZodEnum<{
55
- deprecated: "deprecated";
56
- proposed: "proposed";
57
- accepted: "accepted";
58
- active: "active";
59
- implemented: "implemented";
60
- adopted: "adopted";
61
- defined: "defined";
62
- introduced: "introduced";
63
- in_progress: "in_progress";
64
- complete: "complete";
65
- consolidated: "consolidated";
66
- experimental: "experimental";
67
- retired: "retired";
68
- superseded: "superseded";
69
- abandoned: "abandoned";
70
- deferred: "deferred";
71
- }> & {
72
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
73
- }>;
52
+ status: z.ZodOptional<z.ZodNever>;
74
53
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
75
54
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
76
55
  is(value: unknown): value is string | string[];
@@ -125,8 +104,6 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
125
104
  }>>;
126
105
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
127
106
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
128
- input: z.ZodOptional<z.ZodString>;
129
- output: z.ZodOptional<z.ZodString>;
130
107
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
131
108
  role: z.ZodEnum<{
132
109
  output: "output";
@@ -170,27 +147,14 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
170
147
  affects: "affects";
171
148
  supersedes: "supersedes";
172
149
  must_preserve: "must_preserve";
173
- performs: "performs";
174
150
  part_of: "part_of";
175
151
  precedes: "precedes";
176
152
  must_follow: "must_follow";
177
- blocks: "blocks";
178
- routes_to: "routes_to";
179
- orchestrates: "orchestrates";
180
153
  governed_by: "governed_by";
181
154
  modifies: "modifies";
182
- triggered_by: "triggered_by";
183
- applies_to: "applies_to";
184
155
  produces: "produces";
185
- consumes: "consumes";
186
- transforms_into: "transforms_into";
187
- selects: "selects";
188
- requires: "requires";
189
- disables: "disables";
190
- influence: "influence";
191
- justifies: "justifies";
192
156
  }> & {
193
- 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";
157
+ 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";
194
158
  };
195
159
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
196
160
  is(value: unknown): value is string | string[];
@@ -209,7 +173,7 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
209
173
  [x: string]: unknown;
210
174
  from: string;
211
175
  to: string;
212
- 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";
176
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
213
177
  description?: string | string[] | undefined;
214
178
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
215
179
  strength?: number | undefined;
@@ -249,10 +213,10 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
249
213
  nodes: {
250
214
  [x: string]: unknown;
251
215
  id: string;
252
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
216
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
253
217
  name: string;
254
218
  description?: string | string[] | undefined;
255
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
219
+ status?: undefined;
256
220
  lifecycle?: Record<string, string | boolean> | undefined;
257
221
  context?: string | string[] | undefined;
258
222
  options?: {
@@ -276,8 +240,6 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
276
240
  }[] | undefined;
277
241
  propagation?: Record<string, boolean> | undefined;
278
242
  includes?: string[] | undefined;
279
- input?: string | undefined;
280
- output?: string | undefined;
281
243
  external_references?: {
282
244
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
283
245
  identifier: string;
@@ -300,7 +262,7 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
300
262
  [x: string]: unknown;
301
263
  from: string;
302
264
  to: string;
303
- 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";
265
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
304
266
  description?: string | string[] | undefined;
305
267
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
306
268
  strength?: number | undefined;
@@ -45,39 +45,18 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
45
45
  gate: "gate";
46
46
  mode: "mode";
47
47
  artefact: "artefact";
48
- artefact_flow: "artefact_flow";
49
48
  decision: "decision";
50
49
  change: "change";
51
50
  view: "view";
52
51
  milestone: "milestone";
53
- version: "version";
54
52
  }> & {
55
- 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";
53
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
56
54
  };
57
55
  name: z.ZodString;
58
56
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
59
57
  is(value: unknown): value is string | string[];
60
58
  }>;
61
- status: z.ZodOptional<z.ZodEnum<{
62
- deprecated: "deprecated";
63
- proposed: "proposed";
64
- accepted: "accepted";
65
- active: "active";
66
- implemented: "implemented";
67
- adopted: "adopted";
68
- defined: "defined";
69
- introduced: "introduced";
70
- in_progress: "in_progress";
71
- complete: "complete";
72
- consolidated: "consolidated";
73
- experimental: "experimental";
74
- retired: "retired";
75
- superseded: "superseded";
76
- abandoned: "abandoned";
77
- deferred: "deferred";
78
- }> & {
79
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
80
- }>;
59
+ status: z.ZodOptional<z.ZodNever>;
81
60
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
82
61
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
83
62
  is(value: unknown): value is string | string[];
@@ -132,8 +111,6 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
132
111
  }>>;
133
112
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
134
113
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
135
- input: z.ZodOptional<z.ZodString>;
136
- output: z.ZodOptional<z.ZodString>;
137
114
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
138
115
  role: z.ZodEnum<{
139
116
  output: "output";
@@ -177,27 +154,14 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
177
154
  affects: "affects";
178
155
  supersedes: "supersedes";
179
156
  must_preserve: "must_preserve";
180
- performs: "performs";
181
157
  part_of: "part_of";
182
158
  precedes: "precedes";
183
159
  must_follow: "must_follow";
184
- blocks: "blocks";
185
- routes_to: "routes_to";
186
- orchestrates: "orchestrates";
187
160
  governed_by: "governed_by";
188
161
  modifies: "modifies";
189
- triggered_by: "triggered_by";
190
- applies_to: "applies_to";
191
162
  produces: "produces";
192
- consumes: "consumes";
193
- transforms_into: "transforms_into";
194
- selects: "selects";
195
- requires: "requires";
196
- disables: "disables";
197
- influence: "influence";
198
- justifies: "justifies";
199
163
  }> & {
200
- 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";
164
+ 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";
201
165
  };
202
166
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
203
167
  is(value: unknown): value is string | string[];
@@ -216,7 +180,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
216
180
  [x: string]: unknown;
217
181
  from: string;
218
182
  to: string;
219
- 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";
183
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
220
184
  description?: string | string[] | undefined;
221
185
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
222
186
  strength?: number | undefined;
@@ -256,10 +220,10 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
256
220
  nodes: {
257
221
  [x: string]: unknown;
258
222
  id: string;
259
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
223
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
260
224
  name: string;
261
225
  description?: string | string[] | undefined;
262
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
226
+ status?: undefined;
263
227
  lifecycle?: Record<string, string | boolean> | undefined;
264
228
  context?: string | string[] | undefined;
265
229
  options?: {
@@ -283,8 +247,6 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
283
247
  }[] | undefined;
284
248
  propagation?: Record<string, boolean> | undefined;
285
249
  includes?: string[] | undefined;
286
- input?: string | undefined;
287
- output?: string | undefined;
288
250
  external_references?: {
289
251
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
290
252
  identifier: string;
@@ -307,7 +269,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
307
269
  [x: string]: unknown;
308
270
  from: string;
309
271
  to: string;
310
- 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";
272
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
311
273
  description?: string | string[] | undefined;
312
274
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
313
275
  strength?: number | undefined;
@@ -63,39 +63,18 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
63
63
  gate: "gate";
64
64
  mode: "mode";
65
65
  artefact: "artefact";
66
- artefact_flow: "artefact_flow";
67
66
  decision: "decision";
68
67
  change: "change";
69
68
  view: "view";
70
69
  milestone: "milestone";
71
- version: "version";
72
70
  }> & {
73
- 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";
71
+ is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
74
72
  };
75
73
  name: z.ZodString;
76
74
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
77
75
  is(value: unknown): value is string | string[];
78
76
  }>;
79
- status: z.ZodOptional<z.ZodEnum<{
80
- deprecated: "deprecated";
81
- proposed: "proposed";
82
- accepted: "accepted";
83
- active: "active";
84
- implemented: "implemented";
85
- adopted: "adopted";
86
- defined: "defined";
87
- introduced: "introduced";
88
- in_progress: "in_progress";
89
- complete: "complete";
90
- consolidated: "consolidated";
91
- experimental: "experimental";
92
- retired: "retired";
93
- superseded: "superseded";
94
- abandoned: "abandoned";
95
- deferred: "deferred";
96
- }> & {
97
- is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
98
- }>;
77
+ status: z.ZodOptional<z.ZodNever>;
99
78
  lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
100
79
  context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
101
80
  is(value: unknown): value is string | string[];
@@ -150,8 +129,6 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
150
129
  }>>;
151
130
  propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
152
131
  includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
153
- input: z.ZodOptional<z.ZodString>;
154
- output: z.ZodOptional<z.ZodString>;
155
132
  external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
156
133
  role: z.ZodEnum<{
157
134
  output: "output";
@@ -195,27 +172,14 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
195
172
  affects: "affects";
196
173
  supersedes: "supersedes";
197
174
  must_preserve: "must_preserve";
198
- performs: "performs";
199
175
  part_of: "part_of";
200
176
  precedes: "precedes";
201
177
  must_follow: "must_follow";
202
- blocks: "blocks";
203
- routes_to: "routes_to";
204
- orchestrates: "orchestrates";
205
178
  governed_by: "governed_by";
206
179
  modifies: "modifies";
207
- triggered_by: "triggered_by";
208
- applies_to: "applies_to";
209
180
  produces: "produces";
210
- consumes: "consumes";
211
- transforms_into: "transforms_into";
212
- selects: "selects";
213
- requires: "requires";
214
- disables: "disables";
215
- influence: "influence";
216
- justifies: "justifies";
217
181
  }> & {
218
- 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";
182
+ 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";
219
183
  };
220
184
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
221
185
  is(value: unknown): value is string | string[];
@@ -234,7 +198,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
234
198
  [x: string]: unknown;
235
199
  from: string;
236
200
  to: string;
237
- 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";
201
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
238
202
  description?: string | string[] | undefined;
239
203
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
240
204
  strength?: number | undefined;
@@ -274,10 +238,10 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
274
238
  nodes: {
275
239
  [x: string]: unknown;
276
240
  id: string;
277
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
241
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
278
242
  name: string;
279
243
  description?: string | string[] | undefined;
280
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
244
+ status?: undefined;
281
245
  lifecycle?: Record<string, string | boolean> | undefined;
282
246
  context?: string | string[] | undefined;
283
247
  options?: {
@@ -301,8 +265,6 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
301
265
  }[] | undefined;
302
266
  propagation?: Record<string, boolean> | undefined;
303
267
  includes?: string[] | undefined;
304
- input?: string | undefined;
305
- output?: string | undefined;
306
268
  external_references?: {
307
269
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
308
270
  identifier: string;
@@ -325,7 +287,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
325
287
  [x: string]: unknown;
326
288
  from: string;
327
289
  to: string;
328
- 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";
290
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
329
291
  description?: string | string[] | undefined;
330
292
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
331
293
  strength?: number | undefined;