@almadar/std 6.5.2 → 7.2.0

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 (307) hide show
  1. package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
  2. package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
  3. package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
  4. package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
  5. package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
  6. package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
  7. package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
  8. package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
  9. package/behaviors/registry/atoms/std-agent-search.orb +217 -61
  10. package/behaviors/registry/atoms/std-agent-session.orb +406 -159
  11. package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
  12. package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
  13. package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
  14. package/behaviors/registry/atoms/std-async.orb +147 -86
  15. package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
  16. package/behaviors/registry/atoms/std-browse.orb +260 -126
  17. package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
  18. package/behaviors/registry/atoms/std-calendar.orb +280 -215
  19. package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
  20. package/behaviors/registry/atoms/std-collision.orb +136 -135
  21. package/behaviors/registry/atoms/std-combat-log.orb +108 -90
  22. package/behaviors/registry/atoms/std-combat.orb +171 -98
  23. package/behaviors/registry/atoms/std-confirmation.orb +28 -300
  24. package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
  25. package/behaviors/registry/atoms/std-display.orb +491 -587
  26. package/behaviors/registry/atoms/std-drawer.orb +194 -121
  27. package/behaviors/registry/atoms/std-filter.orb +311 -326
  28. package/behaviors/registry/atoms/std-flip-card.orb +223 -177
  29. package/behaviors/registry/atoms/std-gallery.orb +130 -151
  30. package/behaviors/registry/atoms/std-game-audio.orb +133 -72
  31. package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
  32. package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
  33. package/behaviors/registry/atoms/std-game-hud.orb +87 -20
  34. package/behaviors/registry/atoms/std-game-menu.orb +32 -32
  35. package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
  36. package/behaviors/registry/atoms/std-gameflow.orb +147 -80
  37. package/behaviors/registry/atoms/std-input.orb +128 -393
  38. package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
  39. package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
  40. package/behaviors/registry/atoms/std-loading.orb +127 -126
  41. package/behaviors/registry/atoms/std-modal.orb +30 -267
  42. package/behaviors/registry/atoms/std-movement.orb +391 -292
  43. package/behaviors/registry/atoms/std-notification.orb +133 -75
  44. package/behaviors/registry/atoms/std-overworld.orb +194 -121
  45. package/behaviors/registry/atoms/std-pagination.orb +120 -53
  46. package/behaviors/registry/atoms/std-physics2d.orb +94 -93
  47. package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
  48. package/behaviors/registry/atoms/std-push.orb +172 -36
  49. package/behaviors/registry/atoms/std-quest.orb +552 -449
  50. package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
  51. package/behaviors/registry/atoms/std-rating.orb +123 -65
  52. package/behaviors/registry/atoms/std-related.orb +202 -26
  53. package/behaviors/registry/atoms/std-score-board.orb +109 -28
  54. package/behaviors/registry/atoms/std-score.orb +210 -146
  55. package/behaviors/registry/atoms/std-search.orb +265 -138
  56. package/behaviors/registry/atoms/std-selection.orb +311 -220
  57. package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
  58. package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
  59. package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
  60. package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
  61. package/behaviors/registry/atoms/std-service-email.orb +195 -107
  62. package/behaviors/registry/atoms/std-service-github.orb +216 -122
  63. package/behaviors/registry/atoms/std-service-llm.orb +204 -122
  64. package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
  65. package/behaviors/registry/atoms/std-service-redis.orb +177 -92
  66. package/behaviors/registry/atoms/std-service-storage.orb +211 -122
  67. package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
  68. package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
  69. package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
  70. package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
  71. package/behaviors/registry/atoms/std-sort.orb +284 -207
  72. package/behaviors/registry/atoms/std-sprite.orb +150 -74
  73. package/behaviors/registry/atoms/std-tabs.orb +129 -62
  74. package/behaviors/registry/atoms/std-text-effects.orb +251 -190
  75. package/behaviors/registry/atoms/std-theme.orb +193 -135
  76. package/behaviors/registry/atoms/std-timer.orb +320 -344
  77. package/behaviors/registry/atoms/std-undo.orb +278 -199
  78. package/behaviors/registry/atoms/std-upload.orb +112 -111
  79. package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
  80. package/behaviors/registry/atoms/std-wizard.orb +445 -336
  81. package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
  82. package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
  83. package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
  84. package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
  85. package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
  86. package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
  87. package/behaviors/registry/molecules/std-builder-game.orb +86 -28
  88. package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
  89. package/behaviors/registry/molecules/std-cart.orb +347 -406
  90. package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
  91. package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
  92. package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
  93. package/behaviors/registry/molecules/std-detail.orb +133 -138
  94. package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
  95. package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  96. package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
  97. package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
  98. package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
  99. package/behaviors/registry/molecules/std-geospatial.orb +175 -122
  100. package/behaviors/registry/molecules/std-inventory.orb +216 -170
  101. package/behaviors/registry/molecules/std-list.orb +280 -205
  102. package/behaviors/registry/molecules/std-messaging.orb +146 -99
  103. package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
  104. package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
  105. package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
  106. package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
  107. package/behaviors/registry/molecules/std-quiz.orb +322 -263
  108. package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
  109. package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
  110. package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
  111. package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
  112. package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
  113. package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
  114. package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
  115. package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
  116. package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
  117. package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
  118. package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
  119. package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
  120. package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
  121. package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
  122. package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
  123. package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
  124. package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
  125. package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
  126. package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
  127. package/behaviors/registry/organisms/std-cms.orb +1549 -566
  128. package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
  129. package/behaviors/registry/organisms/std-crm.orb +1997 -1014
  130. package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
  131. package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
  132. package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
  133. package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
  134. package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
  135. package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
  136. package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
  137. package/behaviors/registry/organisms/std-lms.orb +1629 -1046
  138. package/behaviors/registry/organisms/std-logic-training.orb +321 -134
  139. package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
  140. package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
  141. package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
  142. package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
  143. package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
  144. package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
  145. package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
  146. package/behaviors/registry/organisms/std-social-feed.orb +612 -252
  147. package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
  148. package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
  149. package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
  150. package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
  151. package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
  152. package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
  153. package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
  154. package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
  155. package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
  156. package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
  157. package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
  158. package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
  159. package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
  160. package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
  161. package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
  162. package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
  163. package/dist/behaviors/registry/atoms/std-async.orb +147 -86
  164. package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
  165. package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
  166. package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
  167. package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
  168. package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
  169. package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
  170. package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
  171. package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
  172. package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
  173. package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
  174. package/dist/behaviors/registry/atoms/std-display.orb +491 -587
  175. package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
  176. package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
  177. package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
  178. package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
  179. package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
  180. package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
  181. package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
  182. package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
  183. package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
  184. package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
  185. package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
  186. package/dist/behaviors/registry/atoms/std-input.orb +128 -393
  187. package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
  188. package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
  189. package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
  190. package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
  191. package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
  192. package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
  193. package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
  194. package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
  195. package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
  196. package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
  197. package/dist/behaviors/registry/atoms/std-push.orb +172 -36
  198. package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
  199. package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
  200. package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
  201. package/dist/behaviors/registry/atoms/std-related.orb +202 -26
  202. package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
  203. package/dist/behaviors/registry/atoms/std-score.orb +210 -146
  204. package/dist/behaviors/registry/atoms/std-search.orb +265 -138
  205. package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
  206. package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
  207. package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
  208. package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
  209. package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
  210. package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
  211. package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
  212. package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
  213. package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
  214. package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
  215. package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
  216. package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
  217. package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
  218. package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
  219. package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
  220. package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
  221. package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
  222. package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
  223. package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
  224. package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
  225. package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
  226. package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
  227. package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
  228. package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
  229. package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
  230. package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
  231. package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
  232. package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
  233. package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
  234. package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
  235. package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
  236. package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
  237. package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
  238. package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
  239. package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
  240. package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
  241. package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
  242. package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
  243. package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
  244. package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  245. package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
  246. package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
  247. package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
  248. package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
  249. package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
  250. package/dist/behaviors/registry/molecules/std-list.orb +280 -205
  251. package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
  252. package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
  253. package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
  254. package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
  255. package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
  256. package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
  257. package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
  258. package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
  259. package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
  260. package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
  261. package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
  262. package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
  263. package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
  264. package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
  265. package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
  266. package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
  267. package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
  268. package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
  269. package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
  270. package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
  271. package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
  272. package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
  273. package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
  274. package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
  275. package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
  276. package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
  277. package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
  278. package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
  279. package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
  280. package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
  281. package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
  282. package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
  283. package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
  284. package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
  285. package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
  286. package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
  287. package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
  288. package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
  289. package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
  290. package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
  291. package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
  292. package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
  293. package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
  294. package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
  295. package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
  296. package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
  297. package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
  298. package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
  299. package/dist/index.js +16 -4
  300. package/dist/index.js.map +1 -1
  301. package/dist/modules/core.js +16 -4
  302. package/dist/modules/core.js.map +1 -1
  303. package/dist/modules/index.js +16 -4
  304. package/dist/modules/index.js.map +1 -1
  305. package/dist/registry.js +16 -4
  306. package/dist/registry.js.map +1 -1
  307. package/package.json +2 -2
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-circuit-breaker",
3
3
  "version": "1.0.0",
4
- "description": "Circuit breaker pattern behavior: closed, open, halfOpen. Protects services from cascading failures with automatic recovery. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-circuit-breaker as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceNodeOrbital",
@@ -38,37 +38,77 @@
38
38
  {
39
39
  "name": "failureCount",
40
40
  "type": "number",
41
- "default": 0
41
+ "default": 0.0
42
42
  },
43
43
  {
44
44
  "name": "successCount",
45
45
  "type": "number",
46
- "default": 0
46
+ "default": 0.0
47
47
  },
48
48
  {
49
49
  "name": "threshold",
50
50
  "type": "number",
51
- "default": 5
52
- }
53
- ],
54
- "instances": [
55
- {
56
- "id": "sn-1",
57
- "name": "ServiceNode",
58
- "description": "Primary API gateway",
59
- "status": "active",
60
- "createdAt": "2026-01-10",
61
- "failureCount": 783,
62
- "successCount": 603,
63
- "threshold": 5
51
+ "default": 5.0
64
52
  }
65
53
  ]
66
54
  },
67
55
  "traits": [
68
56
  {
69
57
  "name": "ServiceNodeCircuitBreaker",
70
- "linkedEntity": "ServiceNode",
71
58
  "category": "interaction",
59
+ "linkedEntity": "ServiceNode",
60
+ "emits": [
61
+ {
62
+ "event": "ServiceNodeLoaded",
63
+ "description": "Fired when ServiceNode finishes loading",
64
+ "scope": "internal",
65
+ "payload": [
66
+ {
67
+ "name": "id",
68
+ "type": "string"
69
+ },
70
+ {
71
+ "name": "name",
72
+ "type": "string"
73
+ },
74
+ {
75
+ "name": "description",
76
+ "type": "string"
77
+ },
78
+ {
79
+ "name": "status",
80
+ "type": "string"
81
+ },
82
+ {
83
+ "name": "createdAt",
84
+ "type": "string"
85
+ },
86
+ {
87
+ "name": "failureCount",
88
+ "type": "number"
89
+ },
90
+ {
91
+ "name": "successCount",
92
+ "type": "number"
93
+ },
94
+ {
95
+ "name": "threshold",
96
+ "type": "number"
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "event": "ServiceNodeLoadFailed",
102
+ "description": "Fired when ServiceNode fails to load",
103
+ "scope": "internal",
104
+ "payload": [
105
+ {
106
+ "name": "message",
107
+ "type": "string"
108
+ }
109
+ ]
110
+ }
111
+ ],
72
112
  "stateMachine": {
73
113
  "states": [
74
114
  {
@@ -102,6 +142,20 @@
102
142
  {
103
143
  "key": "RESET",
104
144
  "name": "Reset"
145
+ },
146
+ {
147
+ "key": "ServiceNodeLoaded",
148
+ "name": "ServiceNode loaded"
149
+ },
150
+ {
151
+ "key": "ServiceNodeLoadFailed",
152
+ "name": "ServiceNode load failed",
153
+ "payload": [
154
+ {
155
+ "name": "message",
156
+ "type": "string"
157
+ }
158
+ ]
105
159
  }
106
160
  ],
107
161
  "transitions": [
@@ -112,64 +166,66 @@
112
166
  "effects": [
113
167
  [
114
168
  "fetch",
115
- "ServiceNode"
169
+ "ServiceNode",
170
+ {
171
+ "emit": {
172
+ "failure": "ServiceNodeLoadFailed",
173
+ "success": "ServiceNodeLoaded"
174
+ }
175
+ }
116
176
  ],
117
177
  [
118
178
  "render-ui",
119
179
  "main",
120
180
  {
121
- "type": "stack",
122
181
  "direction": "vertical",
123
182
  "gap": "lg",
183
+ "type": "stack",
124
184
  "children": [
125
185
  {
126
- "type": "stack",
127
- "direction": "horizontal",
128
186
  "gap": "md",
129
- "align": "center",
130
187
  "justify": "space-between",
131
188
  "children": [
132
189
  {
133
190
  "type": "stack",
134
- "direction": "horizontal",
135
191
  "gap": "md",
136
- "align": "center",
137
192
  "children": [
138
193
  {
194
+ "size": "lg",
139
195
  "type": "icon",
140
- "name": "shield",
141
- "size": "lg"
196
+ "name": "shield"
142
197
  },
143
198
  {
144
- "type": "typography",
145
199
  "content": "ServiceNode",
146
- "variant": "h2"
200
+ "variant": "h2",
201
+ "type": "typography"
147
202
  }
148
- ]
203
+ ],
204
+ "align": "center",
205
+ "direction": "horizontal"
149
206
  },
150
207
  {
151
- "type": "status-dot",
152
- "status": "success",
153
208
  "pulse": false,
154
- "label": "Circuit Closed"
209
+ "type": "status-dot",
210
+ "label": "Circuit Closed",
211
+ "status": "success"
155
212
  }
156
- ]
213
+ ],
214
+ "direction": "horizontal",
215
+ "type": "stack",
216
+ "align": "center"
157
217
  },
158
218
  {
159
219
  "type": "divider"
160
220
  },
161
221
  {
162
222
  "type": "alert",
163
- "variant": "success",
164
- "message": "Service is healthy. All requests are being processed."
223
+ "message": "Service is healthy. All requests are being processed.",
224
+ "variant": "success"
165
225
  },
166
226
  {
167
- "type": "simple-grid",
168
- "columns": 2,
169
227
  "children": [
170
228
  {
171
- "type": "stat-display",
172
- "label": "Failures",
173
229
  "value": [
174
230
  "object/get",
175
231
  [
@@ -177,11 +233,11 @@
177
233
  "@entity"
178
234
  ],
179
235
  "failureCount"
180
- ]
236
+ ],
237
+ "type": "stat-display",
238
+ "label": "Failures"
181
239
  },
182
240
  {
183
- "type": "stat-display",
184
- "label": "Successes",
185
241
  "value": [
186
242
  "object/get",
187
243
  [
@@ -189,28 +245,32 @@
189
245
  "@entity"
190
246
  ],
191
247
  "successCount"
192
- ]
248
+ ],
249
+ "label": "Successes",
250
+ "type": "stat-display"
193
251
  }
194
- ]
252
+ ],
253
+ "columns": 2.0,
254
+ "type": "simple-grid"
195
255
  },
196
256
  {
197
257
  "type": "meter",
198
- "value": [
258
+ "max": [
199
259
  "object/get",
200
260
  [
201
261
  "array/first",
202
262
  "@entity"
203
263
  ],
204
- "failureCount"
264
+ "threshold"
205
265
  ],
206
- "min": 0,
207
- "max": [
266
+ "min": 0.0,
267
+ "value": [
208
268
  "object/get",
209
269
  [
210
270
  "array/first",
211
271
  "@entity"
212
272
  ],
213
- "threshold"
273
+ "failureCount"
214
274
  ]
215
275
  }
216
276
  ]
@@ -227,42 +287,40 @@
227
287
  "render-ui",
228
288
  "main",
229
289
  {
230
- "type": "stack",
231
- "direction": "vertical",
232
290
  "gap": "lg",
233
291
  "children": [
234
292
  {
235
293
  "type": "stack",
236
- "direction": "horizontal",
237
294
  "gap": "md",
238
295
  "align": "center",
239
- "justify": "space-between",
296
+ "direction": "horizontal",
240
297
  "children": [
241
298
  {
242
- "type": "stack",
243
- "direction": "horizontal",
244
- "gap": "md",
245
- "align": "center",
246
299
  "children": [
247
300
  {
248
301
  "type": "icon",
249
- "name": "alert-triangle",
250
- "size": "lg"
302
+ "size": "lg",
303
+ "name": "alert-triangle"
251
304
  },
252
305
  {
253
306
  "type": "typography",
254
- "content": "ServiceNode",
255
- "variant": "h2"
307
+ "variant": "h2",
308
+ "content": "ServiceNode"
256
309
  }
257
- ]
310
+ ],
311
+ "gap": "md",
312
+ "direction": "horizontal",
313
+ "align": "center",
314
+ "type": "stack"
258
315
  },
259
316
  {
260
- "type": "status-dot",
261
- "status": "error",
262
317
  "pulse": true,
263
- "label": "Circuit Open"
318
+ "type": "status-dot",
319
+ "label": "Circuit Open",
320
+ "status": "error"
264
321
  }
265
- ]
322
+ ],
323
+ "justify": "space-between"
266
324
  },
267
325
  {
268
326
  "type": "divider"
@@ -273,12 +331,10 @@
273
331
  "message": "Circuit is open. Requests are being rejected to prevent cascading failures."
274
332
  },
275
333
  {
334
+ "columns": 2.0,
276
335
  "type": "simple-grid",
277
- "columns": 2,
278
336
  "children": [
279
337
  {
280
- "type": "stat-display",
281
- "label": "Failures",
282
338
  "value": [
283
339
  "object/get",
284
340
  [
@@ -286,11 +342,11 @@
286
342
  "@entity"
287
343
  ],
288
344
  "failureCount"
289
- ]
345
+ ],
346
+ "type": "stat-display",
347
+ "label": "Failures"
290
348
  },
291
349
  {
292
- "type": "stat-display",
293
- "label": "Successes",
294
350
  "value": [
295
351
  "object/get",
296
352
  [
@@ -298,12 +354,13 @@
298
354
  "@entity"
299
355
  ],
300
356
  "successCount"
301
- ]
357
+ ],
358
+ "label": "Successes",
359
+ "type": "stat-display"
302
360
  }
303
361
  ]
304
362
  },
305
363
  {
306
- "type": "meter",
307
364
  "value": [
308
365
  "object/get",
309
366
  [
@@ -312,7 +369,6 @@
312
369
  ],
313
370
  "failureCount"
314
371
  ],
315
- "min": 0,
316
372
  "max": [
317
373
  "object/get",
318
374
  [
@@ -320,16 +376,20 @@
320
376
  "@entity"
321
377
  ],
322
378
  "threshold"
323
- ]
379
+ ],
380
+ "type": "meter",
381
+ "min": 0.0
324
382
  },
325
383
  {
326
- "type": "button",
327
- "label": "Reset",
328
384
  "event": "RESET",
385
+ "icon": "rotate-ccw",
386
+ "type": "button",
329
387
  "variant": "ghost",
330
- "icon": "rotate-ccw"
388
+ "label": "Reset"
331
389
  }
332
- ]
390
+ ],
391
+ "direction": "vertical",
392
+ "type": "stack"
333
393
  }
334
394
  ]
335
395
  ]
@@ -344,20 +404,15 @@
344
404
  "main",
345
405
  {
346
406
  "type": "stack",
347
- "direction": "vertical",
348
407
  "gap": "lg",
408
+ "direction": "vertical",
349
409
  "children": [
350
410
  {
351
- "type": "stack",
352
- "direction": "horizontal",
353
- "gap": "md",
354
- "align": "center",
355
- "justify": "space-between",
356
411
  "children": [
357
412
  {
413
+ "gap": "md",
358
414
  "type": "stack",
359
415
  "direction": "horizontal",
360
- "gap": "md",
361
416
  "align": "center",
362
417
  "children": [
363
418
  {
@@ -374,27 +429,29 @@
374
429
  },
375
430
  {
376
431
  "type": "status-dot",
377
- "status": "success",
378
432
  "pulse": false,
433
+ "status": "success",
379
434
  "label": "Circuit Closed"
380
435
  }
381
- ]
436
+ ],
437
+ "direction": "horizontal",
438
+ "gap": "md",
439
+ "type": "stack",
440
+ "justify": "space-between",
441
+ "align": "center"
382
442
  },
383
443
  {
384
444
  "type": "divider"
385
445
  },
386
446
  {
387
- "type": "alert",
388
447
  "variant": "success",
389
- "message": "Service is healthy. All requests are being processed."
448
+ "message": "Service is healthy. All requests are being processed.",
449
+ "type": "alert"
390
450
  },
391
451
  {
392
- "type": "simple-grid",
393
- "columns": 2,
394
452
  "children": [
395
453
  {
396
454
  "type": "stat-display",
397
- "label": "Failures",
398
455
  "value": [
399
456
  "object/get",
400
457
  [
@@ -402,7 +459,8 @@
402
459
  "@entity"
403
460
  ],
404
461
  "failureCount"
405
- ]
462
+ ],
463
+ "label": "Failures"
406
464
  },
407
465
  {
408
466
  "type": "stat-display",
@@ -416,27 +474,29 @@
416
474
  "successCount"
417
475
  ]
418
476
  }
419
- ]
477
+ ],
478
+ "columns": 2.0,
479
+ "type": "simple-grid"
420
480
  },
421
481
  {
422
- "type": "meter",
423
- "value": [
482
+ "max": [
424
483
  "object/get",
425
484
  [
426
485
  "array/first",
427
486
  "@entity"
428
487
  ],
429
- "failureCount"
488
+ "threshold"
430
489
  ],
431
- "min": 0,
432
- "max": [
490
+ "type": "meter",
491
+ "value": [
433
492
  "object/get",
434
493
  [
435
494
  "array/first",
436
495
  "@entity"
437
496
  ],
438
- "threshold"
439
- ]
497
+ "failureCount"
498
+ ],
499
+ "min": 0.0
440
500
  }
441
501
  ]
442
502
  }
@@ -452,58 +512,54 @@
452
512
  "render-ui",
453
513
  "main",
454
514
  {
455
- "type": "stack",
456
515
  "direction": "vertical",
457
- "gap": "lg",
458
516
  "children": [
459
517
  {
460
- "type": "stack",
461
- "direction": "horizontal",
462
- "gap": "md",
463
518
  "align": "center",
519
+ "gap": "md",
520
+ "type": "stack",
464
521
  "justify": "space-between",
465
522
  "children": [
466
523
  {
467
- "type": "stack",
468
- "direction": "horizontal",
469
524
  "gap": "md",
470
525
  "align": "center",
526
+ "type": "stack",
527
+ "direction": "horizontal",
471
528
  "children": [
472
529
  {
473
530
  "type": "icon",
474
- "name": "activity",
475
- "size": "lg"
531
+ "size": "lg",
532
+ "name": "activity"
476
533
  },
477
534
  {
478
- "type": "typography",
479
535
  "content": "ServiceNode",
480
- "variant": "h2"
536
+ "variant": "h2",
537
+ "type": "typography"
481
538
  }
482
539
  ]
483
540
  },
484
541
  {
542
+ "label": "Circuit Half-Open",
485
543
  "type": "status-dot",
486
- "status": "warning",
487
544
  "pulse": true,
488
- "label": "Circuit Half-Open"
545
+ "status": "warning"
489
546
  }
490
- ]
547
+ ],
548
+ "direction": "horizontal"
491
549
  },
492
550
  {
493
551
  "type": "divider"
494
552
  },
495
553
  {
496
- "type": "alert",
554
+ "message": "Testing recovery. Limited requests are being allowed through.",
497
555
  "variant": "warning",
498
- "message": "Testing recovery. Limited requests are being allowed through."
556
+ "type": "alert"
499
557
  },
500
558
  {
501
- "type": "simple-grid",
502
- "columns": 2,
503
559
  "children": [
504
560
  {
505
- "type": "stat-display",
506
561
  "label": "Failures",
562
+ "type": "stat-display",
507
563
  "value": [
508
564
  "object/get",
509
565
  [
@@ -514,8 +570,6 @@
514
570
  ]
515
571
  },
516
572
  {
517
- "type": "stat-display",
518
- "label": "Successes",
519
573
  "value": [
520
574
  "object/get",
521
575
  [
@@ -523,11 +577,17 @@
523
577
  "@entity"
524
578
  ],
525
579
  "successCount"
526
- ]
580
+ ],
581
+ "label": "Successes",
582
+ "type": "stat-display"
527
583
  }
528
- ]
584
+ ],
585
+ "type": "simple-grid",
586
+ "columns": 2.0
529
587
  }
530
- ]
588
+ ],
589
+ "type": "stack",
590
+ "gap": "lg"
531
591
  }
532
592
  ]
533
593
  ]
@@ -541,40 +601,37 @@
541
601
  "render-ui",
542
602
  "main",
543
603
  {
544
- "type": "stack",
545
- "direction": "vertical",
546
- "gap": "lg",
547
604
  "children": [
548
605
  {
549
- "type": "stack",
606
+ "align": "center",
550
607
  "direction": "horizontal",
608
+ "type": "stack",
551
609
  "gap": "md",
552
- "align": "center",
553
610
  "justify": "space-between",
554
611
  "children": [
555
612
  {
556
- "type": "stack",
557
- "direction": "horizontal",
558
- "gap": "md",
559
- "align": "center",
560
613
  "children": [
561
614
  {
562
- "type": "icon",
563
615
  "name": "shield",
616
+ "type": "icon",
564
617
  "size": "lg"
565
618
  },
566
619
  {
567
- "type": "typography",
620
+ "variant": "h2",
568
621
  "content": "ServiceNode",
569
- "variant": "h2"
622
+ "type": "typography"
570
623
  }
571
- ]
624
+ ],
625
+ "type": "stack",
626
+ "gap": "md",
627
+ "direction": "horizontal",
628
+ "align": "center"
572
629
  },
573
630
  {
574
- "type": "status-dot",
575
- "status": "success",
631
+ "label": "Circuit Closed",
576
632
  "pulse": false,
577
- "label": "Circuit Closed"
633
+ "status": "success",
634
+ "type": "status-dot"
578
635
  }
579
636
  ]
580
637
  },
@@ -582,17 +639,15 @@
582
639
  "type": "divider"
583
640
  },
584
641
  {
585
- "type": "alert",
586
642
  "variant": "success",
643
+ "type": "alert",
587
644
  "message": "Service is healthy. All requests are being processed."
588
645
  },
589
646
  {
590
647
  "type": "simple-grid",
591
- "columns": 2,
592
648
  "children": [
593
649
  {
594
650
  "type": "stat-display",
595
- "label": "Failures",
596
651
  "value": [
597
652
  "object/get",
598
653
  [
@@ -600,11 +655,12 @@
600
655
  "@entity"
601
656
  ],
602
657
  "failureCount"
603
- ]
658
+ ],
659
+ "label": "Failures"
604
660
  },
605
661
  {
606
- "type": "stat-display",
607
662
  "label": "Successes",
663
+ "type": "stat-display",
608
664
  "value": [
609
665
  "object/get",
610
666
  [
@@ -614,29 +670,33 @@
614
670
  "successCount"
615
671
  ]
616
672
  }
617
- ]
673
+ ],
674
+ "columns": 2.0
618
675
  },
619
676
  {
620
- "type": "meter",
621
- "value": [
677
+ "min": 0.0,
678
+ "max": [
622
679
  "object/get",
623
680
  [
624
681
  "array/first",
625
682
  "@entity"
626
683
  ],
627
- "failureCount"
684
+ "threshold"
628
685
  ],
629
- "min": 0,
630
- "max": [
686
+ "value": [
631
687
  "object/get",
632
688
  [
633
689
  "array/first",
634
690
  "@entity"
635
691
  ],
636
- "threshold"
637
- ]
692
+ "failureCount"
693
+ ],
694
+ "type": "meter"
638
695
  }
639
- ]
696
+ ],
697
+ "gap": "lg",
698
+ "type": "stack",
699
+ "direction": "vertical"
640
700
  }
641
701
  ]
642
702
  ]
@@ -655,53 +715,53 @@
655
715
  "gap": "lg",
656
716
  "children": [
657
717
  {
658
- "type": "stack",
659
718
  "direction": "horizontal",
660
- "gap": "md",
661
- "align": "center",
662
719
  "justify": "space-between",
663
720
  "children": [
664
721
  {
665
- "type": "stack",
666
722
  "direction": "horizontal",
667
- "gap": "md",
668
- "align": "center",
669
723
  "children": [
670
724
  {
671
- "type": "icon",
725
+ "size": "lg",
672
726
  "name": "shield",
673
- "size": "lg"
727
+ "type": "icon"
674
728
  },
675
729
  {
676
- "type": "typography",
677
730
  "content": "ServiceNode",
731
+ "type": "typography",
678
732
  "variant": "h2"
679
733
  }
680
- ]
734
+ ],
735
+ "align": "center",
736
+ "gap": "md",
737
+ "type": "stack"
681
738
  },
682
739
  {
740
+ "label": "Circuit Closed",
683
741
  "type": "status-dot",
684
742
  "status": "success",
685
- "pulse": false,
686
- "label": "Circuit Closed"
743
+ "pulse": false
687
744
  }
688
- ]
745
+ ],
746
+ "type": "stack",
747
+ "align": "center",
748
+ "gap": "md"
689
749
  },
690
750
  {
691
751
  "type": "divider"
692
752
  },
693
753
  {
694
754
  "type": "alert",
695
- "variant": "success",
696
- "message": "Service is healthy. All requests are being processed."
755
+ "message": "Service is healthy. All requests are being processed.",
756
+ "variant": "success"
697
757
  },
698
758
  {
699
759
  "type": "simple-grid",
700
- "columns": 2,
760
+ "columns": 2.0,
701
761
  "children": [
702
762
  {
703
- "type": "stat-display",
704
763
  "label": "Failures",
764
+ "type": "stat-display",
705
765
  "value": [
706
766
  "object/get",
707
767
  [
@@ -713,7 +773,6 @@
713
773
  },
714
774
  {
715
775
  "type": "stat-display",
716
- "label": "Successes",
717
776
  "value": [
718
777
  "object/get",
719
778
  [
@@ -721,11 +780,13 @@
721
780
  "@entity"
722
781
  ],
723
782
  "successCount"
724
- ]
783
+ ],
784
+ "label": "Successes"
725
785
  }
726
786
  ]
727
787
  },
728
788
  {
789
+ "min": 0.0,
729
790
  "type": "meter",
730
791
  "value": [
731
792
  "object/get",
@@ -735,7 +796,6 @@
735
796
  ],
736
797
  "failureCount"
737
798
  ],
738
- "min": 0,
739
799
  "max": [
740
800
  "object/get",
741
801
  [
@@ -759,12 +819,8 @@
759
819
  "render-ui",
760
820
  "main",
761
821
  {
762
- "type": "stack",
763
- "direction": "vertical",
764
- "gap": "lg",
765
822
  "children": [
766
823
  {
767
- "type": "stack",
768
824
  "direction": "horizontal",
769
825
  "gap": "md",
770
826
  "align": "center",
@@ -772,21 +828,21 @@
772
828
  "children": [
773
829
  {
774
830
  "type": "stack",
775
- "direction": "horizontal",
776
- "gap": "md",
777
831
  "align": "center",
778
832
  "children": [
779
833
  {
780
- "type": "icon",
781
834
  "name": "alert-triangle",
782
- "size": "lg"
835
+ "size": "lg",
836
+ "type": "icon"
783
837
  },
784
838
  {
785
- "type": "typography",
786
839
  "content": "ServiceNode",
787
- "variant": "h2"
840
+ "variant": "h2",
841
+ "type": "typography"
788
842
  }
789
- ]
843
+ ],
844
+ "direction": "horizontal",
845
+ "gap": "md"
790
846
  },
791
847
  {
792
848
  "type": "status-dot",
@@ -794,23 +850,22 @@
794
850
  "pulse": true,
795
851
  "label": "Circuit Open"
796
852
  }
797
- ]
853
+ ],
854
+ "type": "stack"
798
855
  },
799
856
  {
800
857
  "type": "divider"
801
858
  },
802
859
  {
860
+ "message": "Circuit is open. Requests are being rejected to prevent cascading failures.",
803
861
  "type": "alert",
804
- "variant": "danger",
805
- "message": "Circuit is open. Requests are being rejected to prevent cascading failures."
862
+ "variant": "danger"
806
863
  },
807
864
  {
808
865
  "type": "simple-grid",
809
- "columns": 2,
866
+ "columns": 2.0,
810
867
  "children": [
811
868
  {
812
- "type": "stat-display",
813
- "label": "Failures",
814
869
  "value": [
815
870
  "object/get",
816
871
  [
@@ -818,11 +873,12 @@
818
873
  "@entity"
819
874
  ],
820
875
  "failureCount"
821
- ]
876
+ ],
877
+ "type": "stat-display",
878
+ "label": "Failures"
822
879
  },
823
880
  {
824
881
  "type": "stat-display",
825
- "label": "Successes",
826
882
  "value": [
827
883
  "object/get",
828
884
  [
@@ -830,38 +886,42 @@
830
886
  "@entity"
831
887
  ],
832
888
  "successCount"
833
- ]
889
+ ],
890
+ "label": "Successes"
834
891
  }
835
892
  ]
836
893
  },
837
894
  {
838
895
  "type": "meter",
839
- "value": [
896
+ "max": [
840
897
  "object/get",
841
898
  [
842
899
  "array/first",
843
900
  "@entity"
844
901
  ],
845
- "failureCount"
902
+ "threshold"
846
903
  ],
847
- "min": 0,
848
- "max": [
904
+ "value": [
849
905
  "object/get",
850
906
  [
851
907
  "array/first",
852
908
  "@entity"
853
909
  ],
854
- "threshold"
855
- ]
910
+ "failureCount"
911
+ ],
912
+ "min": 0.0
856
913
  },
857
914
  {
858
- "type": "button",
915
+ "icon": "rotate-ccw",
859
916
  "label": "Reset",
860
- "event": "RESET",
861
917
  "variant": "ghost",
862
- "icon": "rotate-ccw"
918
+ "type": "button",
919
+ "event": "RESET"
863
920
  }
864
- ]
921
+ ],
922
+ "gap": "lg",
923
+ "direction": "vertical",
924
+ "type": "stack"
865
925
  }
866
926
  ]
867
927
  ]
@@ -875,16 +935,9 @@
875
935
  "render-ui",
876
936
  "main",
877
937
  {
878
- "type": "stack",
879
- "direction": "vertical",
880
938
  "gap": "lg",
881
939
  "children": [
882
940
  {
883
- "type": "stack",
884
- "direction": "horizontal",
885
- "gap": "md",
886
- "align": "center",
887
- "justify": "space-between",
888
941
  "children": [
889
942
  {
890
943
  "type": "stack",
@@ -893,9 +946,9 @@
893
946
  "align": "center",
894
947
  "children": [
895
948
  {
949
+ "size": "lg",
896
950
  "type": "icon",
897
- "name": "shield",
898
- "size": "lg"
951
+ "name": "shield"
899
952
  },
900
953
  {
901
954
  "type": "typography",
@@ -905,27 +958,29 @@
905
958
  ]
906
959
  },
907
960
  {
908
- "type": "status-dot",
909
- "status": "success",
910
961
  "pulse": false,
911
- "label": "Circuit Closed"
962
+ "status": "success",
963
+ "label": "Circuit Closed",
964
+ "type": "status-dot"
912
965
  }
913
- ]
966
+ ],
967
+ "type": "stack",
968
+ "align": "center",
969
+ "justify": "space-between",
970
+ "direction": "horizontal",
971
+ "gap": "md"
914
972
  },
915
973
  {
916
974
  "type": "divider"
917
975
  },
918
976
  {
977
+ "message": "Service is healthy. All requests are being processed.",
919
978
  "type": "alert",
920
- "variant": "success",
921
- "message": "Service is healthy. All requests are being processed."
979
+ "variant": "success"
922
980
  },
923
981
  {
924
- "type": "simple-grid",
925
- "columns": 2,
926
982
  "children": [
927
983
  {
928
- "type": "stat-display",
929
984
  "label": "Failures",
930
985
  "value": [
931
986
  "object/get",
@@ -934,11 +989,10 @@
934
989
  "@entity"
935
990
  ],
936
991
  "failureCount"
937
- ]
992
+ ],
993
+ "type": "stat-display"
938
994
  },
939
995
  {
940
- "type": "stat-display",
941
- "label": "Successes",
942
996
  "value": [
943
997
  "object/get",
944
998
  [
@@ -946,11 +1000,16 @@
946
1000
  "@entity"
947
1001
  ],
948
1002
  "successCount"
949
- ]
1003
+ ],
1004
+ "type": "stat-display",
1005
+ "label": "Successes"
950
1006
  }
951
- ]
1007
+ ],
1008
+ "type": "simple-grid",
1009
+ "columns": 2.0
952
1010
  },
953
1011
  {
1012
+ "min": 0.0,
954
1013
  "type": "meter",
955
1014
  "value": [
956
1015
  "object/get",
@@ -960,7 +1019,6 @@
960
1019
  ],
961
1020
  "failureCount"
962
1021
  ],
963
- "min": 0,
964
1022
  "max": [
965
1023
  "object/get",
966
1024
  [
@@ -970,13 +1028,16 @@
970
1028
  "threshold"
971
1029
  ]
972
1030
  }
973
- ]
1031
+ ],
1032
+ "direction": "vertical",
1033
+ "type": "stack"
974
1034
  }
975
1035
  ]
976
1036
  ]
977
1037
  }
978
1038
  ]
979
- }
1039
+ },
1040
+ "scope": "collection"
980
1041
  }
981
1042
  ],
982
1043
  "pages": [
@@ -992,4 +1053,4 @@
992
1053
  ]
993
1054
  }
994
1055
  ]
995
- }
1056
+ }