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.
Files changed (35) hide show
  1. package/LICENSE +201 -201
  2. package/argo/package.json +8 -8
  3. package/argo/schema/ImplementationToCodingHandoff.schema.json +251 -251
  4. package/argo/schema/ImplementationToIntentTraceProposal.schema.json +180 -180
  5. package/argo/schema/IntentToImplementationHandoff.schema.json +74 -74
  6. package/argo/schema/SystemArchitecture.schema.json +378 -378
  7. package/argo/schema/archimate3.2.md +7153 -7153
  8. package/argo/scripts/archimate32-rules.js +12301 -12301
  9. package/argo/scripts/generateArchitectureDiffPlantuml.js +466 -466
  10. package/argo/scripts/graph-rag/ARCHITECTURE.md +192 -192
  11. package/argo/scripts/graph-rag/canonicalProjectionAuthority.js +45 -45
  12. package/argo/scripts/graph-rag/embeddingQualificationGate.js +59 -59
  13. package/argo/scripts/graph-rag/externalProductionConfig.js +74 -74
  14. package/argo/scripts/graph-rag/liveEmbeddingProviderClient.js +49 -49
  15. package/argo/scripts/graph-rag/neo4jNativeRetrieval.js +37 -37
  16. package/argo/scripts/graph-rag/semantic-persistence/ARCHITECTURE.md +51 -51
  17. package/argo/scripts/graph-rag/semantic-persistence/productionSemanticCheckpointStore.js +99 -99
  18. package/argo/scripts/graph-rag/semantic-persistence/productionSemanticProjectionStore.js +171 -171
  19. package/argo/scripts/graph-rag/semanticOperatorError.js +38 -38
  20. package/argo/scripts/graph-rag/semanticOperatorJourney.js +459 -459
  21. package/argo/scripts/graph-rag/semanticReadinessAttestationStore.js +398 -398
  22. package/argo/scripts/graph-rag/systemMetadataCommandAdapter.js +269 -269
  23. package/argo/scripts/graph-semantics.js +220 -220
  24. package/argo/scripts/repositoryArgoEnvironment.js +101 -101
  25. package/argo/scripts/runArchitectureTests.js +583 -583
  26. package/argo/scripts/semanticOperatorJourneyCli.js +91 -91
  27. package/argo/scripts/syncSystemArchitectureToNeo4j.js +66 -66
  28. package/argo/scripts/test-executors/_template.js +58 -58
  29. package/argo/scripts/test-executors/default.js +199 -199
  30. package/argo/scripts/validateStageHandoff.js +458 -458
  31. package/argo/scripts/validateSystemArchitecture.js +253 -253
  32. package/argo/scripts/validateTraceProposal.js +181 -181
  33. package/bin/argo-deploy.js +12 -12
  34. package/install-argo.ps1 +27 -8
  35. package/package.json +1 -1
@@ -1,252 +1,252 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "$id": "./.argo/schema/ImplementationToCodingHandoff.schema.json",
4
- "title": "Implementation To Coding Handoff Schema",
5
- "type": "object",
6
- "additionalProperties": false,
7
- "required": [
8
- "stage",
9
- "generatedAt",
10
- "sourceIntentGraphPath",
11
- "implementationContracts",
12
- "explicitEntrypoints",
13
- "criticalNonExplicitTests",
14
- "expectedFailureRecordsPath",
15
- "codingTargets",
16
- "taskExecutionPlan",
17
- "frozenFiles"
18
- ],
19
- "properties": {
20
- "stage": {
21
- "type": "string",
22
- "const": "implementation-to-coding"
23
- },
24
- "generatedAt": {
25
- "type": "string"
26
- },
27
- "sourceIntentGraphPath": {
28
- "type": "string"
29
- },
30
- "summary": {
31
- "type": "string"
32
- },
33
- "implementationContracts": {
34
- "type": "array",
35
- "minItems": 1,
36
- "items": {
37
- "type": "string"
38
- }
39
- },
40
- "explicitEntrypoints": {
41
- "type": "array",
42
- "minItems": 1,
43
- "items": {
44
- "$ref": "#/$defs/explicitEntrypoint"
45
- }
46
- },
47
- "criticalNonExplicitTests": {
48
- "type": "array",
49
- "items": {
50
- "$ref": "#/$defs/nonExplicitTest"
51
- }
52
- },
53
- "supportingNonExplicitTests": {
54
- "type": "array",
55
- "items": {
56
- "$ref": "#/$defs/nonExplicitTest"
57
- }
58
- },
59
- "expectedFailureRecordsPath": {
60
- "type": "string"
61
- },
62
- "codingTargets": {
63
- "type": "array",
64
- "minItems": 1,
65
- "items": {
66
- "$ref": "#/$defs/codingTarget"
67
- }
68
- },
69
- "taskExecutionPlan": {
70
- "$ref": "#/$defs/taskExecutionPlan"
71
- },
72
- "frozenFiles": {
73
- "type": "array",
74
- "minItems": 1,
75
- "items": {
76
- "type": "string"
77
- }
78
- },
79
- "openGaps": {
80
- "type": "array",
81
- "items": {
82
- "type": "string"
83
- }
84
- }
85
- },
86
- "$defs": {
87
- "explicitEntrypoint": {
88
- "type": "object",
89
- "additionalProperties": false,
90
- "required": [
91
- "testcaseName",
92
- "entryPath",
93
- "controlPoint",
94
- "observationPoint",
95
- "initialExecutionStatus",
96
- "initialExecutionCommand"
97
- ],
98
- "properties": {
99
- "testcaseName": {
100
- "type": "string"
101
- },
102
- "entryPath": {
103
- "type": "string"
104
- },
105
- "controlPoint": {
106
- "type": "string"
107
- },
108
- "observationPoint": {
109
- "type": "string"
110
- },
111
- "initialExecutionStatus": {
112
- "type": "string",
113
- "enum": [
114
- "passed",
115
- "failed"
116
- ]
117
- },
118
- "initialExecutionCommand": {
119
- "type": "string"
120
- },
121
- "failureReason": {
122
- "type": "string"
123
- }
124
- }
125
- },
126
- "nonExplicitTest": {
127
- "type": "object",
128
- "additionalProperties": false,
129
- "required": [
130
- "path",
131
- "controlPoint",
132
- "observationPoint"
133
- ],
134
- "properties": {
135
- "name": {
136
- "type": "string"
137
- },
138
- "path": {
139
- "type": "string"
140
- },
141
- "kind": {
142
- "type": "string"
143
- },
144
- "controlPoint": {
145
- "type": "string"
146
- },
147
- "observationPoint": {
148
- "type": "string"
149
- },
150
- "expectedStatus": {
151
- "type": "string",
152
- "enum": [
153
- "passed",
154
- "failed"
155
- ]
156
- }
157
- }
158
- },
159
- "codingTarget": {
160
- "type": "object",
161
- "additionalProperties": false,
162
- "required": [
163
- "failureSignal",
164
- "nextAction"
165
- ],
166
- "properties": {
167
- "testcaseName": {
168
- "type": "string"
169
- },
170
- "path": {
171
- "type": "string"
172
- },
173
- "failureSignal": {
174
- "type": "string"
175
- },
176
- "nextAction": {
177
- "type": "string"
178
- }
179
- }
180
- },
181
- "taskExecutionPlan": {
182
- "type": "object",
183
- "additionalProperties": false,
184
- "required": [
185
- "executionStrategy",
186
- "tasks"
187
- ],
188
- "properties": {
189
- "executionStrategy": {
190
- "type": "string"
191
- },
192
- "tasks": {
193
- "type": "array",
194
- "minItems": 1,
195
- "items": {
196
- "$ref": "#/$defs/codingTask"
197
- }
198
- }
199
- }
200
- },
201
- "codingTask": {
202
- "type": "object",
203
- "additionalProperties": false,
204
- "required": [
205
- "taskId",
206
- "title",
207
- "objective",
208
- "steps",
209
- "completionSignal"
210
- ],
211
- "properties": {
212
- "taskId": {
213
- "type": "string"
214
- },
215
- "title": {
216
- "type": "string"
217
- },
218
- "objective": {
219
- "type": "string"
220
- },
221
- "dependsOn": {
222
- "type": "array",
223
- "items": {
224
- "type": "string"
225
- }
226
- },
227
- "relatedTestcases": {
228
- "type": "array",
229
- "items": {
230
- "type": "string"
231
- }
232
- },
233
- "targetPaths": {
234
- "type": "array",
235
- "items": {
236
- "type": "string"
237
- }
238
- },
239
- "steps": {
240
- "type": "array",
241
- "minItems": 1,
242
- "items": {
243
- "type": "string"
244
- }
245
- },
246
- "completionSignal": {
247
- "type": "string"
248
- }
249
- }
250
- }
251
- }
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "./.argo/schema/ImplementationToCodingHandoff.schema.json",
4
+ "title": "Implementation To Coding Handoff Schema",
5
+ "type": "object",
6
+ "additionalProperties": false,
7
+ "required": [
8
+ "stage",
9
+ "generatedAt",
10
+ "sourceIntentGraphPath",
11
+ "implementationContracts",
12
+ "explicitEntrypoints",
13
+ "criticalNonExplicitTests",
14
+ "expectedFailureRecordsPath",
15
+ "codingTargets",
16
+ "taskExecutionPlan",
17
+ "frozenFiles"
18
+ ],
19
+ "properties": {
20
+ "stage": {
21
+ "type": "string",
22
+ "const": "implementation-to-coding"
23
+ },
24
+ "generatedAt": {
25
+ "type": "string"
26
+ },
27
+ "sourceIntentGraphPath": {
28
+ "type": "string"
29
+ },
30
+ "summary": {
31
+ "type": "string"
32
+ },
33
+ "implementationContracts": {
34
+ "type": "array",
35
+ "minItems": 1,
36
+ "items": {
37
+ "type": "string"
38
+ }
39
+ },
40
+ "explicitEntrypoints": {
41
+ "type": "array",
42
+ "minItems": 1,
43
+ "items": {
44
+ "$ref": "#/$defs/explicitEntrypoint"
45
+ }
46
+ },
47
+ "criticalNonExplicitTests": {
48
+ "type": "array",
49
+ "items": {
50
+ "$ref": "#/$defs/nonExplicitTest"
51
+ }
52
+ },
53
+ "supportingNonExplicitTests": {
54
+ "type": "array",
55
+ "items": {
56
+ "$ref": "#/$defs/nonExplicitTest"
57
+ }
58
+ },
59
+ "expectedFailureRecordsPath": {
60
+ "type": "string"
61
+ },
62
+ "codingTargets": {
63
+ "type": "array",
64
+ "minItems": 1,
65
+ "items": {
66
+ "$ref": "#/$defs/codingTarget"
67
+ }
68
+ },
69
+ "taskExecutionPlan": {
70
+ "$ref": "#/$defs/taskExecutionPlan"
71
+ },
72
+ "frozenFiles": {
73
+ "type": "array",
74
+ "minItems": 1,
75
+ "items": {
76
+ "type": "string"
77
+ }
78
+ },
79
+ "openGaps": {
80
+ "type": "array",
81
+ "items": {
82
+ "type": "string"
83
+ }
84
+ }
85
+ },
86
+ "$defs": {
87
+ "explicitEntrypoint": {
88
+ "type": "object",
89
+ "additionalProperties": false,
90
+ "required": [
91
+ "testcaseName",
92
+ "entryPath",
93
+ "controlPoint",
94
+ "observationPoint",
95
+ "initialExecutionStatus",
96
+ "initialExecutionCommand"
97
+ ],
98
+ "properties": {
99
+ "testcaseName": {
100
+ "type": "string"
101
+ },
102
+ "entryPath": {
103
+ "type": "string"
104
+ },
105
+ "controlPoint": {
106
+ "type": "string"
107
+ },
108
+ "observationPoint": {
109
+ "type": "string"
110
+ },
111
+ "initialExecutionStatus": {
112
+ "type": "string",
113
+ "enum": [
114
+ "passed",
115
+ "failed"
116
+ ]
117
+ },
118
+ "initialExecutionCommand": {
119
+ "type": "string"
120
+ },
121
+ "failureReason": {
122
+ "type": "string"
123
+ }
124
+ }
125
+ },
126
+ "nonExplicitTest": {
127
+ "type": "object",
128
+ "additionalProperties": false,
129
+ "required": [
130
+ "path",
131
+ "controlPoint",
132
+ "observationPoint"
133
+ ],
134
+ "properties": {
135
+ "name": {
136
+ "type": "string"
137
+ },
138
+ "path": {
139
+ "type": "string"
140
+ },
141
+ "kind": {
142
+ "type": "string"
143
+ },
144
+ "controlPoint": {
145
+ "type": "string"
146
+ },
147
+ "observationPoint": {
148
+ "type": "string"
149
+ },
150
+ "expectedStatus": {
151
+ "type": "string",
152
+ "enum": [
153
+ "passed",
154
+ "failed"
155
+ ]
156
+ }
157
+ }
158
+ },
159
+ "codingTarget": {
160
+ "type": "object",
161
+ "additionalProperties": false,
162
+ "required": [
163
+ "failureSignal",
164
+ "nextAction"
165
+ ],
166
+ "properties": {
167
+ "testcaseName": {
168
+ "type": "string"
169
+ },
170
+ "path": {
171
+ "type": "string"
172
+ },
173
+ "failureSignal": {
174
+ "type": "string"
175
+ },
176
+ "nextAction": {
177
+ "type": "string"
178
+ }
179
+ }
180
+ },
181
+ "taskExecutionPlan": {
182
+ "type": "object",
183
+ "additionalProperties": false,
184
+ "required": [
185
+ "executionStrategy",
186
+ "tasks"
187
+ ],
188
+ "properties": {
189
+ "executionStrategy": {
190
+ "type": "string"
191
+ },
192
+ "tasks": {
193
+ "type": "array",
194
+ "minItems": 1,
195
+ "items": {
196
+ "$ref": "#/$defs/codingTask"
197
+ }
198
+ }
199
+ }
200
+ },
201
+ "codingTask": {
202
+ "type": "object",
203
+ "additionalProperties": false,
204
+ "required": [
205
+ "taskId",
206
+ "title",
207
+ "objective",
208
+ "steps",
209
+ "completionSignal"
210
+ ],
211
+ "properties": {
212
+ "taskId": {
213
+ "type": "string"
214
+ },
215
+ "title": {
216
+ "type": "string"
217
+ },
218
+ "objective": {
219
+ "type": "string"
220
+ },
221
+ "dependsOn": {
222
+ "type": "array",
223
+ "items": {
224
+ "type": "string"
225
+ }
226
+ },
227
+ "relatedTestcases": {
228
+ "type": "array",
229
+ "items": {
230
+ "type": "string"
231
+ }
232
+ },
233
+ "targetPaths": {
234
+ "type": "array",
235
+ "items": {
236
+ "type": "string"
237
+ }
238
+ },
239
+ "steps": {
240
+ "type": "array",
241
+ "minItems": 1,
242
+ "items": {
243
+ "type": "string"
244
+ }
245
+ },
246
+ "completionSignal": {
247
+ "type": "string"
248
+ }
249
+ }
250
+ }
251
+ }
252
252
  }