archgraph-argo 0.10.43 → 0.10.44
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/LICENSE +201 -201
- package/argo/package.json +8 -8
- package/argo/schema/ImplementationToCodingHandoff.schema.json +251 -251
- package/argo/schema/ImplementationToIntentTraceProposal.schema.json +180 -180
- package/argo/schema/IntentToImplementationHandoff.schema.json +74 -74
- package/argo/schema/SystemArchitecture.schema.json +378 -378
- package/argo/schema/archimate3.2.md +7153 -7153
- package/argo/scripts/archimate32-rules.js +12301 -12301
- package/argo/scripts/generateArchitectureDiffPlantuml.js +466 -466
- package/argo/scripts/graph-rag/ARCHITECTURE.md +192 -192
- package/argo/scripts/graph-rag/canonicalProjectionAuthority.js +45 -45
- package/argo/scripts/graph-rag/embeddingQualificationGate.js +59 -59
- package/argo/scripts/graph-rag/externalProductionConfig.js +74 -74
- package/argo/scripts/graph-rag/liveEmbeddingProviderClient.js +49 -49
- package/argo/scripts/graph-rag/neo4jNativeRetrieval.js +37 -37
- package/argo/scripts/graph-rag/semantic-persistence/ARCHITECTURE.md +51 -51
- package/argo/scripts/graph-rag/semantic-persistence/productionSemanticCheckpointStore.js +99 -99
- package/argo/scripts/graph-rag/semantic-persistence/productionSemanticProjectionStore.js +171 -171
- package/argo/scripts/graph-rag/semanticOperatorError.js +38 -38
- package/argo/scripts/graph-rag/semanticOperatorJourney.js +459 -459
- package/argo/scripts/graph-rag/semanticReadinessAttestationStore.js +398 -398
- package/argo/scripts/graph-rag/systemMetadataCommandAdapter.js +269 -269
- package/argo/scripts/graph-semantics.js +220 -220
- package/argo/scripts/repositoryArgoEnvironment.js +101 -101
- package/argo/scripts/runArchitectureTests.js +583 -583
- package/argo/scripts/semanticOperatorJourneyCli.js +91 -91
- package/argo/scripts/syncSystemArchitectureToNeo4j.js +66 -66
- package/argo/scripts/test-executors/_template.js +58 -58
- package/argo/scripts/test-executors/default.js +199 -199
- package/argo/scripts/validateStageHandoff.js +458 -458
- package/argo/scripts/validateSystemArchitecture.js +253 -253
- package/argo/scripts/validateTraceProposal.js +181 -181
- package/bin/argo-deploy.js +12 -12
- package/install-argo.ps1 +27 -8
- package/package.json +1 -1
|
@@ -1,180 +1,180 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "./.argo/schema/ImplementationToIntentTraceProposal.schema.json",
|
|
4
|
-
"title": "Implementation To Intent Trace Proposal Schema",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"required": [
|
|
8
|
-
"proposalType",
|
|
9
|
-
"generatedAt",
|
|
10
|
-
"sourceAgent",
|
|
11
|
-
"targetAgent",
|
|
12
|
-
"lifecycle",
|
|
13
|
-
"sourceIntentGraphPath",
|
|
14
|
-
"implementationContracts",
|
|
15
|
-
"anchorProposals"
|
|
16
|
-
],
|
|
17
|
-
"properties": {
|
|
18
|
-
"proposalType": {
|
|
19
|
-
"type": "string",
|
|
20
|
-
"const": "implementation-to-intent-trace"
|
|
21
|
-
},
|
|
22
|
-
"generatedAt": {
|
|
23
|
-
"type": "string"
|
|
24
|
-
},
|
|
25
|
-
"sourceAgent": {
|
|
26
|
-
"type": "string",
|
|
27
|
-
"const": "ImplementationDesign"
|
|
28
|
-
},
|
|
29
|
-
"targetAgent": {
|
|
30
|
-
"type": "string",
|
|
31
|
-
"const": "IntentionDesign"
|
|
32
|
-
},
|
|
33
|
-
"lifecycle": {
|
|
34
|
-
"type": "string",
|
|
35
|
-
"const": "temporary-trace-proposal"
|
|
36
|
-
},
|
|
37
|
-
"sourceIntentGraphPath": {
|
|
38
|
-
"type": "string"
|
|
39
|
-
},
|
|
40
|
-
"implementationContracts": {
|
|
41
|
-
"type": "array",
|
|
42
|
-
"minItems": 1,
|
|
43
|
-
"items": {
|
|
44
|
-
"type": "string"
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"anchorProposals": {
|
|
48
|
-
"type": "array",
|
|
49
|
-
"minItems": 1,
|
|
50
|
-
"items": {
|
|
51
|
-
"$ref": "#/$defs/anchorProposal"
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"openQuestions": {
|
|
55
|
-
"type": "array",
|
|
56
|
-
"items": {
|
|
57
|
-
"$ref": "#/$defs/openQuestion"
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"notes": {
|
|
61
|
-
"type": "array",
|
|
62
|
-
"items": {
|
|
63
|
-
"type": "string"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
"$defs": {
|
|
68
|
-
"anchorProposal": {
|
|
69
|
-
"type": "object",
|
|
70
|
-
"additionalProperties": false,
|
|
71
|
-
"required": [
|
|
72
|
-
"intentElementId",
|
|
73
|
-
"implementationElementName",
|
|
74
|
-
"implementationElementKind",
|
|
75
|
-
"implementsType",
|
|
76
|
-
"tracePurpose",
|
|
77
|
-
"contractPaths",
|
|
78
|
-
"contextEntryPoints",
|
|
79
|
-
"excludedDetails"
|
|
80
|
-
],
|
|
81
|
-
"properties": {
|
|
82
|
-
"intentElementId": {
|
|
83
|
-
"type": "string"
|
|
84
|
-
},
|
|
85
|
-
"intentElementName": {
|
|
86
|
-
"type": "string"
|
|
87
|
-
},
|
|
88
|
-
"implementationElementName": {
|
|
89
|
-
"type": "string"
|
|
90
|
-
},
|
|
91
|
-
"implementationElementKind": {
|
|
92
|
-
"type": "string",
|
|
93
|
-
"enum": [
|
|
94
|
-
"stable-directory",
|
|
95
|
-
"contract-file",
|
|
96
|
-
"explicit-test-entry",
|
|
97
|
-
"critical-guardrail",
|
|
98
|
-
"runtime-component",
|
|
99
|
-
"schema-contract",
|
|
100
|
-
"mcp-tool",
|
|
101
|
-
"command"
|
|
102
|
-
]
|
|
103
|
-
},
|
|
104
|
-
"implementsType": {
|
|
105
|
-
"type": "string",
|
|
106
|
-
"enum": [
|
|
107
|
-
"direct",
|
|
108
|
-
"indirect"
|
|
109
|
-
]
|
|
110
|
-
},
|
|
111
|
-
"tracePurpose": {
|
|
112
|
-
"type": "string"
|
|
113
|
-
},
|
|
114
|
-
"contractPaths": {
|
|
115
|
-
"type": "array",
|
|
116
|
-
"minItems": 1,
|
|
117
|
-
"items": {
|
|
118
|
-
"type": "string"
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
"contextEntryPoints": {
|
|
122
|
-
"type": "array",
|
|
123
|
-
"minItems": 1,
|
|
124
|
-
"items": {
|
|
125
|
-
"type": "string"
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
|
-
"excludedDetails": {
|
|
129
|
-
"type": "array",
|
|
130
|
-
"minItems": 1,
|
|
131
|
-
"items": {
|
|
132
|
-
"type": "string"
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
|
-
"suggestedIntentAttributes": {
|
|
136
|
-
"type": "array",
|
|
137
|
-
"items": {
|
|
138
|
-
"$ref": "#/$defs/intentAttribute"
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
"intentAttribute": {
|
|
144
|
-
"type": "object",
|
|
145
|
-
"additionalProperties": false,
|
|
146
|
-
"required": [
|
|
147
|
-
"name",
|
|
148
|
-
"description"
|
|
149
|
-
],
|
|
150
|
-
"properties": {
|
|
151
|
-
"name": {
|
|
152
|
-
"type": "string"
|
|
153
|
-
},
|
|
154
|
-
"description": {
|
|
155
|
-
"type": "string"
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
},
|
|
159
|
-
"openQuestion": {
|
|
160
|
-
"type": "object",
|
|
161
|
-
"additionalProperties": false,
|
|
162
|
-
"required": [
|
|
163
|
-
"question",
|
|
164
|
-
"recommendedAnswer",
|
|
165
|
-
"reason"
|
|
166
|
-
],
|
|
167
|
-
"properties": {
|
|
168
|
-
"question": {
|
|
169
|
-
"type": "string"
|
|
170
|
-
},
|
|
171
|
-
"recommendedAnswer": {
|
|
172
|
-
"type": "string"
|
|
173
|
-
},
|
|
174
|
-
"reason": {
|
|
175
|
-
"type": "string"
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "./.argo/schema/ImplementationToIntentTraceProposal.schema.json",
|
|
4
|
+
"title": "Implementation To Intent Trace Proposal Schema",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"proposalType",
|
|
9
|
+
"generatedAt",
|
|
10
|
+
"sourceAgent",
|
|
11
|
+
"targetAgent",
|
|
12
|
+
"lifecycle",
|
|
13
|
+
"sourceIntentGraphPath",
|
|
14
|
+
"implementationContracts",
|
|
15
|
+
"anchorProposals"
|
|
16
|
+
],
|
|
17
|
+
"properties": {
|
|
18
|
+
"proposalType": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"const": "implementation-to-intent-trace"
|
|
21
|
+
},
|
|
22
|
+
"generatedAt": {
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
"sourceAgent": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"const": "ImplementationDesign"
|
|
28
|
+
},
|
|
29
|
+
"targetAgent": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"const": "IntentionDesign"
|
|
32
|
+
},
|
|
33
|
+
"lifecycle": {
|
|
34
|
+
"type": "string",
|
|
35
|
+
"const": "temporary-trace-proposal"
|
|
36
|
+
},
|
|
37
|
+
"sourceIntentGraphPath": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"implementationContracts": {
|
|
41
|
+
"type": "array",
|
|
42
|
+
"minItems": 1,
|
|
43
|
+
"items": {
|
|
44
|
+
"type": "string"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"anchorProposals": {
|
|
48
|
+
"type": "array",
|
|
49
|
+
"minItems": 1,
|
|
50
|
+
"items": {
|
|
51
|
+
"$ref": "#/$defs/anchorProposal"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"openQuestions": {
|
|
55
|
+
"type": "array",
|
|
56
|
+
"items": {
|
|
57
|
+
"$ref": "#/$defs/openQuestion"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"notes": {
|
|
61
|
+
"type": "array",
|
|
62
|
+
"items": {
|
|
63
|
+
"type": "string"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"$defs": {
|
|
68
|
+
"anchorProposal": {
|
|
69
|
+
"type": "object",
|
|
70
|
+
"additionalProperties": false,
|
|
71
|
+
"required": [
|
|
72
|
+
"intentElementId",
|
|
73
|
+
"implementationElementName",
|
|
74
|
+
"implementationElementKind",
|
|
75
|
+
"implementsType",
|
|
76
|
+
"tracePurpose",
|
|
77
|
+
"contractPaths",
|
|
78
|
+
"contextEntryPoints",
|
|
79
|
+
"excludedDetails"
|
|
80
|
+
],
|
|
81
|
+
"properties": {
|
|
82
|
+
"intentElementId": {
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
"intentElementName": {
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
"implementationElementName": {
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
"implementationElementKind": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"enum": [
|
|
94
|
+
"stable-directory",
|
|
95
|
+
"contract-file",
|
|
96
|
+
"explicit-test-entry",
|
|
97
|
+
"critical-guardrail",
|
|
98
|
+
"runtime-component",
|
|
99
|
+
"schema-contract",
|
|
100
|
+
"mcp-tool",
|
|
101
|
+
"command"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"implementsType": {
|
|
105
|
+
"type": "string",
|
|
106
|
+
"enum": [
|
|
107
|
+
"direct",
|
|
108
|
+
"indirect"
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
"tracePurpose": {
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
"contractPaths": {
|
|
115
|
+
"type": "array",
|
|
116
|
+
"minItems": 1,
|
|
117
|
+
"items": {
|
|
118
|
+
"type": "string"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"contextEntryPoints": {
|
|
122
|
+
"type": "array",
|
|
123
|
+
"minItems": 1,
|
|
124
|
+
"items": {
|
|
125
|
+
"type": "string"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"excludedDetails": {
|
|
129
|
+
"type": "array",
|
|
130
|
+
"minItems": 1,
|
|
131
|
+
"items": {
|
|
132
|
+
"type": "string"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"suggestedIntentAttributes": {
|
|
136
|
+
"type": "array",
|
|
137
|
+
"items": {
|
|
138
|
+
"$ref": "#/$defs/intentAttribute"
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"intentAttribute": {
|
|
144
|
+
"type": "object",
|
|
145
|
+
"additionalProperties": false,
|
|
146
|
+
"required": [
|
|
147
|
+
"name",
|
|
148
|
+
"description"
|
|
149
|
+
],
|
|
150
|
+
"properties": {
|
|
151
|
+
"name": {
|
|
152
|
+
"type": "string"
|
|
153
|
+
},
|
|
154
|
+
"description": {
|
|
155
|
+
"type": "string"
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"openQuestion": {
|
|
160
|
+
"type": "object",
|
|
161
|
+
"additionalProperties": false,
|
|
162
|
+
"required": [
|
|
163
|
+
"question",
|
|
164
|
+
"recommendedAnswer",
|
|
165
|
+
"reason"
|
|
166
|
+
],
|
|
167
|
+
"properties": {
|
|
168
|
+
"question": {
|
|
169
|
+
"type": "string"
|
|
170
|
+
},
|
|
171
|
+
"recommendedAnswer": {
|
|
172
|
+
"type": "string"
|
|
173
|
+
},
|
|
174
|
+
"reason": {
|
|
175
|
+
"type": "string"
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "./.argo/schema/IntentToImplementationHandoff.schema.json",
|
|
4
|
-
"title": "Intent To Implementation Handoff Schema",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"required": [
|
|
8
|
-
"stage",
|
|
9
|
-
"generatedAt",
|
|
10
|
-
"sourceIntentGraphPath",
|
|
11
|
-
"intentElementIds"
|
|
12
|
-
],
|
|
13
|
-
"properties": {
|
|
14
|
-
"stage": {
|
|
15
|
-
"type": "string",
|
|
16
|
-
"const": "intent-to-implementation"
|
|
17
|
-
},
|
|
18
|
-
"generatedAt": {
|
|
19
|
-
"type": "string"
|
|
20
|
-
},
|
|
21
|
-
"sourceIntentGraphPath": {
|
|
22
|
-
"type": "string"
|
|
23
|
-
},
|
|
24
|
-
"summary": {
|
|
25
|
-
"type": "string"
|
|
26
|
-
},
|
|
27
|
-
"intentElementIds": {
|
|
28
|
-
"type": "array",
|
|
29
|
-
"minItems": 1,
|
|
30
|
-
"items": {
|
|
31
|
-
"type": "string"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"relationshipIds": {
|
|
35
|
-
"type": "array",
|
|
36
|
-
"items": {
|
|
37
|
-
"type": "string"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"openQuestions": {
|
|
41
|
-
"type": "array",
|
|
42
|
-
"items": {
|
|
43
|
-
"$ref": "#/$defs/openQuestion"
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
"notes": {
|
|
47
|
-
"type": "array",
|
|
48
|
-
"items": {
|
|
49
|
-
"type": "string"
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
"$defs": {
|
|
54
|
-
"openQuestion": {
|
|
55
|
-
"type": "object",
|
|
56
|
-
"additionalProperties": false,
|
|
57
|
-
"required": [
|
|
58
|
-
"question",
|
|
59
|
-
"recommendedAnswer",
|
|
60
|
-
"reason"
|
|
61
|
-
],
|
|
62
|
-
"properties": {
|
|
63
|
-
"question": {
|
|
64
|
-
"type": "string"
|
|
65
|
-
},
|
|
66
|
-
"recommendedAnswer": {
|
|
67
|
-
"type": "string"
|
|
68
|
-
},
|
|
69
|
-
"reason": {
|
|
70
|
-
"type": "string"
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "./.argo/schema/IntentToImplementationHandoff.schema.json",
|
|
4
|
+
"title": "Intent To Implementation Handoff Schema",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"stage",
|
|
9
|
+
"generatedAt",
|
|
10
|
+
"sourceIntentGraphPath",
|
|
11
|
+
"intentElementIds"
|
|
12
|
+
],
|
|
13
|
+
"properties": {
|
|
14
|
+
"stage": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"const": "intent-to-implementation"
|
|
17
|
+
},
|
|
18
|
+
"generatedAt": {
|
|
19
|
+
"type": "string"
|
|
20
|
+
},
|
|
21
|
+
"sourceIntentGraphPath": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"summary": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"intentElementIds": {
|
|
28
|
+
"type": "array",
|
|
29
|
+
"minItems": 1,
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"relationshipIds": {
|
|
35
|
+
"type": "array",
|
|
36
|
+
"items": {
|
|
37
|
+
"type": "string"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"openQuestions": {
|
|
41
|
+
"type": "array",
|
|
42
|
+
"items": {
|
|
43
|
+
"$ref": "#/$defs/openQuestion"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"notes": {
|
|
47
|
+
"type": "array",
|
|
48
|
+
"items": {
|
|
49
|
+
"type": "string"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"$defs": {
|
|
54
|
+
"openQuestion": {
|
|
55
|
+
"type": "object",
|
|
56
|
+
"additionalProperties": false,
|
|
57
|
+
"required": [
|
|
58
|
+
"question",
|
|
59
|
+
"recommendedAnswer",
|
|
60
|
+
"reason"
|
|
61
|
+
],
|
|
62
|
+
"properties": {
|
|
63
|
+
"question": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"recommendedAnswer": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
"reason": {
|
|
70
|
+
"type": "string"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
75
|
}
|