@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
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "AutoregressiveOrbital",
|
|
3
|
+
"orbitals": [
|
|
4
|
+
{
|
|
5
|
+
"name": "AutoregressiveOrbital",
|
|
6
|
+
"entity": {
|
|
7
|
+
"name": "Autoregressive",
|
|
8
|
+
"persistence": "runtime",
|
|
9
|
+
"fields": [
|
|
10
|
+
{
|
|
11
|
+
"name": "id",
|
|
12
|
+
"type": "string",
|
|
13
|
+
"default": ""
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "generatedTokens",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"default": ""
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "tokenCount",
|
|
22
|
+
"type": "number",
|
|
23
|
+
"default": 0
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "lastToken",
|
|
27
|
+
"type": "number",
|
|
28
|
+
"default": -1
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "genStatus",
|
|
32
|
+
"type": "string",
|
|
33
|
+
"default": "idle"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "prompt",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"default": ""
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"traits": [
|
|
43
|
+
{
|
|
44
|
+
"name": "AutoregressiveAutoregressive",
|
|
45
|
+
"linkedEntity": "Autoregressive",
|
|
46
|
+
"category": "interaction",
|
|
47
|
+
"emits": [
|
|
48
|
+
{
|
|
49
|
+
"event": "GENERATION_COMPLETE",
|
|
50
|
+
"scope": "external"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"stateMachine": {
|
|
54
|
+
"states": [
|
|
55
|
+
{
|
|
56
|
+
"name": "idle",
|
|
57
|
+
"isInitial": true
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "generating"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"events": [
|
|
64
|
+
{
|
|
65
|
+
"key": "INIT",
|
|
66
|
+
"name": "Initialize"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"key": "GENERATE",
|
|
70
|
+
"name": "Generate"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"key": "TOKEN_READY",
|
|
74
|
+
"name": "Token Ready"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"transitions": [
|
|
78
|
+
{
|
|
79
|
+
"from": "idle",
|
|
80
|
+
"to": "idle",
|
|
81
|
+
"event": "INIT",
|
|
82
|
+
"effects": [
|
|
83
|
+
[
|
|
84
|
+
"set",
|
|
85
|
+
"@entity.genStatus",
|
|
86
|
+
"idle"
|
|
87
|
+
],
|
|
88
|
+
[
|
|
89
|
+
"set",
|
|
90
|
+
"@entity.generatedTokens",
|
|
91
|
+
""
|
|
92
|
+
],
|
|
93
|
+
[
|
|
94
|
+
"set",
|
|
95
|
+
"@entity.tokenCount",
|
|
96
|
+
0
|
|
97
|
+
],
|
|
98
|
+
[
|
|
99
|
+
"render-ui",
|
|
100
|
+
"main",
|
|
101
|
+
{
|
|
102
|
+
"type": "stack",
|
|
103
|
+
"direction": "vertical",
|
|
104
|
+
"gap": "lg",
|
|
105
|
+
"align": "center",
|
|
106
|
+
"children": [
|
|
107
|
+
{
|
|
108
|
+
"type": "stack",
|
|
109
|
+
"direction": "horizontal",
|
|
110
|
+
"gap": "sm",
|
|
111
|
+
"align": "center",
|
|
112
|
+
"children": [
|
|
113
|
+
{
|
|
114
|
+
"type": "icon",
|
|
115
|
+
"name": "message-square",
|
|
116
|
+
"size": "lg"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"type": "typography",
|
|
120
|
+
"content": "Autoregressive Generator",
|
|
121
|
+
"variant": "h2"
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "divider"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"type": "badge",
|
|
130
|
+
"label": "@entity.genStatus"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"type": "typography",
|
|
134
|
+
"variant": "body",
|
|
135
|
+
"color": "muted",
|
|
136
|
+
"content": "Vocab: undefined | Max length: undefined"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"type": "typography",
|
|
140
|
+
"variant": "body",
|
|
141
|
+
"content": "@entity.generatedTokens"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"type": "button",
|
|
145
|
+
"label": "Generate",
|
|
146
|
+
"event": "GENERATE",
|
|
147
|
+
"variant": "primary",
|
|
148
|
+
"icon": "play"
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"from": "idle",
|
|
157
|
+
"to": "generating",
|
|
158
|
+
"event": "GENERATE",
|
|
159
|
+
"effects": [
|
|
160
|
+
[
|
|
161
|
+
"set",
|
|
162
|
+
"@entity.genStatus",
|
|
163
|
+
"generating"
|
|
164
|
+
],
|
|
165
|
+
[
|
|
166
|
+
"set",
|
|
167
|
+
"@entity.generatedTokens",
|
|
168
|
+
""
|
|
169
|
+
],
|
|
170
|
+
[
|
|
171
|
+
"set",
|
|
172
|
+
"@entity.tokenCount",
|
|
173
|
+
0
|
|
174
|
+
],
|
|
175
|
+
[
|
|
176
|
+
"forward",
|
|
177
|
+
"primary",
|
|
178
|
+
{
|
|
179
|
+
"input": "@entity.generatedTokens",
|
|
180
|
+
"output-contract": {
|
|
181
|
+
"type": "tensor",
|
|
182
|
+
"shape": [
|
|
183
|
+
null
|
|
184
|
+
],
|
|
185
|
+
"dtype": "float32",
|
|
186
|
+
"activation": "softmax"
|
|
187
|
+
},
|
|
188
|
+
"on-complete": "TOKEN_READY"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
[
|
|
192
|
+
"render-ui",
|
|
193
|
+
"main",
|
|
194
|
+
{
|
|
195
|
+
"type": "stack",
|
|
196
|
+
"direction": "vertical",
|
|
197
|
+
"gap": "md",
|
|
198
|
+
"align": "center",
|
|
199
|
+
"children": [
|
|
200
|
+
{
|
|
201
|
+
"type": "typography",
|
|
202
|
+
"content": "Generating",
|
|
203
|
+
"variant": "h3"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"type": "progress-bar",
|
|
207
|
+
"value": "@entity.tokenCount"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"type": "typography",
|
|
211
|
+
"variant": "body",
|
|
212
|
+
"content": "@entity.generatedTokens"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"type": "typography",
|
|
216
|
+
"variant": "caption",
|
|
217
|
+
"content": "Tokens: @entity.tokenCount"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"type": "spinner",
|
|
221
|
+
"size": "sm"
|
|
222
|
+
}
|
|
223
|
+
]
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
]
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"from": "generating",
|
|
230
|
+
"to": "generating",
|
|
231
|
+
"event": "TOKEN_READY",
|
|
232
|
+
"guard": [
|
|
233
|
+
"not",
|
|
234
|
+
[
|
|
235
|
+
"or",
|
|
236
|
+
[
|
|
237
|
+
"eq",
|
|
238
|
+
"@payload.token",
|
|
239
|
+
null
|
|
240
|
+
],
|
|
241
|
+
[
|
|
242
|
+
"gte",
|
|
243
|
+
"@entity.tokenCount",
|
|
244
|
+
null
|
|
245
|
+
]
|
|
246
|
+
]
|
|
247
|
+
],
|
|
248
|
+
"effects": [
|
|
249
|
+
[
|
|
250
|
+
"set",
|
|
251
|
+
"@entity.lastToken",
|
|
252
|
+
"@payload.token"
|
|
253
|
+
],
|
|
254
|
+
[
|
|
255
|
+
"set",
|
|
256
|
+
"@entity.generatedTokens",
|
|
257
|
+
[
|
|
258
|
+
"string/concat",
|
|
259
|
+
"@entity.generatedTokens",
|
|
260
|
+
"@payload.decoded"
|
|
261
|
+
]
|
|
262
|
+
],
|
|
263
|
+
[
|
|
264
|
+
"set",
|
|
265
|
+
"@entity.tokenCount",
|
|
266
|
+
[
|
|
267
|
+
"math/add",
|
|
268
|
+
"@entity.tokenCount",
|
|
269
|
+
1
|
|
270
|
+
]
|
|
271
|
+
],
|
|
272
|
+
[
|
|
273
|
+
"forward",
|
|
274
|
+
"primary",
|
|
275
|
+
{
|
|
276
|
+
"input": "@entity.generatedTokens",
|
|
277
|
+
"output-contract": {
|
|
278
|
+
"type": "tensor",
|
|
279
|
+
"shape": [
|
|
280
|
+
null
|
|
281
|
+
],
|
|
282
|
+
"dtype": "float32",
|
|
283
|
+
"activation": "softmax"
|
|
284
|
+
},
|
|
285
|
+
"on-complete": "TOKEN_READY"
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
[
|
|
289
|
+
"render-ui",
|
|
290
|
+
"main",
|
|
291
|
+
{
|
|
292
|
+
"type": "stack",
|
|
293
|
+
"direction": "vertical",
|
|
294
|
+
"gap": "md",
|
|
295
|
+
"align": "center",
|
|
296
|
+
"children": [
|
|
297
|
+
{
|
|
298
|
+
"type": "typography",
|
|
299
|
+
"content": "Generating",
|
|
300
|
+
"variant": "h3"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"type": "progress-bar",
|
|
304
|
+
"value": "@entity.tokenCount"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"type": "typography",
|
|
308
|
+
"variant": "body",
|
|
309
|
+
"content": "@entity.generatedTokens"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"type": "typography",
|
|
313
|
+
"variant": "caption",
|
|
314
|
+
"content": "Tokens: @entity.tokenCount"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"type": "spinner",
|
|
318
|
+
"size": "sm"
|
|
319
|
+
}
|
|
320
|
+
]
|
|
321
|
+
}
|
|
322
|
+
]
|
|
323
|
+
]
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"from": "generating",
|
|
327
|
+
"to": "idle",
|
|
328
|
+
"event": "TOKEN_READY",
|
|
329
|
+
"guard": [
|
|
330
|
+
"or",
|
|
331
|
+
[
|
|
332
|
+
"eq",
|
|
333
|
+
"@payload.token",
|
|
334
|
+
null
|
|
335
|
+
],
|
|
336
|
+
[
|
|
337
|
+
"gte",
|
|
338
|
+
"@entity.tokenCount",
|
|
339
|
+
null
|
|
340
|
+
]
|
|
341
|
+
],
|
|
342
|
+
"effects": [
|
|
343
|
+
[
|
|
344
|
+
"set",
|
|
345
|
+
"@entity.genStatus",
|
|
346
|
+
"complete"
|
|
347
|
+
],
|
|
348
|
+
[
|
|
349
|
+
"set",
|
|
350
|
+
"@entity.tokenCount",
|
|
351
|
+
[
|
|
352
|
+
"math/add",
|
|
353
|
+
"@entity.tokenCount",
|
|
354
|
+
1
|
|
355
|
+
]
|
|
356
|
+
],
|
|
357
|
+
[
|
|
358
|
+
"emit",
|
|
359
|
+
"GENERATION_COMPLETE"
|
|
360
|
+
],
|
|
361
|
+
[
|
|
362
|
+
"render-ui",
|
|
363
|
+
"main",
|
|
364
|
+
{
|
|
365
|
+
"type": "stack",
|
|
366
|
+
"direction": "vertical",
|
|
367
|
+
"gap": "md",
|
|
368
|
+
"align": "center",
|
|
369
|
+
"children": [
|
|
370
|
+
{
|
|
371
|
+
"type": "icon",
|
|
372
|
+
"name": "check-circle",
|
|
373
|
+
"size": "lg"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"type": "typography",
|
|
377
|
+
"content": "Generation Complete",
|
|
378
|
+
"variant": "h3"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"type": "typography",
|
|
382
|
+
"variant": "body",
|
|
383
|
+
"content": "@entity.generatedTokens"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"type": "typography",
|
|
387
|
+
"variant": "caption",
|
|
388
|
+
"content": "Total tokens: @entity.tokenCount"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"type": "button",
|
|
392
|
+
"label": "Generate Again",
|
|
393
|
+
"event": "GENERATE",
|
|
394
|
+
"variant": "outline",
|
|
395
|
+
"icon": "refresh-cw"
|
|
396
|
+
}
|
|
397
|
+
]
|
|
398
|
+
}
|
|
399
|
+
]
|
|
400
|
+
]
|
|
401
|
+
}
|
|
402
|
+
]
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
],
|
|
406
|
+
"pages": [
|
|
407
|
+
{
|
|
408
|
+
"name": "AutoregressiveGeneratePage",
|
|
409
|
+
"path": "/autoregressives/generate",
|
|
410
|
+
"traits": [
|
|
411
|
+
{
|
|
412
|
+
"ref": "AutoregressiveAutoregressive"
|
|
413
|
+
}
|
|
414
|
+
]
|
|
415
|
+
}
|
|
416
|
+
]
|
|
417
|
+
}
|
|
418
|
+
]
|
|
419
|
+
}
|
|
@@ -33,6 +33,78 @@
|
|
|
33
33
|
"name": "createdAt",
|
|
34
34
|
"type": "string"
|
|
35
35
|
}
|
|
36
|
+
],
|
|
37
|
+
"instances": [
|
|
38
|
+
{
|
|
39
|
+
"id": "bi-1",
|
|
40
|
+
"name": "Terry Schultz",
|
|
41
|
+
"description": "Senior product designer with 8 years of experience",
|
|
42
|
+
"status": "active",
|
|
43
|
+
"createdAt": "2026-01-15"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "bi-2",
|
|
47
|
+
"name": "Dale Franey",
|
|
48
|
+
"description": "Full-stack developer specializing in React and Node.js",
|
|
49
|
+
"status": "active",
|
|
50
|
+
"createdAt": "2026-01-18"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"id": "bi-3",
|
|
54
|
+
"name": "Lorena Mayer",
|
|
55
|
+
"description": "Data analyst focused on business intelligence",
|
|
56
|
+
"status": "pending",
|
|
57
|
+
"createdAt": "2026-01-20"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "bi-4",
|
|
61
|
+
"name": "Andrea Paucek",
|
|
62
|
+
"description": "Project manager with PMP certification",
|
|
63
|
+
"status": "active",
|
|
64
|
+
"createdAt": "2026-02-01"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "bi-5",
|
|
68
|
+
"name": "Geneva Durgan",
|
|
69
|
+
"description": "UX researcher conducting user interviews",
|
|
70
|
+
"status": "inactive",
|
|
71
|
+
"createdAt": "2026-02-05"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"id": "bi-6",
|
|
75
|
+
"name": "Samantha Okuneva",
|
|
76
|
+
"description": "DevOps engineer managing cloud infrastructure",
|
|
77
|
+
"status": "active",
|
|
78
|
+
"createdAt": "2026-02-10"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": "bi-7",
|
|
82
|
+
"name": "Nelson Halby",
|
|
83
|
+
"description": "Technical writer documenting APIs",
|
|
84
|
+
"status": "active",
|
|
85
|
+
"createdAt": "2026-02-15"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "bi-8",
|
|
89
|
+
"name": "Tanya Hand",
|
|
90
|
+
"description": "QA lead overseeing test automation",
|
|
91
|
+
"status": "pending",
|
|
92
|
+
"createdAt": "2026-02-20"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "bi-9",
|
|
96
|
+
"name": "Rosemary Lind",
|
|
97
|
+
"description": "Marketing analyst tracking campaign performance",
|
|
98
|
+
"status": "active",
|
|
99
|
+
"createdAt": "2026-03-01"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "bi-10",
|
|
103
|
+
"name": "Bernadette Anderson",
|
|
104
|
+
"description": "Security engineer conducting penetration tests",
|
|
105
|
+
"status": "active",
|
|
106
|
+
"createdAt": "2026-03-05"
|
|
107
|
+
}
|
|
36
108
|
]
|
|
37
109
|
},
|
|
38
110
|
"traits": [
|
|
@@ -48,6 +48,18 @@
|
|
|
48
48
|
"type": "number",
|
|
49
49
|
"default": 5
|
|
50
50
|
}
|
|
51
|
+
],
|
|
52
|
+
"instances": [
|
|
53
|
+
{
|
|
54
|
+
"id": "sn-1",
|
|
55
|
+
"name": "ServiceNode",
|
|
56
|
+
"description": "Primary API gateway",
|
|
57
|
+
"status": "active",
|
|
58
|
+
"createdAt": "2026-01-10",
|
|
59
|
+
"failureCount": 783,
|
|
60
|
+
"successCount": 603,
|
|
61
|
+
"threshold": 5
|
|
62
|
+
}
|
|
51
63
|
]
|
|
52
64
|
},
|
|
53
65
|
"traits": [
|
|
@@ -32,6 +32,118 @@
|
|
|
32
32
|
{
|
|
33
33
|
"name": "createdAt",
|
|
34
34
|
"type": "string"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "type",
|
|
38
|
+
"type": "string",
|
|
39
|
+
"default": "attack",
|
|
40
|
+
"values": [
|
|
41
|
+
"attack",
|
|
42
|
+
"defend",
|
|
43
|
+
"heal",
|
|
44
|
+
"move",
|
|
45
|
+
"special",
|
|
46
|
+
"death",
|
|
47
|
+
"spawn"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "message",
|
|
52
|
+
"type": "string"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "timestamp",
|
|
56
|
+
"type": "number",
|
|
57
|
+
"default": 0
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "actorName",
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "targetName",
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "value",
|
|
69
|
+
"type": "number",
|
|
70
|
+
"default": 0
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "turn",
|
|
74
|
+
"type": "number",
|
|
75
|
+
"default": 1
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"instances": [
|
|
79
|
+
{
|
|
80
|
+
"id": "cl-1",
|
|
81
|
+
"name": "Attack log",
|
|
82
|
+
"description": "Warrior attacks Goblin",
|
|
83
|
+
"status": "active",
|
|
84
|
+
"createdAt": "2026-01-01",
|
|
85
|
+
"type": "attack",
|
|
86
|
+
"message": "Warrior strikes Goblin for 25 damage",
|
|
87
|
+
"timestamp": 1000,
|
|
88
|
+
"actorName": "Warrior",
|
|
89
|
+
"targetName": "Goblin",
|
|
90
|
+
"value": 25,
|
|
91
|
+
"turn": 1
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "cl-2",
|
|
95
|
+
"name": "Defend log",
|
|
96
|
+
"description": "Paladin raises shield",
|
|
97
|
+
"status": "active",
|
|
98
|
+
"createdAt": "2026-01-01",
|
|
99
|
+
"type": "defend",
|
|
100
|
+
"message": "Paladin raises shield, blocking 15 damage",
|
|
101
|
+
"timestamp": 2000,
|
|
102
|
+
"actorName": "Paladin",
|
|
103
|
+
"targetName": "Paladin",
|
|
104
|
+
"value": 15,
|
|
105
|
+
"turn": 1
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "cl-3",
|
|
109
|
+
"name": "Heal log",
|
|
110
|
+
"description": "Cleric heals Warrior",
|
|
111
|
+
"status": "active",
|
|
112
|
+
"createdAt": "2026-01-01",
|
|
113
|
+
"type": "heal",
|
|
114
|
+
"message": "Cleric heals Warrior for 30 HP",
|
|
115
|
+
"timestamp": 3000,
|
|
116
|
+
"actorName": "Cleric",
|
|
117
|
+
"targetName": "Warrior",
|
|
118
|
+
"value": 30,
|
|
119
|
+
"turn": 2
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "cl-4",
|
|
123
|
+
"name": "Special log",
|
|
124
|
+
"description": "Mage casts fireball",
|
|
125
|
+
"status": "active",
|
|
126
|
+
"createdAt": "2026-01-01",
|
|
127
|
+
"type": "special",
|
|
128
|
+
"message": "Mage casts Fireball dealing 40 AoE damage",
|
|
129
|
+
"timestamp": 4000,
|
|
130
|
+
"actorName": "Mage",
|
|
131
|
+
"targetName": "Goblin",
|
|
132
|
+
"value": 40,
|
|
133
|
+
"turn": 2
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "cl-5",
|
|
137
|
+
"name": "Move log",
|
|
138
|
+
"description": "Rogue moves to flank",
|
|
139
|
+
"status": "active",
|
|
140
|
+
"createdAt": "2026-01-01",
|
|
141
|
+
"type": "move",
|
|
142
|
+
"message": "Rogue moves to flanking position",
|
|
143
|
+
"timestamp": 5000,
|
|
144
|
+
"actorName": "Rogue",
|
|
145
|
+
"value": 0,
|
|
146
|
+
"turn": 3
|
|
35
147
|
}
|
|
36
148
|
]
|
|
37
149
|
},
|