@almadar/std 3.4.3 → 3.4.4
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/behaviors/exports/atoms/std-autoregressive.orb +419 -0
- package/behaviors/exports/atoms/std-browse.orb +72 -0
- package/behaviors/exports/atoms/std-circuit-breaker.orb +12 -0
- package/behaviors/exports/atoms/std-combat-log.orb +112 -0
- package/behaviors/exports/atoms/std-game-canvas3d.orb +172 -15
- package/behaviors/exports/organisms/std-api-gateway.orb +12 -0
- package/behaviors/exports/organisms/std-devops-dashboard.orb +12 -0
- package/behaviors/exports/organisms/std-iot-dashboard.orb +12 -0
- package/behaviors/exports/validation-report.json +2 -2
- package/dist/behaviors/exports/atoms/std-autoregressive.orb +419 -0
- package/dist/behaviors/exports/atoms/std-browse.orb +72 -0
- package/dist/behaviors/exports/atoms/std-circuit-breaker.orb +12 -0
- package/dist/behaviors/exports/atoms/std-combat-log.orb +112 -0
- package/dist/behaviors/exports/atoms/std-game-canvas3d.orb +172 -15
- package/dist/behaviors/exports/organisms/std-api-gateway.orb +12 -0
- package/dist/behaviors/exports/organisms/std-devops-dashboard.orb +12 -0
- package/dist/behaviors/exports/organisms/std-iot-dashboard.orb +12 -0
- package/dist/behaviors/exports/validation-report.json +2 -2
- package/dist/behaviors/functions/index.js +62 -7
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.js +62 -7
- package/dist/behaviors/index.js.map +1 -1
- package/dist/exports/atoms/std-autoregressive.orb +419 -0
- package/dist/exports/atoms/std-browse.orb +72 -0
- package/dist/exports/atoms/std-circuit-breaker.orb +12 -0
- package/dist/exports/atoms/std-combat-log.orb +112 -0
- package/dist/exports/atoms/std-game-canvas3d.orb +172 -15
- package/dist/exports/organisms/std-api-gateway.orb +12 -0
- package/dist/exports/organisms/std-devops-dashboard.orb +12 -0
- package/dist/exports/organisms/std-iot-dashboard.orb +12 -0
- package/dist/exports/validation-report.json +2 -2
- package/dist/index.js +62 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -32,6 +32,58 @@
|
|
|
32
32
|
{
|
|
33
33
|
"name": "createdAt",
|
|
34
34
|
"type": "string"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "tiles",
|
|
38
|
+
"type": "array",
|
|
39
|
+
"default": []
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "units",
|
|
43
|
+
"type": "array",
|
|
44
|
+
"default": []
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "features",
|
|
48
|
+
"type": "array",
|
|
49
|
+
"default": []
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"instances": [
|
|
53
|
+
{
|
|
54
|
+
"id": "scene-1",
|
|
55
|
+
"name": "Battle Arena",
|
|
56
|
+
"description": "A 3D battle arena",
|
|
57
|
+
"status": "active",
|
|
58
|
+
"createdAt": "2026-01-01",
|
|
59
|
+
"tiles": [
|
|
60
|
+
{
|
|
61
|
+
"x": 0,
|
|
62
|
+
"y": 0,
|
|
63
|
+
"z": 0,
|
|
64
|
+
"type": "grass"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"x": 1,
|
|
68
|
+
"y": 0,
|
|
69
|
+
"z": 0,
|
|
70
|
+
"type": "grass"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"x": 0,
|
|
74
|
+
"y": 0,
|
|
75
|
+
"z": 1,
|
|
76
|
+
"type": "stone"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"x": 1,
|
|
80
|
+
"y": 0,
|
|
81
|
+
"z": 1,
|
|
82
|
+
"type": "water"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"units": [],
|
|
86
|
+
"features": []
|
|
35
87
|
}
|
|
36
88
|
]
|
|
37
89
|
},
|
|
@@ -97,9 +149,30 @@
|
|
|
97
149
|
"main",
|
|
98
150
|
{
|
|
99
151
|
"type": "game-canvas3-d",
|
|
100
|
-
"tiles":
|
|
101
|
-
|
|
102
|
-
|
|
152
|
+
"tiles": [
|
|
153
|
+
"object/get",
|
|
154
|
+
[
|
|
155
|
+
"array/first",
|
|
156
|
+
"@Canvas3dScene"
|
|
157
|
+
],
|
|
158
|
+
"tiles"
|
|
159
|
+
],
|
|
160
|
+
"units": [
|
|
161
|
+
"object/get",
|
|
162
|
+
[
|
|
163
|
+
"array/first",
|
|
164
|
+
"@Canvas3dScene"
|
|
165
|
+
],
|
|
166
|
+
"units"
|
|
167
|
+
],
|
|
168
|
+
"features": [
|
|
169
|
+
"object/get",
|
|
170
|
+
[
|
|
171
|
+
"array/first",
|
|
172
|
+
"@Canvas3dScene"
|
|
173
|
+
],
|
|
174
|
+
"features"
|
|
175
|
+
],
|
|
103
176
|
"orientation": "isometric",
|
|
104
177
|
"cameraMode": "orbital",
|
|
105
178
|
"showGrid": true,
|
|
@@ -121,9 +194,30 @@
|
|
|
121
194
|
"main",
|
|
122
195
|
{
|
|
123
196
|
"type": "game-canvas3-d",
|
|
124
|
-
"tiles":
|
|
125
|
-
|
|
126
|
-
|
|
197
|
+
"tiles": [
|
|
198
|
+
"object/get",
|
|
199
|
+
[
|
|
200
|
+
"array/first",
|
|
201
|
+
"@Canvas3dScene"
|
|
202
|
+
],
|
|
203
|
+
"tiles"
|
|
204
|
+
],
|
|
205
|
+
"units": [
|
|
206
|
+
"object/get",
|
|
207
|
+
[
|
|
208
|
+
"array/first",
|
|
209
|
+
"@Canvas3dScene"
|
|
210
|
+
],
|
|
211
|
+
"units"
|
|
212
|
+
],
|
|
213
|
+
"features": [
|
|
214
|
+
"object/get",
|
|
215
|
+
[
|
|
216
|
+
"array/first",
|
|
217
|
+
"@Canvas3dScene"
|
|
218
|
+
],
|
|
219
|
+
"features"
|
|
220
|
+
],
|
|
127
221
|
"orientation": "isometric",
|
|
128
222
|
"cameraMode": "orbital",
|
|
129
223
|
"showGrid": true,
|
|
@@ -145,9 +239,30 @@
|
|
|
145
239
|
"main",
|
|
146
240
|
{
|
|
147
241
|
"type": "game-canvas3-d",
|
|
148
|
-
"tiles":
|
|
149
|
-
|
|
150
|
-
|
|
242
|
+
"tiles": [
|
|
243
|
+
"object/get",
|
|
244
|
+
[
|
|
245
|
+
"array/first",
|
|
246
|
+
"@Canvas3dScene"
|
|
247
|
+
],
|
|
248
|
+
"tiles"
|
|
249
|
+
],
|
|
250
|
+
"units": [
|
|
251
|
+
"object/get",
|
|
252
|
+
[
|
|
253
|
+
"array/first",
|
|
254
|
+
"@Canvas3dScene"
|
|
255
|
+
],
|
|
256
|
+
"units"
|
|
257
|
+
],
|
|
258
|
+
"features": [
|
|
259
|
+
"object/get",
|
|
260
|
+
[
|
|
261
|
+
"array/first",
|
|
262
|
+
"@Canvas3dScene"
|
|
263
|
+
],
|
|
264
|
+
"features"
|
|
265
|
+
],
|
|
151
266
|
"orientation": "isometric",
|
|
152
267
|
"cameraMode": "orbital",
|
|
153
268
|
"showGrid": true,
|
|
@@ -169,9 +284,30 @@
|
|
|
169
284
|
"main",
|
|
170
285
|
{
|
|
171
286
|
"type": "game-canvas3-d",
|
|
172
|
-
"tiles":
|
|
173
|
-
|
|
174
|
-
|
|
287
|
+
"tiles": [
|
|
288
|
+
"object/get",
|
|
289
|
+
[
|
|
290
|
+
"array/first",
|
|
291
|
+
"@Canvas3dScene"
|
|
292
|
+
],
|
|
293
|
+
"tiles"
|
|
294
|
+
],
|
|
295
|
+
"units": [
|
|
296
|
+
"object/get",
|
|
297
|
+
[
|
|
298
|
+
"array/first",
|
|
299
|
+
"@Canvas3dScene"
|
|
300
|
+
],
|
|
301
|
+
"units"
|
|
302
|
+
],
|
|
303
|
+
"features": [
|
|
304
|
+
"object/get",
|
|
305
|
+
[
|
|
306
|
+
"array/first",
|
|
307
|
+
"@Canvas3dScene"
|
|
308
|
+
],
|
|
309
|
+
"features"
|
|
310
|
+
],
|
|
175
311
|
"orientation": "isometric",
|
|
176
312
|
"cameraMode": "orbital",
|
|
177
313
|
"showGrid": true,
|
|
@@ -193,9 +329,30 @@
|
|
|
193
329
|
"main",
|
|
194
330
|
{
|
|
195
331
|
"type": "game-canvas3-d",
|
|
196
|
-
"tiles":
|
|
197
|
-
|
|
198
|
-
|
|
332
|
+
"tiles": [
|
|
333
|
+
"object/get",
|
|
334
|
+
[
|
|
335
|
+
"array/first",
|
|
336
|
+
"@Canvas3dScene"
|
|
337
|
+
],
|
|
338
|
+
"tiles"
|
|
339
|
+
],
|
|
340
|
+
"units": [
|
|
341
|
+
"object/get",
|
|
342
|
+
[
|
|
343
|
+
"array/first",
|
|
344
|
+
"@Canvas3dScene"
|
|
345
|
+
],
|
|
346
|
+
"units"
|
|
347
|
+
],
|
|
348
|
+
"features": [
|
|
349
|
+
"object/get",
|
|
350
|
+
[
|
|
351
|
+
"array/first",
|
|
352
|
+
"@Canvas3dScene"
|
|
353
|
+
],
|
|
354
|
+
"features"
|
|
355
|
+
],
|
|
199
356
|
"orientation": "isometric",
|
|
200
357
|
"cameraMode": "orbital",
|
|
201
358
|
"showGrid": true,
|
|
@@ -1425,6 +1425,18 @@
|
|
|
1425
1425
|
"type": "number",
|
|
1426
1426
|
"default": 5
|
|
1427
1427
|
}
|
|
1428
|
+
],
|
|
1429
|
+
"instances": [
|
|
1430
|
+
{
|
|
1431
|
+
"id": "sn-1",
|
|
1432
|
+
"name": "ServiceNode",
|
|
1433
|
+
"description": "Primary API gateway",
|
|
1434
|
+
"status": "active",
|
|
1435
|
+
"createdAt": "2026-01-10",
|
|
1436
|
+
"failureCount": 783,
|
|
1437
|
+
"successCount": 603,
|
|
1438
|
+
"threshold": 5
|
|
1439
|
+
}
|
|
1428
1440
|
]
|
|
1429
1441
|
},
|
|
1430
1442
|
"traits": [
|
|
@@ -51,6 +51,18 @@
|
|
|
51
51
|
"type": "number",
|
|
52
52
|
"default": 5
|
|
53
53
|
}
|
|
54
|
+
],
|
|
55
|
+
"instances": [
|
|
56
|
+
{
|
|
57
|
+
"id": "sn-1",
|
|
58
|
+
"name": "ServiceNode",
|
|
59
|
+
"description": "Primary API gateway",
|
|
60
|
+
"status": "active",
|
|
61
|
+
"createdAt": "2026-01-10",
|
|
62
|
+
"failureCount": 783,
|
|
63
|
+
"successCount": 603,
|
|
64
|
+
"threshold": 5
|
|
65
|
+
}
|
|
54
66
|
]
|
|
55
67
|
},
|
|
56
68
|
"traits": [
|
|
@@ -3098,6 +3098,18 @@
|
|
|
3098
3098
|
"type": "number",
|
|
3099
3099
|
"default": 5
|
|
3100
3100
|
}
|
|
3101
|
+
],
|
|
3102
|
+
"instances": [
|
|
3103
|
+
{
|
|
3104
|
+
"id": "sn-1",
|
|
3105
|
+
"name": "ServiceNode",
|
|
3106
|
+
"description": "Primary API gateway",
|
|
3107
|
+
"status": "active",
|
|
3108
|
+
"createdAt": "2026-01-10",
|
|
3109
|
+
"failureCount": 783,
|
|
3110
|
+
"successCount": 603,
|
|
3111
|
+
"threshold": 5
|
|
3112
|
+
}
|
|
3101
3113
|
]
|
|
3102
3114
|
},
|
|
3103
3115
|
"traits": [
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
|
-
"name": "std-
|
|
3
|
+
"name": "std-combat-log",
|
|
4
4
|
"errors": 0,
|
|
5
5
|
"warnings": 0,
|
|
6
6
|
"output": [
|
|
7
7
|
"Loaded 22 services from packages/almadar-patterns/src/services-registry.json",
|
|
8
|
-
"Validating schema: /home/osamah/kflow.ai.builder/packages/almadar-std/behaviors/exports/atoms/std-
|
|
8
|
+
"Validating schema: /home/osamah/kflow.ai.builder/packages/almadar-std/behaviors/exports/atoms/std-combat-log.orb"
|
|
9
9
|
]
|
|
10
10
|
}
|
|
11
11
|
]
|