sysprom 1.18.0 → 1.20.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 (52) hide show
  1. package/README.md +56 -12
  2. package/dist/schema.json +1 -0
  3. package/dist/src/endpoint-types.js +16 -3
  4. package/dist/src/operations/add-node.d.ts +12 -9
  5. package/dist/src/operations/add-plan-task.d.ts +8 -6
  6. package/dist/src/operations/add-relationship.d.ts +11 -8
  7. package/dist/src/operations/check.d.ts +4 -3
  8. package/dist/src/operations/graph-decision.d.ts +4 -3
  9. package/dist/src/operations/graph-dependency.d.ts +4 -3
  10. package/dist/src/operations/graph-refinement.d.ts +4 -3
  11. package/dist/src/operations/graph.d.ts +4 -3
  12. package/dist/src/operations/infer-completeness.d.ts +4 -3
  13. package/dist/src/operations/infer-derived.d.ts +4 -3
  14. package/dist/src/operations/infer-impact.d.ts +28 -21
  15. package/dist/src/operations/infer-lifecycle.d.ts +4 -3
  16. package/dist/src/operations/init-document.d.ts +4 -3
  17. package/dist/src/operations/json-to-markdown.d.ts +4 -3
  18. package/dist/src/operations/mark-task-done.d.ts +8 -6
  19. package/dist/src/operations/mark-task-undone.d.ts +8 -6
  20. package/dist/src/operations/markdown-to-json.d.ts +4 -3
  21. package/dist/src/operations/next-id.d.ts +4 -3
  22. package/dist/src/operations/node-history.d.ts +4 -3
  23. package/dist/src/operations/plan-add-task.d.ts +8 -6
  24. package/dist/src/operations/plan-gate.d.ts +4 -3
  25. package/dist/src/operations/plan-init.d.ts +4 -3
  26. package/dist/src/operations/plan-progress.d.ts +4 -3
  27. package/dist/src/operations/plan-status.d.ts +4 -3
  28. package/dist/src/operations/query-node.d.ts +24 -17
  29. package/dist/src/operations/query-nodes.d.ts +8 -6
  30. package/dist/src/operations/query-relationships.d.ts +7 -5
  31. package/dist/src/operations/remove-node.d.ts +12 -9
  32. package/dist/src/operations/remove-relationship.d.ts +10 -7
  33. package/dist/src/operations/rename.d.ts +8 -6
  34. package/dist/src/operations/search.d.ts +8 -6
  35. package/dist/src/operations/speckit-diff.d.ts +4 -3
  36. package/dist/src/operations/speckit-export.d.ts +4 -3
  37. package/dist/src/operations/speckit-import.d.ts +4 -3
  38. package/dist/src/operations/speckit-sync.d.ts +12 -9
  39. package/dist/src/operations/state-at.d.ts +4 -3
  40. package/dist/src/operations/stats.d.ts +4 -3
  41. package/dist/src/operations/sync.d.ts +12 -9
  42. package/dist/src/operations/task-list.d.ts +4 -3
  43. package/dist/src/operations/timeline.d.ts +4 -3
  44. package/dist/src/operations/trace-from-node.d.ts +12 -9
  45. package/dist/src/operations/update-metadata.d.ts +8 -6
  46. package/dist/src/operations/update-node.d.ts +11 -8
  47. package/dist/src/operations/update-plan-task.d.ts +8 -6
  48. package/dist/src/operations/validate.d.ts +4 -3
  49. package/dist/src/schema.d.ts +15 -10
  50. package/dist/src/schema.js +1 -0
  51. package/package.json +1 -1
  52. package/schema.json +1 -0
package/README.md CHANGED
@@ -82,7 +82,7 @@ sysprom query node D1
82
82
  sysprom query rels --from D1
83
83
  sysprom query trace I1
84
84
  sysprom query timeline
85
- sysprom query state-at 2026-03-22
85
+ sysprom query state-at <ISO-timestamp>
86
86
 
87
87
  # Add nodes (ID auto-generated from type prefix if --id omitted)
88
88
 
@@ -116,7 +116,7 @@ All commands auto-detect the document — they search the current directory for
116
116
 
117
117
  ## MCP Server
118
118
 
119
- SysProM includes an MCP (Model Context Protocol) server exposing 15 tools over stdio transport. Any MCP-compatible agent — Cursor, Windsurf, VS Code Copilot, Cline, or custom clients — can use it.
119
+ SysProM includes an MCP (Model Context Protocol) server exposing tools over stdio transport. Any MCP-compatible agent — Cursor, Windsurf, VS Code Copilot, Cline, or custom clients — can use it.
120
120
 
121
121
  ### Configuration
122
122
 
@@ -245,6 +245,50 @@ if (node.is(thing)) {
245
245
 
246
246
  SysProM models systems as directed graphs across abstraction layers — intent, concept, capability, structure, and realisation — with explicit decisions, changes, and invariants. It is domain-agnostic, format-agnostic, and recursively composable.
247
247
 
248
+ ## System Provenance Profile
249
+
250
+ For product repositories, use SysProM to model the specification, design, and implementation of the system being built.
251
+
252
+ Recommended node usage:
253
+
254
+ - `intent`: user outcomes, business goals, and product promises
255
+ - `concept`: domain concepts, behavioural boundaries, and system rules
256
+ - `capability`: user-visible or externally meaningful system behaviours
257
+ - `element`: architectural components, services, stores, queues, and UI surfaces
258
+ - `realisation`: implementation units such as packages, modules, handlers, schemas, and jobs
259
+ - `protocol`: workflows and lifecycle paths such as review, publish, sync, or ingestion flows
260
+ - `artefact`: API contracts, documents, prompts, tests, migrations, and generated outputs
261
+ - `decision`: selected trade-offs and architectural choices
262
+ - `change`: implementation slices or delivery units
263
+ - `role`: human or system actors
264
+ - `view`: curated slices such as specification, architecture, implementation, and operations
265
+
266
+ Recommended trace chain:
267
+
268
+ ```text
269
+ intent -> concept -> capability -> element -> realisation -> artefact
270
+ ```
271
+
272
+ Recommended relationship usage:
273
+
274
+ - `refines`: tighten intent into concepts and concepts into capabilities
275
+ - `part_of`: decompose concepts, protocols, capabilities, and architecture structures
276
+ - `orchestrates`: connect abstract workflow machines to executable milestones, stages, gates, or artefact flows
277
+ - `precedes`: order milestones, stages, and gates within an executable flow
278
+ - `routes_to`: model artefact or data movement between artefact flows, stages, and artefacts
279
+ - `realises`: connect design structures to implementation structures
280
+ - `produces`: connect capabilities or stages to the artefacts they generate
281
+ - `performs`: connect roles to capabilities, stages, protocols, and operational concepts
282
+ - `governed_by` / `constrained_by`: express rules, policies, and invariants on design and implementation
283
+ - `implements` / `modifies`: connect delivery changes to the nodes they implement or alter
284
+ - `affects` + `must_preserve`: connect decisions to impacted areas and their protected invariants
285
+
286
+ Recommended implementation provenance:
287
+
288
+ - use `external_references` on `realisation` nodes to point to code paths, packages, handlers, or schemas
289
+ - use `external_references` on `artefact` nodes to point to API definitions, test files, migrations, docs, PRs, and generated outputs
290
+ - use `status`, `scope`, and decision/change links so the graph can answer both “what is the design?” and “what has actually been built?”
291
+
248
292
  ## How SysProM Compares
249
293
 
250
294
  <table>
@@ -363,7 +407,7 @@ sysprom md2json --input ./.SysProM --output .SysProM.json
363
407
 
364
408
  ## Claude Code Plugin
365
409
 
366
- SysProM is available as a Claude Code plugin with 28 skills for managing provenance documents. The plugin is defined in `.claude-plugin/marketplace.json` with skills in `.claude/skills/`.
410
+ SysProM is available as a Claude Code plugin with skills for managing provenance documents. The plugin is defined in `.claude-plugin/marketplace.json` with skills in `.claude/skills/`.
367
411
 
368
412
  ### Install from Marketplace
369
413
 
@@ -383,25 +427,25 @@ When working on the SysProM repo itself, skills in `.claude/skills/` are auto-di
383
427
 
384
428
  ### Skills by Category
385
429
 
386
- **Node Creation (4 skills)**
430
+ **Node Creation**
387
431
 
388
432
  - `add-decision` — Create decision nodes with context, options, rationale, and invariant links
389
433
  - `add-change` — Create change nodes with scope, operations, and task tracking
390
434
  - `add-invariant` — Create invariant nodes representing system rules and constraints
391
435
  - `add-node` — Generic node creation for any SysProM type
392
436
 
393
- **Node Modification (3 skills)**
437
+ **Node Modification**
394
438
 
395
439
  - `update-node` — Modify node fields, status, lifecycle, context, or rationale
396
440
  - `remove-node` — Delete nodes with safety flags (hard delete, recursive, repair)
397
441
  - `rename-node` — Rename node IDs across all references
398
442
 
399
- **Relationships (2 skills)**
443
+ **Relationships**
400
444
 
401
445
  - `add-relationship` — Create relationships between nodes with specific types
402
446
  - `remove-relationship` — Delete relationships
403
447
 
404
- **Query & Analysis (5 skills)**
448
+ **Query & Analysis**
405
449
 
406
450
  - `query-nodes` — Search nodes by type, status, text, or ID
407
451
  - `query-relationships` — Query relationships by source, target, or type
@@ -409,31 +453,31 @@ When working on the SysProM repo itself, skills in `.claude/skills/` are auto-di
409
453
  - `check-document` — Validate document structure and report issues
410
454
  - `stats` — Show document statistics and composition metrics
411
455
 
412
- **Visualisation (1 skill)**
456
+ **Visualisation**
413
457
 
414
458
  - `graph` — Generate Mermaid or DOT graphs with filtering
415
459
 
416
- **Format Conversion (4 skills)**
460
+ **Format Conversion**
417
461
 
418
462
  - `init-document` — Create new SysProM documents with metadata
419
463
  - `json-to-markdown` — Convert JSON to Markdown format
420
464
  - `markdown-to-json` — Convert Markdown to JSON format
421
465
  - `sync-formats` — Bidirectional sync between JSON and Markdown
422
466
 
423
- **Spec-Kit Integration (4 skills)**
467
+ **Spec-Kit Integration**
424
468
 
425
469
  - `speckit-import` — Import Spec-Kit features as SysProM nodes
426
470
  - `speckit-export` — Export SysProM nodes to Spec-Kit format
427
471
  - `speckit-sync` — Bidirectional sync with Spec-Kit specifications
428
472
  - `speckit-diff` — Show differences between SysProM and Spec-Kit
429
473
 
430
- **Task Management (3 skills)**
474
+ **Task Management**
431
475
 
432
476
  - `task-list` — List tasks in a change node with progress
433
477
  - `task-add` — Add tasks to a change
434
478
  - `task-mark-done` — Mark tasks as complete
435
479
 
436
- **Plan Management (2 skills)**
480
+ **Plan Management**
437
481
 
438
482
  - `plan-init` — Initialise plans with phases and gates
439
483
  - `plan-status` — Show plan progress and phase gates
package/dist/schema.json CHANGED
@@ -494,6 +494,7 @@
494
494
  "must_follow",
495
495
  "blocks",
496
496
  "routes_to",
497
+ "orchestrates",
497
498
  "governed_by",
498
499
  "modifies",
499
500
  "triggered_by",
@@ -161,7 +161,14 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
161
161
  // Performs — process enactment
162
162
  performs: {
163
163
  from: ["stage", "role"],
164
- to: ["capability", "artefact", "artefact_flow", "stage"],
164
+ to: [
165
+ "capability",
166
+ "artefact",
167
+ "artefact_flow",
168
+ "stage",
169
+ "concept",
170
+ "protocol",
171
+ ],
165
172
  },
166
173
  // Precedes — temporal ordering
167
174
  precedes: {
@@ -185,6 +192,7 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
185
192
  "stage",
186
193
  "policy",
187
194
  "principle",
195
+ "protocol",
188
196
  "role",
189
197
  "gate",
190
198
  "mode",
@@ -215,6 +223,11 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
215
223
  from: ["artefact_flow"],
216
224
  to: ["artefact_flow", "stage", "artefact"],
217
225
  },
226
+ // Orchestrates — abstract workflow nodes direct executable flow nodes
227
+ orchestrates: {
228
+ from: ["concept", "protocol", "capability"],
229
+ to: ["milestone", "stage", "gate", "artefact_flow"],
230
+ },
218
231
  // Governed by — governance relationships
219
232
  governed_by: {
220
233
  from: [
@@ -260,7 +273,7 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
260
273
  },
261
274
  // Applies to — applicability and scope
262
275
  applies_to: {
263
- from: ["policy", "principle", "mode", "protocol"],
276
+ from: ["policy", "principle", "mode", "protocol", "invariant"],
264
277
  to: [
265
278
  "intent",
266
279
  "concept",
@@ -275,7 +288,7 @@ export const RELATIONSHIP_ENDPOINT_TYPES = {
275
288
  },
276
289
  // Produces — generation
277
290
  produces: {
278
- from: ["stage", "artefact_flow", "realisation", "concept"],
291
+ from: ["stage", "artefact_flow", "realisation", "concept", "capability"],
279
292
  to: ["artefact", "concept"],
280
293
  },
281
294
  // Consumes — usage
@@ -183,6 +183,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
183
183
  must_follow: "must_follow";
184
184
  blocks: "blocks";
185
185
  routes_to: "routes_to";
186
+ orchestrates: "orchestrates";
186
187
  governed_by: "governed_by";
187
188
  modifies: "modifies";
188
189
  triggered_by: "triggered_by";
@@ -196,7 +197,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
196
197
  influence: "influence";
197
198
  justifies: "justifies";
198
199
  }> & {
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";
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";
200
201
  };
201
202
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
202
203
  is(value: unknown): value is string | string[];
@@ -215,7 +216,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
215
216
  [x: string]: unknown;
216
217
  from: string;
217
218
  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";
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";
219
220
  description?: string | string[] | undefined;
220
221
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
221
222
  strength?: number | undefined;
@@ -306,7 +307,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
306
307
  [x: string]: unknown;
307
308
  from: string;
308
309
  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";
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";
310
311
  description?: string | string[] | undefined;
311
312
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
312
313
  strength?: number | undefined;
@@ -492,6 +493,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
492
493
  must_follow: "must_follow";
493
494
  blocks: "blocks";
494
495
  routes_to: "routes_to";
496
+ orchestrates: "orchestrates";
495
497
  governed_by: "governed_by";
496
498
  modifies: "modifies";
497
499
  triggered_by: "triggered_by";
@@ -505,7 +507,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
505
507
  influence: "influence";
506
508
  justifies: "justifies";
507
509
  }> & {
508
- 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";
510
+ 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";
509
511
  };
510
512
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
511
513
  is(value: unknown): value is string | string[];
@@ -524,7 +526,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
524
526
  [x: string]: unknown;
525
527
  from: string;
526
528
  to: string;
527
- 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";
529
+ 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";
528
530
  description?: string | string[] | undefined;
529
531
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
530
532
  strength?: number | undefined;
@@ -615,7 +617,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
615
617
  [x: string]: unknown;
616
618
  from: string;
617
619
  to: string;
618
- 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";
620
+ 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";
619
621
  description?: string | string[] | undefined;
620
622
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
621
623
  strength?: number | undefined;
@@ -806,6 +808,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
806
808
  must_follow: "must_follow";
807
809
  blocks: "blocks";
808
810
  routes_to: "routes_to";
811
+ orchestrates: "orchestrates";
809
812
  governed_by: "governed_by";
810
813
  modifies: "modifies";
811
814
  triggered_by: "triggered_by";
@@ -819,7 +822,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
819
822
  influence: "influence";
820
823
  justifies: "justifies";
821
824
  }> & {
822
- 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";
825
+ 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";
823
826
  };
824
827
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
825
828
  is(value: unknown): value is string | string[];
@@ -838,7 +841,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
838
841
  [x: string]: unknown;
839
842
  from: string;
840
843
  to: string;
841
- 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";
844
+ 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";
842
845
  description?: string | string[] | undefined;
843
846
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
844
847
  strength?: number | undefined;
@@ -929,7 +932,7 @@ export declare const addNodeOp: import("./define-operation.js").DefinedOperation
929
932
  [x: string]: unknown;
930
933
  from: string;
931
934
  to: string;
932
- 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";
935
+ 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";
933
936
  description?: string | string[] | undefined;
934
937
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
935
938
  strength?: number | undefined;
@@ -177,6 +177,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
177
177
  must_follow: "must_follow";
178
178
  blocks: "blocks";
179
179
  routes_to: "routes_to";
180
+ orchestrates: "orchestrates";
180
181
  governed_by: "governed_by";
181
182
  modifies: "modifies";
182
183
  triggered_by: "triggered_by";
@@ -190,7 +191,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
190
191
  influence: "influence";
191
192
  justifies: "justifies";
192
193
  }> & {
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" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
194
+ 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";
194
195
  };
195
196
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
196
197
  is(value: unknown): value is string | string[];
@@ -209,7 +210,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
209
210
  [x: string]: unknown;
210
211
  from: string;
211
212
  to: string;
212
- 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";
213
+ 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";
213
214
  description?: string | string[] | undefined;
214
215
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
215
216
  strength?: number | undefined;
@@ -300,7 +301,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
300
301
  [x: string]: unknown;
301
302
  from: string;
302
303
  to: string;
303
- 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";
304
+ 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";
304
305
  description?: string | string[] | undefined;
305
306
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
306
307
  strength?: number | undefined;
@@ -489,6 +490,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
489
490
  must_follow: "must_follow";
490
491
  blocks: "blocks";
491
492
  routes_to: "routes_to";
493
+ orchestrates: "orchestrates";
492
494
  governed_by: "governed_by";
493
495
  modifies: "modifies";
494
496
  triggered_by: "triggered_by";
@@ -502,7 +504,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
502
504
  influence: "influence";
503
505
  justifies: "justifies";
504
506
  }> & {
505
- 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";
507
+ 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";
506
508
  };
507
509
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
508
510
  is(value: unknown): value is string | string[];
@@ -521,7 +523,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
521
523
  [x: string]: unknown;
522
524
  from: string;
523
525
  to: string;
524
- 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";
526
+ 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";
525
527
  description?: string | string[] | undefined;
526
528
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
527
529
  strength?: number | undefined;
@@ -612,7 +614,7 @@ export declare const addPlanTaskOp: import("./define-operation.js").DefinedOpera
612
614
  [x: string]: unknown;
613
615
  from: string;
614
616
  to: string;
615
- 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";
617
+ 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";
616
618
  description?: string | string[] | undefined;
617
619
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
618
620
  strength?: number | undefined;
@@ -177,6 +177,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
177
177
  must_follow: "must_follow";
178
178
  blocks: "blocks";
179
179
  routes_to: "routes_to";
180
+ orchestrates: "orchestrates";
180
181
  governed_by: "governed_by";
181
182
  modifies: "modifies";
182
183
  triggered_by: "triggered_by";
@@ -190,7 +191,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
190
191
  influence: "influence";
191
192
  justifies: "justifies";
192
193
  }> & {
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" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
194
+ 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";
194
195
  };
195
196
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
196
197
  is(value: unknown): value is string | string[];
@@ -209,7 +210,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
209
210
  [x: string]: unknown;
210
211
  from: string;
211
212
  to: string;
212
- 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";
213
+ 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";
213
214
  description?: string | string[] | undefined;
214
215
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
215
216
  strength?: number | undefined;
@@ -300,7 +301,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
300
301
  [x: string]: unknown;
301
302
  from: string;
302
303
  to: string;
303
- 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";
304
+ 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";
304
305
  description?: string | string[] | undefined;
305
306
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
306
307
  strength?: number | undefined;
@@ -332,6 +333,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
332
333
  must_follow: "must_follow";
333
334
  blocks: "blocks";
334
335
  routes_to: "routes_to";
336
+ orchestrates: "orchestrates";
335
337
  governed_by: "governed_by";
336
338
  modifies: "modifies";
337
339
  triggered_by: "triggered_by";
@@ -345,7 +347,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
345
347
  influence: "influence";
346
348
  justifies: "justifies";
347
349
  }> & {
348
- 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";
350
+ 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";
349
351
  };
350
352
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
351
353
  is(value: unknown): value is string | string[];
@@ -364,7 +366,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
364
366
  [x: string]: unknown;
365
367
  from: string;
366
368
  to: string;
367
- 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";
369
+ 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";
368
370
  description?: string | string[] | undefined;
369
371
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
370
372
  strength?: number | undefined;
@@ -543,6 +545,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
543
545
  must_follow: "must_follow";
544
546
  blocks: "blocks";
545
547
  routes_to: "routes_to";
548
+ orchestrates: "orchestrates";
546
549
  governed_by: "governed_by";
547
550
  modifies: "modifies";
548
551
  triggered_by: "triggered_by";
@@ -556,7 +559,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
556
559
  influence: "influence";
557
560
  justifies: "justifies";
558
561
  }> & {
559
- 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";
562
+ 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";
560
563
  };
561
564
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
562
565
  is(value: unknown): value is string | string[];
@@ -575,7 +578,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
575
578
  [x: string]: unknown;
576
579
  from: string;
577
580
  to: string;
578
- 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";
581
+ 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";
579
582
  description?: string | string[] | undefined;
580
583
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
581
584
  strength?: number | undefined;
@@ -666,7 +669,7 @@ export declare const addRelationshipOp: import("./define-operation.js").DefinedO
666
669
  [x: string]: unknown;
667
670
  from: string;
668
671
  to: string;
669
- 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";
672
+ 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";
670
673
  description?: string | string[] | undefined;
671
674
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
672
675
  strength?: number | undefined;
@@ -178,6 +178,7 @@ export declare const checkOp: import("./define-operation.js").DefinedOperation<z
178
178
  must_follow: "must_follow";
179
179
  blocks: "blocks";
180
180
  routes_to: "routes_to";
181
+ orchestrates: "orchestrates";
181
182
  governed_by: "governed_by";
182
183
  modifies: "modifies";
183
184
  triggered_by: "triggered_by";
@@ -191,7 +192,7 @@ export declare const checkOp: import("./define-operation.js").DefinedOperation<z
191
192
  influence: "influence";
192
193
  justifies: "justifies";
193
194
  }> & {
194
- 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";
195
+ is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
195
196
  };
196
197
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
197
198
  is(value: unknown): value is string | string[];
@@ -210,7 +211,7 @@ export declare const checkOp: import("./define-operation.js").DefinedOperation<z
210
211
  [x: string]: unknown;
211
212
  from: string;
212
213
  to: string;
213
- 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";
214
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
214
215
  description?: string | string[] | undefined;
215
216
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
216
217
  strength?: number | undefined;
@@ -301,7 +302,7 @@ export declare const checkOp: import("./define-operation.js").DefinedOperation<z
301
302
  [x: string]: unknown;
302
303
  from: string;
303
304
  to: string;
304
- 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";
305
+ type: "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "orchestrates" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
305
306
  description?: string | string[] | undefined;
306
307
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
307
308
  strength?: number | undefined;
@@ -174,6 +174,7 @@ export declare const graphDecisionOp: import("./define-operation.js").DefinedOpe
174
174
  must_follow: "must_follow";
175
175
  blocks: "blocks";
176
176
  routes_to: "routes_to";
177
+ orchestrates: "orchestrates";
177
178
  governed_by: "governed_by";
178
179
  modifies: "modifies";
179
180
  triggered_by: "triggered_by";
@@ -187,7 +188,7 @@ export declare const graphDecisionOp: import("./define-operation.js").DefinedOpe
187
188
  influence: "influence";
188
189
  justifies: "justifies";
189
190
  }> & {
190
- is(value: unknown): value is "refines" | "realises" | "implements" | "depends_on" | "constrained_by" | "affects" | "supersedes" | "must_preserve" | "performs" | "part_of" | "precedes" | "must_follow" | "blocks" | "routes_to" | "governed_by" | "modifies" | "triggered_by" | "applies_to" | "produces" | "consumes" | "transforms_into" | "selects" | "requires" | "disables" | "influence" | "justifies";
191
+ 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";
191
192
  };
192
193
  description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]> & {
193
194
  is(value: unknown): value is string | string[];
@@ -206,7 +207,7 @@ export declare const graphDecisionOp: import("./define-operation.js").DefinedOpe
206
207
  [x: string]: unknown;
207
208
  from: string;
208
209
  to: string;
209
- 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";
210
+ 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";
210
211
  description?: string | string[] | undefined;
211
212
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
212
213
  strength?: number | undefined;
@@ -297,7 +298,7 @@ export declare const graphDecisionOp: import("./define-operation.js").DefinedOpe
297
298
  [x: string]: unknown;
298
299
  from: string;
299
300
  to: string;
300
- 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";
301
+ 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";
301
302
  description?: string | string[] | undefined;
302
303
  polarity?: "positive" | "negative" | "neutral" | "uncertain" | undefined;
303
304
  strength?: number | undefined;