@almadar/std 3.4.2 → 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-audio.orb +232 -6
- package/behaviors/exports/atoms/std-game-canvas3d.orb +172 -15
- package/behaviors/exports/atoms/std-sprite.orb +165 -17
- 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-audio.orb +232 -6
- package/dist/behaviors/exports/atoms/std-game-canvas3d.orb +172 -15
- package/dist/behaviors/exports/atoms/std-sprite.orb +165 -17
- 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 +179 -19
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.js +179 -19
- 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-audio.orb +232 -6
- package/dist/exports/atoms/std-game-canvas3d.orb +172 -15
- package/dist/exports/atoms/std-sprite.orb +165 -17
- 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 +179 -19
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
{
|
|
52
52
|
"name": "spritesheet",
|
|
53
53
|
"type": "string",
|
|
54
|
-
"default": ""
|
|
54
|
+
"default": "https://almadar-kflow-assets.web.app/shared/sprite-sheets/amir-sprite-sheet-se.png"
|
|
55
55
|
}
|
|
56
56
|
]
|
|
57
57
|
},
|
|
@@ -102,14 +102,88 @@
|
|
|
102
102
|
"render-ui",
|
|
103
103
|
"main",
|
|
104
104
|
{
|
|
105
|
-
"type": "
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
105
|
+
"type": "stack",
|
|
106
|
+
"direction": "vertical",
|
|
107
|
+
"gap": "md",
|
|
108
|
+
"children": [
|
|
109
|
+
{
|
|
110
|
+
"type": "stack",
|
|
111
|
+
"direction": "horizontal",
|
|
112
|
+
"gap": "sm",
|
|
113
|
+
"align": "center",
|
|
114
|
+
"children": [
|
|
115
|
+
{
|
|
116
|
+
"type": "icon",
|
|
117
|
+
"name": "image",
|
|
118
|
+
"size": "lg"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"type": "typography",
|
|
122
|
+
"content": "SpriteEntity Sprite",
|
|
123
|
+
"variant": "h2"
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"type": "divider"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"type": "box",
|
|
132
|
+
"className": "relative bg-gray-900 rounded-lg overflow-hidden",
|
|
133
|
+
"style": {
|
|
134
|
+
"width": "256px",
|
|
135
|
+
"height": "256px",
|
|
136
|
+
"margin": "0 auto"
|
|
137
|
+
},
|
|
138
|
+
"children": [
|
|
139
|
+
{
|
|
140
|
+
"type": "sprite",
|
|
141
|
+
"spritesheet": "@SpriteEntity.spritesheet",
|
|
142
|
+
"frameWidth": 64,
|
|
143
|
+
"frameHeight": 64,
|
|
144
|
+
"frame": "@SpriteEntity.frame",
|
|
145
|
+
"x": 64,
|
|
146
|
+
"y": 64,
|
|
147
|
+
"scale": 1
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"type": "stack",
|
|
153
|
+
"direction": "horizontal",
|
|
154
|
+
"gap": "md",
|
|
155
|
+
"justify": "center",
|
|
156
|
+
"children": [
|
|
157
|
+
{
|
|
158
|
+
"type": "typography",
|
|
159
|
+
"content": "Frame: ",
|
|
160
|
+
"variant": "caption",
|
|
161
|
+
"color": "muted"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"type": "badge",
|
|
165
|
+
"content": "@SpriteEntity.frame",
|
|
166
|
+
"variant": "default"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"type": "typography",
|
|
170
|
+
"content": "Position: ",
|
|
171
|
+
"variant": "caption",
|
|
172
|
+
"color": "muted"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"type": "badge",
|
|
176
|
+
"content": [
|
|
177
|
+
"concat",
|
|
178
|
+
"@SpriteEntity.x",
|
|
179
|
+
",",
|
|
180
|
+
"@SpriteEntity.y"
|
|
181
|
+
],
|
|
182
|
+
"variant": "default"
|
|
183
|
+
}
|
|
184
|
+
]
|
|
185
|
+
}
|
|
186
|
+
]
|
|
113
187
|
}
|
|
114
188
|
]
|
|
115
189
|
]
|
|
@@ -123,14 +197,88 @@
|
|
|
123
197
|
"render-ui",
|
|
124
198
|
"main",
|
|
125
199
|
{
|
|
126
|
-
"type": "
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
200
|
+
"type": "stack",
|
|
201
|
+
"direction": "vertical",
|
|
202
|
+
"gap": "md",
|
|
203
|
+
"children": [
|
|
204
|
+
{
|
|
205
|
+
"type": "stack",
|
|
206
|
+
"direction": "horizontal",
|
|
207
|
+
"gap": "sm",
|
|
208
|
+
"align": "center",
|
|
209
|
+
"children": [
|
|
210
|
+
{
|
|
211
|
+
"type": "icon",
|
|
212
|
+
"name": "image",
|
|
213
|
+
"size": "lg"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"type": "typography",
|
|
217
|
+
"content": "SpriteEntity Sprite",
|
|
218
|
+
"variant": "h2"
|
|
219
|
+
}
|
|
220
|
+
]
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"type": "divider"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"type": "box",
|
|
227
|
+
"className": "relative bg-gray-900 rounded-lg overflow-hidden",
|
|
228
|
+
"style": {
|
|
229
|
+
"width": "256px",
|
|
230
|
+
"height": "256px",
|
|
231
|
+
"margin": "0 auto"
|
|
232
|
+
},
|
|
233
|
+
"children": [
|
|
234
|
+
{
|
|
235
|
+
"type": "sprite",
|
|
236
|
+
"spritesheet": "@SpriteEntity.spritesheet",
|
|
237
|
+
"frameWidth": 64,
|
|
238
|
+
"frameHeight": 64,
|
|
239
|
+
"frame": "@SpriteEntity.frame",
|
|
240
|
+
"x": 64,
|
|
241
|
+
"y": 64,
|
|
242
|
+
"scale": 1
|
|
243
|
+
}
|
|
244
|
+
]
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"type": "stack",
|
|
248
|
+
"direction": "horizontal",
|
|
249
|
+
"gap": "md",
|
|
250
|
+
"justify": "center",
|
|
251
|
+
"children": [
|
|
252
|
+
{
|
|
253
|
+
"type": "typography",
|
|
254
|
+
"content": "Frame: ",
|
|
255
|
+
"variant": "caption",
|
|
256
|
+
"color": "muted"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"type": "badge",
|
|
260
|
+
"content": "@SpriteEntity.frame",
|
|
261
|
+
"variant": "default"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"type": "typography",
|
|
265
|
+
"content": "Position: ",
|
|
266
|
+
"variant": "caption",
|
|
267
|
+
"color": "muted"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"type": "badge",
|
|
271
|
+
"content": [
|
|
272
|
+
"concat",
|
|
273
|
+
"@SpriteEntity.x",
|
|
274
|
+
",",
|
|
275
|
+
"@SpriteEntity.y"
|
|
276
|
+
],
|
|
277
|
+
"variant": "default"
|
|
278
|
+
}
|
|
279
|
+
]
|
|
280
|
+
}
|
|
281
|
+
]
|
|
134
282
|
}
|
|
135
283
|
]
|
|
136
284
|
]
|
|
@@ -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
|
]
|