-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.SysProM.json
More file actions
5271 lines (5271 loc) · 146 KB
/
.SysProM.json
File metadata and controls
5271 lines (5271 loc) · 146 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "./schema.json",
"external_references": [
{
"description": "Original design conversation that produced the SysProM model.",
"identifier": "https://chatgpt.com/c/69bd2439-ad5c-838d-9af1-2e1294a0d331",
"node_id": "I1",
"role": "source"
},
{
"description": "Spec Kit's workflow limitations motivated the addition of process modelling.",
"identifier": "https://github.com/github/spec-kit",
"node_id": "D4",
"role": "prior_art"
},
{
"description": "Ralplan's consensus planning protocol demonstrated the need for roles, stages, and gates as first-class nodes.",
"identifier": "https://github.com/yeachan-heo/oh-my-claudecode/blob/main/skills/ralplan/SKILL.md",
"node_id": "D4",
"role": "prior_art"
},
{
"description": "GSD's multi-runtime orchestration demonstrated the need for modes and runtime-adaptive realisations.",
"identifier": "https://github.com/gsd-build/get-shit-done",
"node_id": "D4",
"role": "prior_art"
},
{
"description": "RFC 2119 defines the interpretation of MUST, SHOULD, and MAY used throughout the specification.",
"identifier": "https://datatracker.ietf.org/doc/html/rfc2119",
"node_id": "CN8",
"role": "standard"
}
],
"metadata": {
"doc_type": "sysprom",
"scope": "system",
"status": "active",
"title": "SysProM — System Provenance Model",
"version": 1
},
"nodes": [
{
"description": "Enable any system — regardless of domain — to record where every part came from, what decisions shaped it, and how it reached its current form.",
"id": "INT1",
"name": "System Provenance",
"type": "intent"
},
{
"description": [
"A system is understood through distinct layers of abstraction: intent, concept, capability, structure, and realisation.",
"Each layer is valid independently of the layers below it."
],
"id": "CON1",
"name": "Layered Abstraction",
"type": "concept"
},
{
"description": [
"Systems evolve through explicit decisions.",
"Decisions select between alternatives, affect nodes, and must preserve invariants.",
"Decisions are never deleted — they are superseded."
],
"id": "CON2",
"name": "Decision-Driven Evolution",
"type": "concept"
},
{
"description": [
"The history of a system is additive. Nodes are deprecated or retired, not erased.",
"Changes record what happened; they do not overwrite prior state."
],
"id": "CON3",
"name": "Append-Only History",
"type": "concept"
},
{
"description": [
"Any node may be treated as a subsystem with its own internal structure.",
"The same model applies at every level of nesting."
],
"id": "CON4",
"name": "Recursive Composition",
"type": "concept"
},
{
"description": [
"Workflows, roles, stages, gates, and artefacts are modelled with the same rigour as domain concepts.",
"Process is not a second-class concern."
],
"id": "CON5",
"name": "Process as Structure",
"type": "concept"
},
{
"description": [
"The model defines semantics, not storage.",
"It may be represented in Markdown, JSON, a database, or any other structured format."
],
"id": "CON6",
"name": "Format Agnosticism",
"type": "concept"
},
{
"description": [
"Nodes may relate to resources outside the graph.",
"Content may be internalised for portability or referenced for traceability, or both."
],
"id": "CON7",
"name": "External Resource Handling",
"type": "concept"
},
{
"description": "A system conforms to SysProM if it meets a defined set of minimum requirements, ensuring interoperability and consistency.",
"id": "CON8",
"name": "Conformance",
"type": "concept"
},
{
"description": "A recommended modelling profile for product repositories that uses SysProM to describe the system's specification, design, and implementation with a consistent trace chain across layers.",
"id": "CON9",
"name": "System Provenance Profile",
"type": "concept"
},
{
"description": "Trace any node from intent through concept, capability, and structure to realisation.",
"id": "CAP1",
"name": "Cross-Layer Traceability",
"type": "capability"
},
{
"description": "Record choices with alternatives considered, rationale, affected nodes, and preserved invariants.",
"id": "CAP2",
"name": "Decision Recording",
"type": "capability"
},
{
"description": [
"Define rules that must hold across all valid system states.",
"Decisions and changes must explicitly identify which invariants they preserve."
],
"id": "CAP3",
"name": "Invariant Enforcement",
"type": "capability"
},
{
"description": "Record every addition, modification, removal, and transition with scope, decision, and lifecycle state.",
"id": "CAP4",
"name": "Change Tracking",
"type": "capability"
},
{
"description": "Represent any node as a subsystem with its own nodes, relationships, decisions, and changes, using the same conventions at every depth.",
"id": "CAP5",
"name": "Recursive Modelling",
"type": "capability"
},
{
"description": "Define protocols, stages, roles, gates, modes, artefacts, and artefact flows as first-class graph nodes.",
"id": "CAP6",
"name": "Process Modelling",
"type": "capability"
},
{
"description": "Encode the model in a single file, a multi-document folder, nested folders, or a non-file format, with the same underlying semantics.",
"id": "CAP7",
"name": "Flexible Representation",
"type": "capability"
},
{
"description": "Reference or internalise resources outside the graph with typed roles (input, output, context, evidence, source, standard, prior_art).",
"id": "CAP8",
"name": "External Resource Referencing",
"type": "capability"
},
{
"description": "The model MUST support multiple concurrent evolution paths (e.g. experimental branches).",
"id": "CAP9",
"name": "Branching",
"type": "capability"
},
{
"description": "Branches MAY be merged.",
"id": "CAP10",
"name": "Merging",
"type": "capability"
},
{
"description": "Previously deprecated or retired nodes MAY be reintroduced.",
"id": "CAP11",
"name": "Revival",
"type": "capability"
},
{
"description": "Guide authors to model product systems through intent, concept, capability, element, realisation, artefact, decision, and change nodes with practical traceability and implementation provenance.",
"id": "CAP12",
"name": "Product Repository Modelling Guidance",
"type": "capability"
},
{
"description": "Concept nodes MUST NOT depend on realisation nodes. The conceptual layer must be valid even if no realisation exists.",
"id": "INV1",
"name": "Concept Independence",
"type": "invariant"
},
{
"description": "Every change MUST reference at least one decision. No change occurs without an explicit choice.",
"id": "INV2",
"name": "Decision-Change Linkage",
"type": "invariant"
},
{
"description": [
"A decision that affects domain nodes (intent, concept, capability, element, invariant) MUST identify the invariants it preserves via must_preserve relationships.",
"A decision that affects only non-domain nodes (realisation, policy, protocol, stage, role, gate, mode, artefact) SHOULD identify preserved invariants but is not required to.",
"Domain nodes define what the system IS. Non-domain nodes define how it works or how it is implemented."
],
"id": "INV3",
"name": "Invariant Preservation",
"type": "invariant"
},
{
"description": [
"The same model MUST apply at all levels of recursion.",
"A subsystem uses the same node types, relationship types, and conventions as the root system."
],
"id": "INV4",
"name": "Recursive Consistency",
"type": "invariant"
},
{
"description": "Superseded decisions and deprecated nodes MUST remain part of the system. History is never deleted.",
"id": "INV5",
"name": "Append-Only History",
"type": "invariant"
},
{
"description": "Every node MUST have a unique identifier and a defined type. No anonymous entities.",
"id": "INV6",
"name": "Node Identity",
"type": "invariant"
},
{
"description": "Every relationship MUST be directional, typed, and reference valid nodes.",
"id": "INV7",
"name": "Relationship Validity",
"type": "invariant"
},
{
"description": "Every gate MUST reference the invariant or policy it enforces.",
"id": "INV8",
"name": "Gate Justification",
"type": "invariant"
},
{
"description": "Refinement flows downward through abstraction layers. Nodes MUST NOT refine nodes in a lower layer.",
"id": "INV9",
"name": "Layer Direction",
"type": "invariant"
},
{
"description": "Realisation nodes MUST implement element nodes. A realisation without a parent element is invalid.",
"id": "INV10",
"name": "Realisation Implements Element",
"type": "invariant"
},
{
"description": "Stages within a protocol MUST have defined ordering via precedes or must_follow relationships.",
"id": "INV11",
"name": "Stage Ordering",
"type": "invariant"
},
{
"description": "Every decision MUST reference the nodes it affects via an affects relationship.",
"id": "INV12",
"name": "Decision Affects Reference",
"type": "invariant"
},
{
"description": "Every decision MUST define the selected option and list alternatives considered.",
"id": "INV13",
"name": "Decision Selection",
"type": "invariant"
},
{
"description": "Every change MUST define its scope (the nodes it affects).",
"id": "INV14",
"name": "Change Scope",
"type": "invariant"
},
{
"description": "Every change MUST define its operations (add, update, remove, link).",
"id": "INV15",
"name": "Change Operations",
"type": "invariant"
},
{
"description": "Every change MUST define its lifecycle state.",
"id": "INV16",
"name": "Change Lifecycle State",
"type": "invariant"
},
{
"description": "Every node MUST be addressable — reachable by its identifier from any point in the graph.",
"id": "INV17",
"name": "Node Addressability",
"type": "invariant"
},
{
"description": "Extensions (additional node types, relationship types, lifecycle states) MUST NOT violate core constraints.",
"id": "INV18",
"name": "Extension Constraint Preservation",
"type": "invariant"
},
{
"description": "Every external reference MUST include a role describing the relationship to the node.",
"id": "INV19",
"name": "External Reference Role Required",
"type": "invariant"
},
{
"description": [
"External references are always from a node in the graph to a resource outside it.",
"External resources do not point back into the graph."
],
"id": "INV20",
"name": "External Reference Directionality",
"type": "invariant"
},
{
"description": "A conformant system MUST define nodes with types.",
"id": "INV28",
"name": "Conformance — Typed Nodes",
"type": "invariant"
},
{
"description": "A conformant system MUST define relationships between nodes.",
"id": "INV29",
"name": "Conformance — Relationships",
"type": "invariant"
},
{
"description": "A conformant system MUST define lifecycle states for decisions and changes.",
"id": "INV30",
"name": "Conformance — Lifecycle States",
"type": "invariant"
},
{
"description": "A conformant system MUST define at least one invariant.",
"id": "INV31",
"name": "Conformance — At Least One Invariant",
"type": "invariant"
},
{
"description": "A conformant system MUST support traceability across abstraction layers.",
"id": "INV32",
"name": "Conformance — Traceability",
"type": "invariant"
},
{
"description": [
"Fields that carry human-readable content (description, context, rationale, internalised) MAY be either a string or an array of strings.",
"Both forms are semantically equivalent.",
"Implementations MUST accept either form wherever a text field appears."
],
"id": "INV21",
"name": "Text Field Duality",
"type": "invariant"
},
{
"description": [
"Node types, node statuses, relationship types, and external reference roles MUST be members of their defined enums.",
"Unknown values MUST be rejected at validation time.",
"Extensions MUST add new values to the enum rather than bypassing it."
],
"id": "INV22",
"name": "Strict Type Enums",
"type": "invariant"
},
{
"description": "Relationships to or from retired nodes are only permitted for semantically appropriate types (supersedes, derived_from, references). Operational relationship types (depends_on, implements, constrained_by, must_follow, governed_by, affects, etc.) are refused. Enforced in addRelationship and checked by validate.",
"id": "INV23",
"name": "Retired Node Relationship Guard",
"type": "invariant"
},
{
"description": "A document must not contain two relationships with identical from, type, and to. Enforced in addRelationship (refuse) and validate (report).",
"id": "INV24",
"name": "No Duplicate Relationships",
"type": "invariant"
},
{
"description": "Each relationship type has a set of valid source and target node types. The endpoint matrix must remain semantically meaningful while allowing practical system-provenance patterns such as role-to-concept or role-to-protocol performs, capability-to-artefact produces, invariant-to-concept applies_to, protocol decomposition via part_of, and abstract workflow control via orchestrates. Enforced in addRelationship (refuse) and validate (report).",
"id": "INV25",
"name": "Relationship Endpoint Type Validity",
"type": "invariant"
},
{
"description": "Setting a node to status: retired via updateNode must report all active nodes that hold operational relationships (depends_on, implements, constrained_by, must_follow, governed_by, affects) to/from it. The caller sees the impact before the change is applied.",
"id": "INV26",
"name": "Retirement Impact Awareness",
"type": "invariant"
},
{
"description": "When both JSON and Markdown representations of a SysProM document exist, mutations via the CLI must automatically keep them in sync. Users should not need to manually run json2md or md2json after every change.",
"id": "INV27",
"name": "Auto-sync JSON and Markdown representations",
"type": "invariant"
},
{
"description": "Intent, decisions, and realisations are distinct concerns and should be recorded separately.",
"id": "PRIN1",
"name": "Separate What From Why From How",
"type": "principle"
},
{
"description": "Documents describe state. Decisions explain why state changed.",
"id": "PRIN2",
"name": "Decisions Are More Important Than Documents",
"type": "principle"
},
{
"description": "Every node gets an ID. No anonymous ideas.",
"id": "PRIN3",
"name": "Everything Has Identity",
"type": "principle"
},
{
"description": "Timelines are one projection of the graph. The graph is the source of truth.",
"id": "PRIN4",
"name": "Think Graph, Not Timeline",
"type": "principle"
},
{
"description": "What exists now and how it got there are recorded separately.",
"id": "PRIN5",
"name": "Separate State From History",
"type": "principle"
},
{
"description": "When removing a node from active use, mark it as deprecated rather than deleting it.",
"id": "POL1",
"name": "Prefer Deprecation Over Deletion",
"type": "policy"
},
{
"description": "A decision SHOULD list the alternatives considered, not only the selected option.",
"id": "POL2",
"name": "Decisions Must Record Alternatives",
"type": "policy"
},
{
"description": "A change SHOULD explicitly state which nodes it affects and which it does not.",
"id": "POL3",
"name": "Changes Must Define Scope",
"type": "policy"
},
{
"description": "Capability nodes SHOULD refine concept nodes.",
"id": "POL4",
"name": "Capabilities Should Refine Concepts",
"type": "policy"
},
{
"description": "Element nodes SHOULD realise capability nodes.",
"id": "POL5",
"name": "Elements Should Realise Capabilities",
"type": "policy"
},
{
"description": "When portability matters, the relevant content from an external resource SHOULD be captured directly within a node so the document set is self-contained.",
"id": "POL6",
"name": "Prefer Internalisation for Portability",
"type": "policy"
},
{
"description": "Implementations SHOULD ensure integrity of node identities.",
"id": "POL7",
"name": "Security — Node Identity Integrity",
"type": "policy"
},
{
"description": "Implementations SHOULD ensure consistency of relationships.",
"id": "POL8",
"name": "Security — Relationship Consistency",
"type": "policy"
},
{
"description": "Implementations SHOULD ensure controlled modification of decisions and changes.",
"id": "POL9",
"name": "Security — Controlled Modification",
"type": "policy"
},
{
"description": [
"The root entry point MUST be identifiable as a SysProM document.",
"Valid filenames include SysProM.md, SYSPROM.md, SPM.md, and README.spm.md.",
"Alternatively, front matter containing doc_type: sysprom is sufficient."
],
"id": "POL10",
"name": "Root Entry Point Identification",
"type": "policy"
},
{
"description": [
"A SysProM document set MAY live at any location.",
"Valid locations include: repository root (./SysProM.md), dedicated folder (./SysProM/README.md), docs directory (./docs/SysProM.md), or any other reasonable path."
],
"id": "POL11",
"name": "Root Entry Point Location",
"type": "policy"
},
{
"description": [
"When a system is described across multiple files, a hub document (typically README.md) SHOULD serve as the root node.",
"Separate files per concern: INTENT.md, INVARIANTS.md, STATE.md, DECISIONS.md, CHANGES.md.",
"No document is mandatory."
],
"id": "POL12",
"name": "Multi-Document Hub",
"type": "policy"
},
{
"description": [
"A node represented as a single file SHOULD use the .spm.md extension.",
"Filename SHOULD include node ID and MAY include name: F1-sync.spm.md (preferred), F1.spm.md, or sync.spm.md."
],
"id": "POL13",
"name": "Single-File Node Extension",
"type": "policy"
},
{
"description": [
"A node represented as a folder SHOULD be named using the node ID and name: F1-sync/ (preferred), F1/, or sync/.",
"The folder MUST contain at least a README. md."
],
"id": "POL14",
"name": "Folder Node Naming",
"type": "policy"
},
{
"description": [
"Node folders MAY be grouped under intermediate directories by type (e. g. features/, components/).",
"Grouping folders are organisational and do not represent nodes."
],
"id": "POL15",
"name": "Grouping Folders",
"type": "policy"
},
{
"description": [
"Parent-child relationships between nodes are implicit from the folder hierarchy.",
"Explicit parent references in frontmatter are not required."
],
"id": "POL16",
"name": "Parent Linking Implicit",
"type": "policy"
},
{
"description": [
"Relationships MAY be expressed as labelled lists, arrow chains, tables, nested lists, or mermaid diagrams.",
"Formats may be mixed. The choice is a presentation concern."
],
"id": "POL17",
"name": "Relationship Notation Flexibility",
"type": "policy"
},
{
"description": [
"Front matter defines document-level metadata only (title, doc_type, scope, status, version).",
"Node-level data belongs in the document body."
],
"id": "POL18",
"name": "Frontmatter Is Metadata Only",
"type": "policy"
},
{
"description": "Generated README navigation and document roles MUST only link to files that contain nodes. Dead links to absent files MUST NOT be generated.",
"id": "POL19",
"name": "README Links Only to Present Files",
"type": "policy"
},
{
"description": [
"A subsystem is rendered as a single .spm.md file when it would produce only one document file type AND the result is 100 lines or fewer.",
"A subsystem is rendered as a multi-document folder when it would produce multiple file types OR the single file would exceed 100 lines.",
"Subsystems of the same node type are automatically grouped into a type-named directory when 2 or more exist."
],
"id": "POL20",
"name": "Subsystem Representation Heuristic",
"type": "policy"
},
{
"description": "The set of node types that model what the system is.",
"id": "ELEM1",
"lifecycle": {
"active": true
},
"name": "Domain Node Family",
"subsystem": {
"metadata": {
"doc_type": "element",
"scope": "element",
"status": "active",
"title": "ELEM1 — Domain Node Family"
},
"nodes": [
{
"description": "System purpose or goal. Stable, independent of implementation.",
"id": "CON1-INTENT",
"name": "intent",
"type": "concept"
},
{
"description": "Abstract model or idea. Defines what the system is, independent of structure and realisation.",
"id": "CON2-CONCEPT",
"name": "concept",
"type": "concept"
},
{
"description": "Enabled behaviour. Derived from concepts, independent of implementation.",
"id": "CON3-CAPABILITY",
"name": "capability",
"type": "concept"
},
{
"description": "Structural unit (logical part of system). Defines organisation, may depend on other elements.",
"id": "CON4-ELEMENT",
"name": "element",
"type": "concept"
},
{
"description": "Concrete implementation of an element. Multiple realisations may coexist (alternative, concurrent, or experimental).",
"id": "CON5-REALISATION",
"name": "realisation",
"type": "concept"
},
{
"description": "Constraint that must always hold. Independent of decisions and changes. Constrains allowable system states.",
"id": "CON6-INVARIANT",
"name": "invariant",
"type": "concept"
}
]
},
"type": "element"
},
{
"description": "The set of node types that model how work flows through the system.",
"id": "ELEM2",
"lifecycle": {
"active": true
},
"name": "Process Node Family",
"subsystem": {
"metadata": {
"doc_type": "element",
"scope": "element",
"status": "active",
"title": "ELEM2 — Process Node Family"
},
"nodes": [
{
"description": "Normative design value. May be overridden with justification, unlike invariants.",
"id": "CON1-PRINCIPLE",
"name": "principle",
"type": "concept"
},
{
"description": "Operational routing, gating, or selection rule. Implements principles and invariants.",
"id": "CON2-POLICY",
"name": "policy",
"type": "concept"
},
{
"description": "Defined sequence of stages performed by roles. Protocols MAY depend on other protocols.",
"id": "CON3-PROTOCOL",
"name": "protocol",
"type": "concept"
},
{
"description": "A step within a protocol. MUST have defined ordering. MAY produce or consume artefacts.",
"id": "CON4-STAGE",
"name": "stage",
"type": "concept"
},
{
"description": "A participant that performs stages. MAY be human, automated, or agent-based.",
"id": "CON5-ROLE",
"name": "role",
"type": "concept"
},
{
"description": [
"Conditional blocker or redirector. MUST reference the invariant or policy it enforces.",
"MAY block a stage or route to an alternative."
],
"id": "CON6-GATE",
"name": "gate",
"type": "concept"
},
{
"description": [
"Named behavioural configuration that modifies a protocol or stage without redefining the system.",
"MAY be triggered by gates, selected by policies, or chosen explicitly."
],
"id": "CON7-MODE",
"name": "mode",
"type": "concept"
}
]
},
"type": "element"
},
{
"description": "The set of node types that model what is produced and consumed.",
"id": "ELEM3",
"lifecycle": {
"active": true
},
"name": "Artefact Node Family",
"subsystem": {
"metadata": {
"doc_type": "element",
"scope": "element",
"status": "active",
"title": "ELEM3 — Artefact Node Family"
},
"nodes": [
{
"description": "A document, record, or output produced or consumed during system evolution.",
"id": "CON1-ARTEFACT",
"name": "artefact",
"type": "concept"
},
{
"description": [
"A transformation of one artefact into another within a stage.",
"Provides traceability of how documents and records evolve through a process."
],
"id": "CON2-ARTEFACT_FLOW",
"name": "artefact_flow",
"type": "concept"
}
]
},
"type": "element"
},
{
"description": "The set of node types that model how the system changes over time.",
"id": "ELEM4",
"lifecycle": {
"active": true
},
"name": "Evolution Node Family",
"subsystem": {
"metadata": {
"doc_type": "element",
"scope": "element",
"status": "active",
"title": "ELEM4 — Evolution Node Family"
},
"nodes": [
{
"description": [
"Selection between alternatives that influences system structure or behaviour.",
"MUST define selected option, list alternatives, identify affected nodes, and identify preserved invariants.",
"MAY supersede prior decisions. Superseded decisions remain in history."
],
"id": "CON1-DECISION",
"name": "decision",
"type": "concept"
},
{
"description": [
"System modification over time.",
"MUST define scope, reference decisions, define operations (add/update/remove/link), and define lifecycle state.",
"MAY include execution plan. MAY overlap, depend on other changes, and be partially completed."
],
"id": "CON2-CHANGE",
"name": "change",
"type": "concept"
}
]
},
"type": "element"
},
{
"description": "Optional node types for views and snapshots.",
"id": "ELEM5",
"lifecycle": {
"active": true
},
"name": "Projection Node Family",
"subsystem": {
"metadata": {
"doc_type": "element",
"scope": "element",
"status": "active",
"title": "ELEM5 — Projection Node Family"
},
"nodes": [
{
"description": "A named projection of a subset of the graph.",
"id": "CON1-VIEW",
"name": "view",
"type": "concept"
},
{
"description": "A named point in evolution.",
"id": "CON2-MILESTONE",
"name": "milestone",
"type": "concept"
},
{
"description": "A frozen snapshot of the system.",
"id": "CON3-VERSION",
"name": "version",
"type": "concept"
}
]
},
"type": "element"
},
{
"description": "The set of typed, directed connections available between nodes.",
"id": "ELEM6",
"lifecycle": {
"active": true
},
"name": "Relationship Type Registry",
"subsystem": {
"metadata": {
"doc_type": "element",
"scope": "element",
"status": "active",
"title": "ELEM6 — Relationship Type Registry"
},
"nodes": [
{
"description": "Abstraction refinement (e.g. capability refines concept).",
"id": "CON1-REFINES",
"name": "refines",
"type": "concept"
},
{
"description": "Fulfils a capability.",
"id": "CON2-REALISES",
"name": "realises",
"type": "concept"
},
{
"description": "Fulfils an element.",
"id": "CON3-IMPLEMENTS",
"name": "implements",
"type": "concept"
},
{
"description": "Dependency between nodes.",
"id": "CON4-DEPENDS_ON",
"name": "depends_on",
"type": "concept"
},
{
"description": "Governed by an invariant.",
"id": "CON5-CONSTRAINED_BY",
"name": "constrained_by",
"type": "concept"
},
{
"description": "Impact of a decision or change on a node.",
"id": "CON6-AFFECTS",
"name": "affects",
"type": "concept"
},
{
"description": "Replacement of one node by another.",
"id": "CON7-SUPERSEDES",
"name": "supersedes",
"type": "concept"
},
{
"description": "Preservation of an invariant by a decision or change.",
"id": "CON8-MUST_PRESERVE",
"name": "must_preserve",
"type": "concept"
},
{
"description": "A role performs a stage.",
"id": "CON9-PERFORMS",
"name": "performs",
"type": "concept"
},
{
"description": "A stage belongs to a protocol.",
"id": "CON10-PART_OF",
"name": "part_of",
"type": "concept"
},
{
"description": "Ordering between stages.",
"id": "CON11-PRECEDES",
"name": "precedes",
"type": "concept"
},
{
"description": "Strict ordering constraint between stages.",
"id": "CON12-MUST_FOLLOW",
"name": "must_follow",
"type": "concept"
},
{
"description": "A gate blocks a stage.",
"id": "CON13-BLOCKS",
"name": "blocks",
"type": "concept"
},
{
"description": "A gate redirects to a stage.",
"id": "CON14-ROUTES_TO",
"name": "routes_to",
"type": "concept"
},
{
"description": "An abstract workflow machine directs executable milestones, stages, gates, or artefact flows.",
"id": "CON25-ORCHESTRATES",
"name": "orchestrates",
"type": "concept"
},
{
"description": "A gate or policy is governed by a principle or invariant.",
"id": "CON15-GOVERNED_BY",
"name": "governed_by",
"type": "concept"
},
{
"description": "A mode modifies a protocol or stage.",
"id": "CON16-MODIFIES",
"name": "modifies",
"type": "concept"
},
{
"description": "A mode is triggered by a gate.",
"id": "CON17-TRIGGERED_BY",
"name": "triggered_by",
"type": "concept"
},
{
"description": "A mode applies to a protocol.",
"id": "CON18-APPLIES_TO",
"name": "applies_to",
"type": "concept"
},
{
"description": "A stage produces an artefact.",
"id": "CON19-PRODUCES",
"name": "produces",
"type": "concept"
},
{
"description": "A stage consumes an artefact.",
"id": "CON20-CONSUMES",
"name": "consumes",
"type": "concept"
},
{
"description": "An artefact flow transforms input to output.",
"id": "CON21-TRANSFORMS_INTO",
"name": "transforms_into",
"type": "concept"
},
{
"description": "A decision selects a realisation.",
"id": "CON22-SELECTS",
"name": "selects",
"type": "concept"
},
{
"description": "A gate or mode requires a condition.",
"id": "CON23-REQUIRES",
"name": "requires",
"type": "concept"
},
{
"description": "A mode disables a capability.",
"id": "CON24-DISABLES",
"name": "disables",
"type": "concept"
}
]
},
"type": "element"
},
{
"description": "The mechanism for relating nodes to resources outside the graph.",
"id": "ELEM7",
"lifecycle": {
"active": true
},
"name": "External Reference Model",