sysprom 1.19.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 (75) hide show
  1. package/README.md +3 -0
  2. package/dist/schema.json +4 -43
  3. package/dist/src/cli/commands/add.js +6 -2
  4. package/dist/src/cli/commands/query.js +5 -3
  5. package/dist/src/cli/commands/speckit.js +2 -2
  6. package/dist/src/cli/commands/update.js +6 -4
  7. package/dist/src/endpoint-types.d.ts +4 -0
  8. package/dist/src/endpoint-types.js +22 -116
  9. package/dist/src/json-to-md.js +2 -16
  10. package/dist/src/lifecycle-state.d.ts +9 -0
  11. package/dist/src/lifecycle-state.js +22 -0
  12. package/dist/src/mcp/server.js +3 -6
  13. package/dist/src/md-to-json.js +1 -19
  14. package/dist/src/operations/add-node.d.ts +21 -132
  15. package/dist/src/operations/add-plan-task.d.ts +14 -88
  16. package/dist/src/operations/add-relationship.d.ts +16 -102
  17. package/dist/src/operations/check.d.ts +7 -44
  18. package/dist/src/operations/graph-decision.d.ts +7 -44
  19. package/dist/src/operations/graph-decision.js +0 -1
  20. package/dist/src/operations/graph-dependency.d.ts +7 -44
  21. package/dist/src/operations/graph-dependency.js +3 -23
  22. package/dist/src/operations/graph-refinement.d.ts +7 -44
  23. package/dist/src/operations/graph-shared.js +1 -3
  24. package/dist/src/operations/graph.d.ts +7 -44
  25. package/dist/src/operations/infer-completeness.d.ts +10 -53
  26. package/dist/src/operations/infer-derived.d.ts +7 -44
  27. package/dist/src/operations/infer-derived.js +28 -4
  28. package/dist/src/operations/infer-impact.d.ts +49 -308
  29. package/dist/src/operations/infer-impact.js +22 -3
  30. package/dist/src/operations/infer-lifecycle.d.ts +8 -105
  31. package/dist/src/operations/infer-lifecycle.js +4 -10
  32. package/dist/src/operations/init-document.d.ts +7 -44
  33. package/dist/src/operations/json-to-markdown.d.ts +7 -44
  34. package/dist/src/operations/mark-task-done.d.ts +14 -88
  35. package/dist/src/operations/mark-task-undone.d.ts +14 -88
  36. package/dist/src/operations/markdown-to-json.d.ts +7 -44
  37. package/dist/src/operations/next-id.d.ts +8 -47
  38. package/dist/src/operations/node-history.d.ts +7 -44
  39. package/dist/src/operations/plan-add-task.d.ts +14 -88
  40. package/dist/src/operations/plan-gate.d.ts +7 -44
  41. package/dist/src/operations/plan-init.d.ts +7 -44
  42. package/dist/src/operations/plan-progress.d.ts +7 -44
  43. package/dist/src/operations/plan-status.d.ts +7 -44
  44. package/dist/src/operations/query-node.d.ts +29 -188
  45. package/dist/src/operations/query-nodes.d.ts +15 -89
  46. package/dist/src/operations/query-nodes.js +6 -4
  47. package/dist/src/operations/query-relationships.d.ts +9 -58
  48. package/dist/src/operations/remove-node.d.ts +21 -132
  49. package/dist/src/operations/remove-node.js +11 -1
  50. package/dist/src/operations/remove-relationship.d.ts +15 -101
  51. package/dist/src/operations/rename.d.ts +14 -88
  52. package/dist/src/operations/search.d.ts +14 -88
  53. package/dist/src/operations/speckit-diff.d.ts +7 -44
  54. package/dist/src/operations/speckit-export.d.ts +7 -44
  55. package/dist/src/operations/speckit-import.d.ts +7 -44
  56. package/dist/src/operations/speckit-sync.d.ts +22 -133
  57. package/dist/src/operations/speckit-sync.js +3 -3
  58. package/dist/src/operations/state-at.d.ts +7 -44
  59. package/dist/src/operations/stats.d.ts +7 -44
  60. package/dist/src/operations/sync.d.ts +21 -132
  61. package/dist/src/operations/task-list.d.ts +7 -44
  62. package/dist/src/operations/timeline.d.ts +7 -44
  63. package/dist/src/operations/trace-from-node.d.ts +21 -132
  64. package/dist/src/operations/update-metadata.d.ts +14 -88
  65. package/dist/src/operations/update-node.d.ts +20 -152
  66. package/dist/src/operations/update-plan-task.d.ts +14 -88
  67. package/dist/src/operations/validate.d.ts +7 -44
  68. package/dist/src/operations/validate.js +8 -6
  69. package/dist/src/schema.d.ts +22 -159
  70. package/dist/src/schema.js +4 -26
  71. package/dist/src/speckit/generate.js +10 -7
  72. package/dist/src/speckit/parse.js +6 -3
  73. package/dist/src/speckit/plan.js +1 -1
  74. package/package.json +12 -1
  75. package/schema.json +4 -43
@@ -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,26 +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
188
  governed_by: "governed_by";
215
189
  modifies: "modifies";
216
- triggered_by: "triggered_by";
217
- applies_to: "applies_to";
218
190
  produces: "produces";
219
- consumes: "consumes";
220
- transforms_into: "transforms_into";
221
- selects: "selects";
222
- requires: "requires";
223
- disables: "disables";
224
- influence: "influence";
225
- justifies: "justifies";
226
191
  }> & {
227
- 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" | "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";
228
193
  };
229
194
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
230
195
  is(value: unknown): value is string | string[];
@@ -243,7 +208,7 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
243
208
  [x: string]: unknown;
244
209
  from: string;
245
210
  to: string;
246
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
247
212
  description?: string | string[] | undefined;
248
213
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
249
214
  strength?: number | undefined;
@@ -283,10 +248,10 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
283
248
  nodes: {
284
249
  [x: string]: unknown;
285
250
  id: string;
286
- 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";
287
252
  name: string;
288
253
  description?: string | string[] | undefined;
289
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
254
+ status?: undefined;
290
255
  lifecycle?: Record<string, string | boolean> | undefined;
291
256
  context?: string | string[] | undefined;
292
257
  options?: {
@@ -310,8 +275,6 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
310
275
  }[] | undefined;
311
276
  propagation?: Record<string, boolean> | undefined;
312
277
  includes?: string[] | undefined;
313
- input?: string | undefined;
314
- output?: string | undefined;
315
278
  external_references?: {
316
279
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
317
280
  identifier: string;
@@ -334,7 +297,7 @@ export declare const planGateOp: import("./define-operation.js").DefinedOperatio
334
297
  [x: string]: unknown;
335
298
  from: string;
336
299
  to: string;
337
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
338
301
  description?: string | string[] | undefined;
339
302
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
340
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,26 +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
153
  governed_by: "governed_by";
180
154
  modifies: "modifies";
181
- triggered_by: "triggered_by";
182
- applies_to: "applies_to";
183
155
  produces: "produces";
184
- consumes: "consumes";
185
- transforms_into: "transforms_into";
186
- selects: "selects";
187
- requires: "requires";
188
- disables: "disables";
189
- influence: "influence";
190
- justifies: "justifies";
191
156
  }> & {
192
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
193
158
  };
194
159
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
195
160
  is(value: unknown): value is string | string[];
@@ -208,7 +173,7 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
208
173
  [x: string]: unknown;
209
174
  from: string;
210
175
  to: string;
211
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
212
177
  description?: string | string[] | undefined;
213
178
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
214
179
  strength?: number | undefined;
@@ -248,10 +213,10 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
248
213
  nodes: {
249
214
  [x: string]: unknown;
250
215
  id: string;
251
- type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "artefact_flow" | "decision" | "change" | "view" | "milestone" | "version";
216
+ type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
252
217
  name: string;
253
218
  description?: string | string[] | undefined;
254
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
219
+ status?: undefined;
255
220
  lifecycle?: Record<string, string | boolean> | undefined;
256
221
  context?: string | string[] | undefined;
257
222
  options?: {
@@ -275,8 +240,6 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
275
240
  }[] | undefined;
276
241
  propagation?: Record<string, boolean> | undefined;
277
242
  includes?: string[] | undefined;
278
- input?: string | undefined;
279
- output?: string | undefined;
280
243
  external_references?: {
281
244
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
282
245
  identifier: string;
@@ -299,7 +262,7 @@ export declare const planInitOp: import("./define-operation.js").DefinedOperatio
299
262
  [x: string]: unknown;
300
263
  from: string;
301
264
  to: string;
302
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
303
266
  description?: string | string[] | undefined;
304
267
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
305
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,26 +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
160
  governed_by: "governed_by";
187
161
  modifies: "modifies";
188
- triggered_by: "triggered_by";
189
- applies_to: "applies_to";
190
162
  produces: "produces";
191
- consumes: "consumes";
192
- transforms_into: "transforms_into";
193
- selects: "selects";
194
- requires: "requires";
195
- disables: "disables";
196
- influence: "influence";
197
- justifies: "justifies";
198
163
  }> & {
199
- 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" | "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";
200
165
  };
201
166
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
202
167
  is(value: unknown): value is string | string[];
@@ -215,7 +180,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
215
180
  [x: string]: unknown;
216
181
  from: string;
217
182
  to: string;
218
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
219
184
  description?: string | string[] | undefined;
220
185
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
221
186
  strength?: number | undefined;
@@ -255,10 +220,10 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
255
220
  nodes: {
256
221
  [x: string]: unknown;
257
222
  id: string;
258
- 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";
259
224
  name: string;
260
225
  description?: string | string[] | undefined;
261
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
226
+ status?: undefined;
262
227
  lifecycle?: Record<string, string | boolean> | undefined;
263
228
  context?: string | string[] | undefined;
264
229
  options?: {
@@ -282,8 +247,6 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
282
247
  }[] | undefined;
283
248
  propagation?: Record<string, boolean> | undefined;
284
249
  includes?: string[] | undefined;
285
- input?: string | undefined;
286
- output?: string | undefined;
287
250
  external_references?: {
288
251
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
289
252
  identifier: string;
@@ -306,7 +269,7 @@ export declare const planProgressOp: import("./define-operation.js").DefinedOper
306
269
  [x: string]: unknown;
307
270
  from: string;
308
271
  to: string;
309
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
310
273
  description?: string | string[] | undefined;
311
274
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
312
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,26 +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
178
  governed_by: "governed_by";
205
179
  modifies: "modifies";
206
- triggered_by: "triggered_by";
207
- applies_to: "applies_to";
208
180
  produces: "produces";
209
- consumes: "consumes";
210
- transforms_into: "transforms_into";
211
- selects: "selects";
212
- requires: "requires";
213
- disables: "disables";
214
- influence: "influence";
215
- justifies: "justifies";
216
181
  }> & {
217
- 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" | "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";
218
183
  };
219
184
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
220
185
  is(value: unknown): value is string | string[];
@@ -233,7 +198,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
233
198
  [x: string]: unknown;
234
199
  from: string;
235
200
  to: string;
236
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
237
202
  description?: string | string[] | undefined;
238
203
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
239
204
  strength?: number | undefined;
@@ -273,10 +238,10 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
273
238
  nodes: {
274
239
  [x: string]: unknown;
275
240
  id: string;
276
- 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";
277
242
  name: string;
278
243
  description?: string | string[] | undefined;
279
- status?: "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred" | undefined;
244
+ status?: undefined;
280
245
  lifecycle?: Record<string, string | boolean> | undefined;
281
246
  context?: string | string[] | undefined;
282
247
  options?: {
@@ -300,8 +265,6 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
300
265
  }[] | undefined;
301
266
  propagation?: Record<string, boolean> | undefined;
302
267
  includes?: string[] | undefined;
303
- input?: string | undefined;
304
- output?: string | undefined;
305
268
  external_references?: {
306
269
  role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
307
270
  identifier: string;
@@ -324,7 +287,7 @@ export declare const planStatusOp: import("./define-operation.js").DefinedOperat
324
287
  [x: string]: unknown;
325
288
  from: string;
326
289
  to: string;
327
- type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "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";
328
291
  description?: string | string[] | undefined;
329
292
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
330
293
  strength?: number | undefined;