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.
- package/dist/schema.json +4 -44
- package/dist/src/cli/commands/add.js +6 -2
- package/dist/src/cli/commands/query.js +5 -3
- package/dist/src/cli/commands/speckit.js +2 -2
- package/dist/src/cli/commands/update.js +6 -4
- package/dist/src/endpoint-types.d.ts +4 -0
- package/dist/src/endpoint-types.js +22 -121
- package/dist/src/json-to-md.js +2 -16
- package/dist/src/lifecycle-state.d.ts +9 -0
- package/dist/src/lifecycle-state.js +22 -0
- package/dist/src/mcp/server.js +3 -6
- package/dist/src/md-to-json.js +1 -19
- package/dist/src/operations/add-node.d.ts +21 -135
- package/dist/src/operations/add-plan-task.d.ts +14 -90
- package/dist/src/operations/add-relationship.d.ts +16 -105
- package/dist/src/operations/check.d.ts +7 -45
- package/dist/src/operations/graph-decision.d.ts +7 -45
- package/dist/src/operations/graph-decision.js +0 -1
- package/dist/src/operations/graph-dependency.d.ts +7 -45
- package/dist/src/operations/graph-dependency.js +3 -23
- package/dist/src/operations/graph-refinement.d.ts +7 -45
- package/dist/src/operations/graph-shared.js +1 -3
- package/dist/src/operations/graph.d.ts +7 -45
- package/dist/src/operations/infer-completeness.d.ts +10 -54
- package/dist/src/operations/infer-derived.d.ts +7 -45
- package/dist/src/operations/infer-derived.js +28 -4
- package/dist/src/operations/infer-impact.d.ts +49 -315
- package/dist/src/operations/infer-impact.js +22 -3
- package/dist/src/operations/infer-lifecycle.d.ts +8 -106
- package/dist/src/operations/infer-lifecycle.js +4 -10
- package/dist/src/operations/init-document.d.ts +7 -45
- package/dist/src/operations/json-to-markdown.d.ts +7 -45
- package/dist/src/operations/mark-task-done.d.ts +14 -90
- package/dist/src/operations/mark-task-undone.d.ts +14 -90
- package/dist/src/operations/markdown-to-json.d.ts +7 -45
- package/dist/src/operations/next-id.d.ts +8 -48
- package/dist/src/operations/node-history.d.ts +7 -45
- package/dist/src/operations/plan-add-task.d.ts +14 -90
- package/dist/src/operations/plan-gate.d.ts +7 -45
- package/dist/src/operations/plan-init.d.ts +7 -45
- package/dist/src/operations/plan-progress.d.ts +7 -45
- package/dist/src/operations/plan-status.d.ts +7 -45
- package/dist/src/operations/query-node.d.ts +29 -195
- package/dist/src/operations/query-nodes.d.ts +15 -91
- package/dist/src/operations/query-nodes.js +6 -4
- package/dist/src/operations/query-relationships.d.ts +9 -60
- package/dist/src/operations/remove-node.d.ts +21 -135
- package/dist/src/operations/remove-node.js +11 -1
- package/dist/src/operations/remove-relationship.d.ts +15 -104
- package/dist/src/operations/rename.d.ts +14 -90
- package/dist/src/operations/search.d.ts +14 -90
- package/dist/src/operations/speckit-diff.d.ts +7 -45
- package/dist/src/operations/speckit-export.d.ts +7 -45
- package/dist/src/operations/speckit-import.d.ts +7 -45
- package/dist/src/operations/speckit-sync.d.ts +22 -136
- package/dist/src/operations/speckit-sync.js +3 -3
- package/dist/src/operations/state-at.d.ts +7 -45
- package/dist/src/operations/stats.d.ts +7 -45
- package/dist/src/operations/sync.d.ts +21 -135
- package/dist/src/operations/task-list.d.ts +7 -45
- package/dist/src/operations/timeline.d.ts +7 -45
- package/dist/src/operations/trace-from-node.d.ts +21 -135
- package/dist/src/operations/update-metadata.d.ts +14 -90
- package/dist/src/operations/update-node.d.ts +20 -155
- package/dist/src/operations/update-plan-task.d.ts +14 -90
- package/dist/src/operations/validate.d.ts +7 -45
- package/dist/src/operations/validate.js +8 -6
- package/dist/src/schema.d.ts +22 -164
- package/dist/src/schema.js +4 -27
- package/dist/src/speckit/generate.js +10 -7
- package/dist/src/speckit/parse.js +6 -3
- package/dist/src/speckit/plan.js +1 -1
- package/package.json +13 -2
- package/schema.json +4 -44
|
@@ -40,39 +40,18 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
40
40
|
gate: "gate";
|
|
41
41
|
mode: "mode";
|
|
42
42
|
artefact: "artefact";
|
|
43
|
-
artefact_flow: "artefact_flow";
|
|
44
43
|
decision: "decision";
|
|
45
44
|
change: "change";
|
|
46
45
|
view: "view";
|
|
47
46
|
milestone: "milestone";
|
|
48
|
-
version: "version";
|
|
49
47
|
}> & {
|
|
50
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
48
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
51
49
|
};
|
|
52
50
|
name: z.ZodString;
|
|
53
51
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
54
52
|
is(value: unknown): value is string | string[];
|
|
55
53
|
}>;
|
|
56
|
-
status: z.ZodOptional<z.
|
|
57
|
-
deprecated: "deprecated";
|
|
58
|
-
proposed: "proposed";
|
|
59
|
-
accepted: "accepted";
|
|
60
|
-
active: "active";
|
|
61
|
-
implemented: "implemented";
|
|
62
|
-
adopted: "adopted";
|
|
63
|
-
defined: "defined";
|
|
64
|
-
introduced: "introduced";
|
|
65
|
-
in_progress: "in_progress";
|
|
66
|
-
complete: "complete";
|
|
67
|
-
consolidated: "consolidated";
|
|
68
|
-
experimental: "experimental";
|
|
69
|
-
retired: "retired";
|
|
70
|
-
superseded: "superseded";
|
|
71
|
-
abandoned: "abandoned";
|
|
72
|
-
deferred: "deferred";
|
|
73
|
-
}> & {
|
|
74
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
75
|
-
}>;
|
|
54
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
76
55
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
77
56
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
78
57
|
is(value: unknown): value is string | string[];
|
|
@@ -127,8 +106,6 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
127
106
|
}>>;
|
|
128
107
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
129
108
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
130
|
-
input: z.ZodOptional<z.ZodString>;
|
|
131
|
-
output: z.ZodOptional<z.ZodString>;
|
|
132
109
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
133
110
|
role: z.ZodEnum<{
|
|
134
111
|
output: "output";
|
|
@@ -172,27 +149,14 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
172
149
|
affects: "affects";
|
|
173
150
|
supersedes: "supersedes";
|
|
174
151
|
must_preserve: "must_preserve";
|
|
175
|
-
performs: "performs";
|
|
176
152
|
part_of: "part_of";
|
|
177
153
|
precedes: "precedes";
|
|
178
154
|
must_follow: "must_follow";
|
|
179
|
-
blocks: "blocks";
|
|
180
|
-
routes_to: "routes_to";
|
|
181
|
-
orchestrates: "orchestrates";
|
|
182
155
|
governed_by: "governed_by";
|
|
183
156
|
modifies: "modifies";
|
|
184
|
-
triggered_by: "triggered_by";
|
|
185
|
-
applies_to: "applies_to";
|
|
186
157
|
produces: "produces";
|
|
187
|
-
consumes: "consumes";
|
|
188
|
-
transforms_into: "transforms_into";
|
|
189
|
-
selects: "selects";
|
|
190
|
-
requires: "requires";
|
|
191
|
-
disables: "disables";
|
|
192
|
-
influence: "influence";
|
|
193
|
-
justifies: "justifies";
|
|
194
158
|
}> & {
|
|
195
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
159
|
+
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
196
160
|
};
|
|
197
161
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
198
162
|
is(value: unknown): value is string | string[];
|
|
@@ -211,7 +175,7 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
211
175
|
[x: string]: unknown;
|
|
212
176
|
from: string;
|
|
213
177
|
to: string;
|
|
214
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
178
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
215
179
|
description?: string | string[] | undefined;
|
|
216
180
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
217
181
|
strength?: number | undefined;
|
|
@@ -251,10 +215,10 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
251
215
|
nodes: {
|
|
252
216
|
[x: string]: unknown;
|
|
253
217
|
id: string;
|
|
254
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
218
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
255
219
|
name: string;
|
|
256
220
|
description?: string | string[] | undefined;
|
|
257
|
-
status?:
|
|
221
|
+
status?: undefined;
|
|
258
222
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
259
223
|
context?: string | string[] | undefined;
|
|
260
224
|
options?: {
|
|
@@ -278,8 +242,6 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
278
242
|
}[] | undefined;
|
|
279
243
|
propagation?: Record<string, boolean> | undefined;
|
|
280
244
|
includes?: string[] | undefined;
|
|
281
|
-
input?: string | undefined;
|
|
282
|
-
output?: string | undefined;
|
|
283
245
|
external_references?: {
|
|
284
246
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
285
247
|
identifier: string;
|
|
@@ -302,7 +264,7 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
302
264
|
[x: string]: unknown;
|
|
303
265
|
from: string;
|
|
304
266
|
to: string;
|
|
305
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
267
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
306
268
|
description?: string | string[] | undefined;
|
|
307
269
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
308
270
|
strength?: number | undefined;
|
|
@@ -331,13 +293,11 @@ export declare const nextIdOp: import("./define-operation.js").DefinedOperation<
|
|
|
331
293
|
gate: "gate";
|
|
332
294
|
mode: "mode";
|
|
333
295
|
artefact: "artefact";
|
|
334
|
-
artefact_flow: "artefact_flow";
|
|
335
296
|
decision: "decision";
|
|
336
297
|
change: "change";
|
|
337
298
|
view: "view";
|
|
338
299
|
milestone: "milestone";
|
|
339
|
-
version: "version";
|
|
340
300
|
}> & {
|
|
341
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
301
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
342
302
|
};
|
|
343
303
|
}, z.core.$strip>, z.ZodString>;
|
|
@@ -46,39 +46,18 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
46
46
|
gate: "gate";
|
|
47
47
|
mode: "mode";
|
|
48
48
|
artefact: "artefact";
|
|
49
|
-
artefact_flow: "artefact_flow";
|
|
50
49
|
decision: "decision";
|
|
51
50
|
change: "change";
|
|
52
51
|
view: "view";
|
|
53
52
|
milestone: "milestone";
|
|
54
|
-
version: "version";
|
|
55
53
|
}> & {
|
|
56
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
54
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
57
55
|
};
|
|
58
56
|
name: z.ZodString;
|
|
59
57
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
60
58
|
is(value: unknown): value is string | string[];
|
|
61
59
|
}>;
|
|
62
|
-
status: z.ZodOptional<z.
|
|
63
|
-
deprecated: "deprecated";
|
|
64
|
-
proposed: "proposed";
|
|
65
|
-
accepted: "accepted";
|
|
66
|
-
active: "active";
|
|
67
|
-
implemented: "implemented";
|
|
68
|
-
adopted: "adopted";
|
|
69
|
-
defined: "defined";
|
|
70
|
-
introduced: "introduced";
|
|
71
|
-
in_progress: "in_progress";
|
|
72
|
-
complete: "complete";
|
|
73
|
-
consolidated: "consolidated";
|
|
74
|
-
experimental: "experimental";
|
|
75
|
-
retired: "retired";
|
|
76
|
-
superseded: "superseded";
|
|
77
|
-
abandoned: "abandoned";
|
|
78
|
-
deferred: "deferred";
|
|
79
|
-
}> & {
|
|
80
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
81
|
-
}>;
|
|
60
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
82
61
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
83
62
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
84
63
|
is(value: unknown): value is string | string[];
|
|
@@ -133,8 +112,6 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
133
112
|
}>>;
|
|
134
113
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
135
114
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
|
-
input: z.ZodOptional<z.ZodString>;
|
|
137
|
-
output: z.ZodOptional<z.ZodString>;
|
|
138
115
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
139
116
|
role: z.ZodEnum<{
|
|
140
117
|
output: "output";
|
|
@@ -178,27 +155,14 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
178
155
|
affects: "affects";
|
|
179
156
|
supersedes: "supersedes";
|
|
180
157
|
must_preserve: "must_preserve";
|
|
181
|
-
performs: "performs";
|
|
182
158
|
part_of: "part_of";
|
|
183
159
|
precedes: "precedes";
|
|
184
160
|
must_follow: "must_follow";
|
|
185
|
-
blocks: "blocks";
|
|
186
|
-
routes_to: "routes_to";
|
|
187
|
-
orchestrates: "orchestrates";
|
|
188
161
|
governed_by: "governed_by";
|
|
189
162
|
modifies: "modifies";
|
|
190
|
-
triggered_by: "triggered_by";
|
|
191
|
-
applies_to: "applies_to";
|
|
192
163
|
produces: "produces";
|
|
193
|
-
consumes: "consumes";
|
|
194
|
-
transforms_into: "transforms_into";
|
|
195
|
-
selects: "selects";
|
|
196
|
-
requires: "requires";
|
|
197
|
-
disables: "disables";
|
|
198
|
-
influence: "influence";
|
|
199
|
-
justifies: "justifies";
|
|
200
164
|
}> & {
|
|
201
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
165
|
+
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";
|
|
202
166
|
};
|
|
203
167
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
204
168
|
is(value: unknown): value is string | string[];
|
|
@@ -217,7 +181,7 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
217
181
|
[x: string]: unknown;
|
|
218
182
|
from: string;
|
|
219
183
|
to: string;
|
|
220
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
184
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
221
185
|
description?: string | string[] | undefined;
|
|
222
186
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
223
187
|
strength?: number | undefined;
|
|
@@ -257,10 +221,10 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
257
221
|
nodes: {
|
|
258
222
|
[x: string]: unknown;
|
|
259
223
|
id: string;
|
|
260
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
224
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
261
225
|
name: string;
|
|
262
226
|
description?: string | string[] | undefined;
|
|
263
|
-
status?:
|
|
227
|
+
status?: undefined;
|
|
264
228
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
265
229
|
context?: string | string[] | undefined;
|
|
266
230
|
options?: {
|
|
@@ -284,8 +248,6 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
284
248
|
}[] | undefined;
|
|
285
249
|
propagation?: Record<string, boolean> | undefined;
|
|
286
250
|
includes?: string[] | undefined;
|
|
287
|
-
input?: string | undefined;
|
|
288
|
-
output?: string | undefined;
|
|
289
251
|
external_references?: {
|
|
290
252
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
291
253
|
identifier: string;
|
|
@@ -308,7 +270,7 @@ export declare const nodeHistoryOp: import("./define-operation.js").DefinedOpera
|
|
|
308
270
|
[x: string]: unknown;
|
|
309
271
|
from: string;
|
|
310
272
|
to: string;
|
|
311
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
273
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
312
274
|
description?: string | string[] | undefined;
|
|
313
275
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
314
276
|
strength?: number | undefined;
|
|
@@ -36,39 +36,18 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
36
36
|
gate: "gate";
|
|
37
37
|
mode: "mode";
|
|
38
38
|
artefact: "artefact";
|
|
39
|
-
artefact_flow: "artefact_flow";
|
|
40
39
|
decision: "decision";
|
|
41
40
|
change: "change";
|
|
42
41
|
view: "view";
|
|
43
42
|
milestone: "milestone";
|
|
44
|
-
version: "version";
|
|
45
43
|
}> & {
|
|
46
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
44
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
47
45
|
};
|
|
48
46
|
name: z.ZodString;
|
|
49
47
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
50
48
|
is(value: unknown): value is string | string[];
|
|
51
49
|
}>;
|
|
52
|
-
status: z.ZodOptional<z.
|
|
53
|
-
deprecated: "deprecated";
|
|
54
|
-
proposed: "proposed";
|
|
55
|
-
accepted: "accepted";
|
|
56
|
-
active: "active";
|
|
57
|
-
implemented: "implemented";
|
|
58
|
-
adopted: "adopted";
|
|
59
|
-
defined: "defined";
|
|
60
|
-
introduced: "introduced";
|
|
61
|
-
in_progress: "in_progress";
|
|
62
|
-
complete: "complete";
|
|
63
|
-
consolidated: "consolidated";
|
|
64
|
-
experimental: "experimental";
|
|
65
|
-
retired: "retired";
|
|
66
|
-
superseded: "superseded";
|
|
67
|
-
abandoned: "abandoned";
|
|
68
|
-
deferred: "deferred";
|
|
69
|
-
}> & {
|
|
70
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
71
|
-
}>;
|
|
50
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
72
51
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
73
52
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
74
53
|
is(value: unknown): value is string | string[];
|
|
@@ -123,8 +102,6 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
123
102
|
}>>;
|
|
124
103
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
125
104
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
126
|
-
input: z.ZodOptional<z.ZodString>;
|
|
127
|
-
output: z.ZodOptional<z.ZodString>;
|
|
128
105
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
129
106
|
role: z.ZodEnum<{
|
|
130
107
|
output: "output";
|
|
@@ -168,27 +145,14 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
168
145
|
affects: "affects";
|
|
169
146
|
supersedes: "supersedes";
|
|
170
147
|
must_preserve: "must_preserve";
|
|
171
|
-
performs: "performs";
|
|
172
148
|
part_of: "part_of";
|
|
173
149
|
precedes: "precedes";
|
|
174
150
|
must_follow: "must_follow";
|
|
175
|
-
blocks: "blocks";
|
|
176
|
-
routes_to: "routes_to";
|
|
177
|
-
orchestrates: "orchestrates";
|
|
178
151
|
governed_by: "governed_by";
|
|
179
152
|
modifies: "modifies";
|
|
180
|
-
triggered_by: "triggered_by";
|
|
181
|
-
applies_to: "applies_to";
|
|
182
153
|
produces: "produces";
|
|
183
|
-
consumes: "consumes";
|
|
184
|
-
transforms_into: "transforms_into";
|
|
185
|
-
selects: "selects";
|
|
186
|
-
requires: "requires";
|
|
187
|
-
disables: "disables";
|
|
188
|
-
influence: "influence";
|
|
189
|
-
justifies: "justifies";
|
|
190
154
|
}> & {
|
|
191
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
155
|
+
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";
|
|
192
156
|
};
|
|
193
157
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
194
158
|
is(value: unknown): value is string | string[];
|
|
@@ -207,7 +171,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
207
171
|
[x: string]: unknown;
|
|
208
172
|
from: string;
|
|
209
173
|
to: string;
|
|
210
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
174
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
211
175
|
description?: string | string[] | undefined;
|
|
212
176
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
213
177
|
strength?: number | undefined;
|
|
@@ -247,10 +211,10 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
247
211
|
nodes: {
|
|
248
212
|
[x: string]: unknown;
|
|
249
213
|
id: string;
|
|
250
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
214
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
251
215
|
name: string;
|
|
252
216
|
description?: string | string[] | undefined;
|
|
253
|
-
status?:
|
|
217
|
+
status?: undefined;
|
|
254
218
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
255
219
|
context?: string | string[] | undefined;
|
|
256
220
|
options?: {
|
|
@@ -274,8 +238,6 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
274
238
|
}[] | undefined;
|
|
275
239
|
propagation?: Record<string, boolean> | undefined;
|
|
276
240
|
includes?: string[] | undefined;
|
|
277
|
-
input?: string | undefined;
|
|
278
|
-
output?: string | undefined;
|
|
279
241
|
external_references?: {
|
|
280
242
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
281
243
|
identifier: string;
|
|
@@ -298,7 +260,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
298
260
|
[x: string]: unknown;
|
|
299
261
|
from: string;
|
|
300
262
|
to: string;
|
|
301
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
263
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
302
264
|
description?: string | string[] | undefined;
|
|
303
265
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
304
266
|
strength?: number | undefined;
|
|
@@ -350,39 +312,18 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
350
312
|
gate: "gate";
|
|
351
313
|
mode: "mode";
|
|
352
314
|
artefact: "artefact";
|
|
353
|
-
artefact_flow: "artefact_flow";
|
|
354
315
|
decision: "decision";
|
|
355
316
|
change: "change";
|
|
356
317
|
view: "view";
|
|
357
318
|
milestone: "milestone";
|
|
358
|
-
version: "version";
|
|
359
319
|
}> & {
|
|
360
|
-
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
320
|
+
is(value: unknown): value is "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
361
321
|
};
|
|
362
322
|
name: z.ZodString;
|
|
363
323
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
364
324
|
is(value: unknown): value is string | string[];
|
|
365
325
|
}>;
|
|
366
|
-
status: z.ZodOptional<z.
|
|
367
|
-
deprecated: "deprecated";
|
|
368
|
-
proposed: "proposed";
|
|
369
|
-
accepted: "accepted";
|
|
370
|
-
active: "active";
|
|
371
|
-
implemented: "implemented";
|
|
372
|
-
adopted: "adopted";
|
|
373
|
-
defined: "defined";
|
|
374
|
-
introduced: "introduced";
|
|
375
|
-
in_progress: "in_progress";
|
|
376
|
-
complete: "complete";
|
|
377
|
-
consolidated: "consolidated";
|
|
378
|
-
experimental: "experimental";
|
|
379
|
-
retired: "retired";
|
|
380
|
-
superseded: "superseded";
|
|
381
|
-
abandoned: "abandoned";
|
|
382
|
-
deferred: "deferred";
|
|
383
|
-
}> & {
|
|
384
|
-
is(value: unknown): value is "deprecated" | "proposed" | "accepted" | "active" | "implemented" | "adopted" | "defined" | "introduced" | "in_progress" | "complete" | "consolidated" | "experimental" | "retired" | "superseded" | "abandoned" | "deferred";
|
|
385
|
-
}>;
|
|
326
|
+
status: z.ZodOptional<z.ZodNever>;
|
|
386
327
|
lifecycle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodBoolean, z.ZodString]>>>;
|
|
387
328
|
context: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
388
329
|
is(value: unknown): value is string | string[];
|
|
@@ -437,8 +378,6 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
437
378
|
}>>;
|
|
438
379
|
propagation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
439
380
|
includes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
440
|
-
input: z.ZodOptional<z.ZodString>;
|
|
441
|
-
output: z.ZodOptional<z.ZodString>;
|
|
442
381
|
external_references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
443
382
|
role: z.ZodEnum<{
|
|
444
383
|
output: "output";
|
|
@@ -482,27 +421,14 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
482
421
|
affects: "affects";
|
|
483
422
|
supersedes: "supersedes";
|
|
484
423
|
must_preserve: "must_preserve";
|
|
485
|
-
performs: "performs";
|
|
486
424
|
part_of: "part_of";
|
|
487
425
|
precedes: "precedes";
|
|
488
426
|
must_follow: "must_follow";
|
|
489
|
-
blocks: "blocks";
|
|
490
|
-
routes_to: "routes_to";
|
|
491
|
-
orchestrates: "orchestrates";
|
|
492
427
|
governed_by: "governed_by";
|
|
493
428
|
modifies: "modifies";
|
|
494
|
-
triggered_by: "triggered_by";
|
|
495
|
-
applies_to: "applies_to";
|
|
496
429
|
produces: "produces";
|
|
497
|
-
consumes: "consumes";
|
|
498
|
-
transforms_into: "transforms_into";
|
|
499
|
-
selects: "selects";
|
|
500
|
-
requires: "requires";
|
|
501
|
-
disables: "disables";
|
|
502
|
-
influence: "influence";
|
|
503
|
-
justifies: "justifies";
|
|
504
430
|
}> & {
|
|
505
|
-
is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
431
|
+
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";
|
|
506
432
|
};
|
|
507
433
|
description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
|
|
508
434
|
is(value: unknown): value is string | string[];
|
|
@@ -521,7 +447,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
521
447
|
[x: string]: unknown;
|
|
522
448
|
from: string;
|
|
523
449
|
to: string;
|
|
524
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
450
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
525
451
|
description?: string | string[] | undefined;
|
|
526
452
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
527
453
|
strength?: number | undefined;
|
|
@@ -561,10 +487,10 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
561
487
|
nodes: {
|
|
562
488
|
[x: string]: unknown;
|
|
563
489
|
id: string;
|
|
564
|
-
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "
|
|
490
|
+
type: "intent" | "concept" | "capability" | "element" | "realisation" | "invariant" | "principle" | "policy" | "protocol" | "stage" | "role" | "gate" | "mode" | "artefact" | "decision" | "change" | "view" | "milestone";
|
|
565
491
|
name: string;
|
|
566
492
|
description?: string | string[] | undefined;
|
|
567
|
-
status?:
|
|
493
|
+
status?: undefined;
|
|
568
494
|
lifecycle?: Record<string, string | boolean> | undefined;
|
|
569
495
|
context?: string | string[] | undefined;
|
|
570
496
|
options?: {
|
|
@@ -588,8 +514,6 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
588
514
|
}[] | undefined;
|
|
589
515
|
propagation?: Record<string, boolean> | undefined;
|
|
590
516
|
includes?: string[] | undefined;
|
|
591
|
-
input?: string | undefined;
|
|
592
|
-
output?: string | undefined;
|
|
593
517
|
external_references?: {
|
|
594
518
|
role: "output" | "input" | "context" | "evidence" | "source" | "standard" | "prior_art";
|
|
595
519
|
identifier: string;
|
|
@@ -612,7 +536,7 @@ export declare const planAddTaskOp: import("./define-operation.js").DefinedOpera
|
|
|
612
536
|
[x: string]: unknown;
|
|
613
537
|
from: string;
|
|
614
538
|
to: string;
|
|
615
|
-
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "
|
|
539
|
+
type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "part_of" | "precedes" | "must_follow" | "governed_by" | "modifies" | "produces";
|
|
616
540
|
description?: string | string[] | undefined;
|
|
617
541
|
polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
|
|
618
542
|
strength?: number | undefined;
|