-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomponent_map.yaml
More file actions
111 lines (99 loc) · 2.07 KB
/
component_map.yaml
File metadata and controls
111 lines (99 loc) · 2.07 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
version: "1"
project: pact
components:
- id: cli
role: ingress
protocol: cli
authority: user_commands
data_access:
PUBLIC: read_write
- id: daemon
role: service
authority: pipeline_orchestration
data_access:
PUBLIC: read_write
- id: decomposer
role: library
authority: task_decomposition
data_access:
PUBLIC: read_write
- id: contractor
role: library
authority: contract_generation
data_access:
PUBLIC: read_write
- id: test_author
role: library
authority: test_generation
data_access:
PUBLIC: read_write
- id: code_author
role: library
authority: implementation
data_access:
PUBLIC: read_write
- id: validator
role: library
authority: mechanical_verification
data_access:
PUBLIC: read
- id: integrator
role: library
authority: composition_wiring
data_access:
PUBLIC: read_write
- id: diagnoser
role: library
authority: failure_analysis
data_access:
PUBLIC: read
- id: state_manager
role: library
authority: pipeline_state
data_access:
PUBLIC: read_write
- id: mcp_server
role: service
protocol: mcp
authority: external_query
data_access:
PUBLIC: read
- id: wizard
role: library
authority: task_creation
data_access:
PUBLIC: read_write
edges:
- from: cli
to: daemon
tier: internal
- from: daemon
to: decomposer
tier: internal
- from: daemon
to: contractor
tier: internal
- from: daemon
to: test_author
tier: internal
- from: daemon
to: code_author
tier: internal
- from: daemon
to: validator
tier: internal
- from: daemon
to: integrator
tier: internal
- from: daemon
to: diagnoser
tier: internal
- from: daemon
to: state_manager
tier: internal
- from: mcp_server
to: state_manager
tier: internal
- from: wizard
to: cli
tier: internal