@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
@@ -38,12 +38,12 @@
38
38
  {
39
39
  "name": "x",
40
40
  "type": "number",
41
- "default": 0
41
+ "default": 0.0
42
42
  },
43
43
  {
44
44
  "name": "y",
45
45
  "type": "number",
46
- "default": 0
46
+ "default": 0.0
47
47
  },
48
48
  {
49
49
  "name": "collisionStatus",
@@ -60,8 +60,8 @@
60
60
  "traits": [
61
61
  {
62
62
  "name": "CollidableBodyCollision",
63
- "linkedEntity": "CollidableBody",
64
63
  "category": "interaction",
64
+ "linkedEntity": "CollidableBody",
65
65
  "stateMachine": {
66
66
  "states": [
67
67
  {
@@ -79,7 +79,7 @@
79
79
  },
80
80
  {
81
81
  "key": "CHECK",
82
- "name": "Check Collision"
82
+ "name": "Check"
83
83
  },
84
84
  {
85
85
  "key": "COLLISION_DETECTED",
@@ -112,43 +112,41 @@
112
112
  "gap": "lg",
113
113
  "children": [
114
114
  {
115
- "type": "stack",
116
- "direction": "horizontal",
117
- "gap": "md",
118
115
  "align": "center",
116
+ "gap": "md",
119
117
  "justify": "space-between",
120
118
  "children": [
121
119
  {
122
- "type": "stack",
123
- "direction": "horizontal",
124
120
  "gap": "md",
121
+ "direction": "horizontal",
125
122
  "align": "center",
126
123
  "children": [
127
124
  {
128
125
  "type": "icon",
129
- "name": "crosshair",
130
- "size": "lg"
126
+ "size": "lg",
127
+ "name": "crosshair"
131
128
  },
132
129
  {
133
130
  "type": "typography",
134
131
  "content": "CollidableBody Collision",
135
132
  "variant": "h2"
136
133
  }
137
- ]
134
+ ],
135
+ "type": "stack"
138
136
  },
139
137
  {
138
+ "label": "Idle",
140
139
  "type": "status-dot",
141
- "status": "inactive",
142
- "label": "Idle"
140
+ "status": "inactive"
143
141
  }
144
- ]
142
+ ],
143
+ "type": "stack",
144
+ "direction": "horizontal"
145
145
  },
146
146
  {
147
147
  "type": "divider"
148
148
  },
149
149
  {
150
- "type": "simple-grid",
151
- "columns": 2,
152
150
  "children": [
153
151
  {
154
152
  "type": "stat-display",
@@ -164,7 +162,6 @@
164
162
  },
165
163
  {
166
164
  "type": "stat-display",
167
- "label": "Y",
168
165
  "value": [
169
166
  "object/get",
170
167
  [
@@ -172,15 +169,18 @@
172
169
  "@entity"
173
170
  ],
174
171
  "y"
175
- ]
172
+ ],
173
+ "label": "Y"
176
174
  }
177
- ]
175
+ ],
176
+ "columns": 2.0,
177
+ "type": "simple-grid"
178
178
  },
179
179
  {
180
180
  "type": "stack",
181
- "direction": "horizontal",
182
- "gap": "sm",
183
181
  "justify": "center",
182
+ "gap": "sm",
183
+ "direction": "horizontal",
184
184
  "children": [
185
185
  {
186
186
  "type": "button",
@@ -210,58 +210,56 @@
210
210
  "render-ui",
211
211
  "main",
212
212
  {
213
- "type": "stack",
214
213
  "direction": "vertical",
215
214
  "gap": "lg",
216
215
  "children": [
217
216
  {
218
- "type": "stack",
219
- "direction": "horizontal",
220
- "gap": "md",
221
- "align": "center",
222
- "justify": "space-between",
223
217
  "children": [
224
218
  {
225
- "type": "stack",
226
- "direction": "horizontal",
227
- "gap": "md",
228
219
  "align": "center",
220
+ "gap": "md",
221
+ "direction": "horizontal",
222
+ "type": "stack",
229
223
  "children": [
230
224
  {
231
- "type": "icon",
225
+ "size": "lg",
232
226
  "name": "crosshair",
233
- "size": "lg"
227
+ "type": "icon"
234
228
  },
235
229
  {
236
- "type": "typography",
237
230
  "content": "CollidableBody Collision",
231
+ "type": "typography",
238
232
  "variant": "h2"
239
233
  }
240
234
  ]
241
235
  },
242
236
  {
237
+ "label": "Detecting",
243
238
  "type": "status-dot",
244
239
  "status": "warning",
245
- "pulse": true,
246
- "label": "Detecting"
240
+ "pulse": true
247
241
  }
248
- ]
242
+ ],
243
+ "gap": "md",
244
+ "align": "center",
245
+ "type": "stack",
246
+ "direction": "horizontal",
247
+ "justify": "space-between"
249
248
  },
250
249
  {
251
250
  "type": "divider"
252
251
  },
253
252
  {
254
253
  "type": "alert",
255
- "variant": "warning",
256
- "message": "Collision detection in progress..."
254
+ "message": "Collision detection in progress...",
255
+ "variant": "warning"
257
256
  },
258
257
  {
259
- "type": "simple-grid",
260
- "columns": 2,
258
+ "columns": 2.0,
261
259
  "children": [
262
260
  {
263
- "type": "stat-display",
264
261
  "label": "X",
262
+ "type": "stat-display",
265
263
  "value": [
266
264
  "object/get",
267
265
  [
@@ -272,7 +270,6 @@
272
270
  ]
273
271
  },
274
272
  {
275
- "type": "stat-display",
276
273
  "label": "Y",
277
274
  "value": [
278
275
  "object/get",
@@ -281,14 +278,13 @@
281
278
  "@entity"
282
279
  ],
283
280
  "y"
284
- ]
281
+ ],
282
+ "type": "stat-display"
285
283
  }
286
- ]
284
+ ],
285
+ "type": "simple-grid"
287
286
  },
288
287
  {
289
- "type": "typography",
290
- "variant": "caption",
291
- "color": "muted",
292
288
  "content": [
293
289
  "object/get",
294
290
  [
@@ -296,24 +292,28 @@
296
292
  "@entity"
297
293
  ],
298
294
  "targetId"
299
- ]
295
+ ],
296
+ "color": "muted",
297
+ "type": "typography",
298
+ "variant": "caption"
300
299
  },
301
300
  {
302
- "type": "stack",
303
- "direction": "horizontal",
304
- "gap": "sm",
305
301
  "justify": "center",
306
302
  "children": [
307
303
  {
304
+ "variant": "ghost",
305
+ "icon": "x",
308
306
  "type": "button",
309
- "label": "Clear",
310
307
  "event": "CLEAR",
311
- "variant": "ghost",
312
- "icon": "x"
308
+ "label": "Clear"
313
309
  }
314
- ]
310
+ ],
311
+ "type": "stack",
312
+ "direction": "horizontal",
313
+ "gap": "sm"
315
314
  }
316
- ]
315
+ ],
316
+ "type": "stack"
317
317
  }
318
318
  ]
319
319
  ]
@@ -339,55 +339,51 @@
339
339
  {
340
340
  "type": "stack",
341
341
  "direction": "vertical",
342
- "gap": "lg",
343
342
  "children": [
344
343
  {
345
- "type": "stack",
346
- "direction": "horizontal",
347
344
  "gap": "md",
348
- "align": "center",
349
- "justify": "space-between",
350
345
  "children": [
351
346
  {
352
- "type": "stack",
353
- "direction": "horizontal",
354
347
  "gap": "md",
348
+ "type": "stack",
355
349
  "align": "center",
350
+ "direction": "horizontal",
356
351
  "children": [
357
352
  {
358
353
  "type": "icon",
359
- "name": "crosshair",
360
- "size": "lg"
354
+ "size": "lg",
355
+ "name": "crosshair"
361
356
  },
362
357
  {
363
- "type": "typography",
364
358
  "content": "CollidableBody Collision",
365
- "variant": "h2"
359
+ "variant": "h2",
360
+ "type": "typography"
366
361
  }
367
362
  ]
368
363
  },
369
364
  {
365
+ "pulse": true,
370
366
  "type": "status-dot",
371
367
  "status": "warning",
372
- "pulse": true,
373
368
  "label": "Detecting"
374
369
  }
375
- ]
370
+ ],
371
+ "type": "stack",
372
+ "direction": "horizontal",
373
+ "align": "center",
374
+ "justify": "space-between"
376
375
  },
377
376
  {
378
377
  "type": "divider"
379
378
  },
380
379
  {
381
- "type": "alert",
380
+ "message": "Collision detection in progress...",
382
381
  "variant": "warning",
383
- "message": "Collision detection in progress..."
382
+ "type": "alert"
384
383
  },
385
384
  {
386
- "type": "simple-grid",
387
- "columns": 2,
388
385
  "children": [
389
386
  {
390
- "type": "stat-display",
391
387
  "label": "X",
392
388
  "value": [
393
389
  "object/get",
@@ -396,11 +392,10 @@
396
392
  "@entity"
397
393
  ],
398
394
  "x"
399
- ]
395
+ ],
396
+ "type": "stat-display"
400
397
  },
401
398
  {
402
- "type": "stat-display",
403
- "label": "Y",
404
399
  "value": [
405
400
  "object/get",
406
401
  [
@@ -408,13 +403,16 @@
408
403
  "@entity"
409
404
  ],
410
405
  "y"
411
- ]
406
+ ],
407
+ "label": "Y",
408
+ "type": "stat-display"
412
409
  }
413
- ]
410
+ ],
411
+ "type": "simple-grid",
412
+ "columns": 2.0
414
413
  },
415
414
  {
416
415
  "type": "typography",
417
- "variant": "caption",
418
416
  "color": "muted",
419
417
  "content": [
420
418
  "object/get",
@@ -423,24 +421,26 @@
423
421
  "@entity"
424
422
  ],
425
423
  "targetId"
426
- ]
424
+ ],
425
+ "variant": "caption"
427
426
  },
428
427
  {
429
- "type": "stack",
430
428
  "direction": "horizontal",
431
- "gap": "sm",
432
- "justify": "center",
433
429
  "children": [
434
430
  {
435
431
  "type": "button",
436
432
  "label": "Clear",
437
433
  "event": "CLEAR",
438
- "variant": "ghost",
439
- "icon": "x"
434
+ "icon": "x",
435
+ "variant": "ghost"
440
436
  }
441
- ]
437
+ ],
438
+ "gap": "sm",
439
+ "type": "stack",
440
+ "justify": "center"
442
441
  }
443
- ]
442
+ ],
443
+ "gap": "lg"
444
444
  }
445
445
  ]
446
446
  ]
@@ -465,33 +465,33 @@
465
465
  "main",
466
466
  {
467
467
  "type": "stack",
468
- "direction": "vertical",
469
468
  "gap": "lg",
469
+ "direction": "vertical",
470
470
  "children": [
471
471
  {
472
- "type": "stack",
473
472
  "direction": "horizontal",
474
- "gap": "md",
475
473
  "align": "center",
474
+ "gap": "md",
475
+ "type": "stack",
476
476
  "justify": "space-between",
477
477
  "children": [
478
478
  {
479
- "type": "stack",
480
- "direction": "horizontal",
481
479
  "gap": "md",
482
- "align": "center",
483
480
  "children": [
484
481
  {
482
+ "size": "lg",
485
483
  "type": "icon",
486
- "name": "crosshair",
487
- "size": "lg"
484
+ "name": "crosshair"
488
485
  },
489
486
  {
490
- "type": "typography",
491
487
  "content": "CollidableBody Collision",
492
- "variant": "h2"
488
+ "variant": "h2",
489
+ "type": "typography"
493
490
  }
494
- ]
491
+ ],
492
+ "type": "stack",
493
+ "direction": "horizontal",
494
+ "align": "center"
495
495
  },
496
496
  {
497
497
  "type": "status-dot",
@@ -505,7 +505,7 @@
505
505
  },
506
506
  {
507
507
  "type": "simple-grid",
508
- "columns": 2,
508
+ "columns": 2.0,
509
509
  "children": [
510
510
  {
511
511
  "type": "stat-display",
@@ -534,17 +534,17 @@
534
534
  ]
535
535
  },
536
536
  {
537
- "type": "stack",
538
537
  "direction": "horizontal",
539
538
  "gap": "sm",
539
+ "type": "stack",
540
540
  "justify": "center",
541
541
  "children": [
542
542
  {
543
- "type": "button",
544
543
  "label": "Check",
545
544
  "event": "CHECK",
546
545
  "variant": "primary",
547
- "icon": "scan"
546
+ "icon": "scan",
547
+ "type": "button"
548
548
  }
549
549
  ]
550
550
  }
@@ -562,57 +562,54 @@
562
562
  "render-ui",
563
563
  "main",
564
564
  {
565
- "type": "stack",
566
565
  "direction": "vertical",
567
566
  "gap": "lg",
567
+ "type": "stack",
568
568
  "children": [
569
569
  {
570
- "type": "stack",
571
- "direction": "horizontal",
572
- "gap": "md",
573
- "align": "center",
574
- "justify": "space-between",
575
570
  "children": [
576
571
  {
577
- "type": "stack",
578
- "direction": "horizontal",
579
572
  "gap": "md",
580
573
  "align": "center",
574
+ "direction": "horizontal",
575
+ "type": "stack",
581
576
  "children": [
582
577
  {
583
- "type": "icon",
584
578
  "name": "crosshair",
585
- "size": "lg"
579
+ "size": "lg",
580
+ "type": "icon"
586
581
  },
587
582
  {
583
+ "variant": "h2",
588
584
  "type": "typography",
589
- "content": "CollidableBody Collision",
590
- "variant": "h2"
585
+ "content": "CollidableBody Collision"
591
586
  }
592
587
  ]
593
588
  },
594
589
  {
595
- "type": "status-dot",
596
590
  "status": "warning",
597
- "pulse": true,
598
- "label": "Detecting"
591
+ "label": "Detecting",
592
+ "type": "status-dot",
593
+ "pulse": true
599
594
  }
600
- ]
595
+ ],
596
+ "direction": "horizontal",
597
+ "align": "center",
598
+ "type": "stack",
599
+ "gap": "md",
600
+ "justify": "space-between"
601
601
  },
602
602
  {
603
603
  "type": "divider"
604
604
  },
605
605
  {
606
- "type": "alert",
607
606
  "variant": "warning",
608
- "message": "Collision detection in progress..."
607
+ "message": "Collision detection in progress...",
608
+ "type": "alert"
609
609
  },
610
610
  {
611
- "type": "simple-grid",
612
- "columns": 2,
613
611
  "children": [
614
612
  {
615
- "type": "stat-display",
616
613
  "label": "X",
617
614
  "value": [
618
615
  "object/get",
@@ -621,7 +618,8 @@
621
618
  "@entity"
622
619
  ],
623
620
  "x"
624
- ]
621
+ ],
622
+ "type": "stat-display"
625
623
  },
626
624
  {
627
625
  "type": "stat-display",
@@ -635,12 +633,14 @@
635
633
  "y"
636
634
  ]
637
635
  }
638
- ]
636
+ ],
637
+ "columns": 2.0,
638
+ "type": "simple-grid"
639
639
  },
640
640
  {
641
+ "color": "muted",
641
642
  "type": "typography",
642
643
  "variant": "caption",
643
- "color": "muted",
644
644
  "content": [
645
645
  "object/get",
646
646
  [
@@ -651,17 +651,17 @@
651
651
  ]
652
652
  },
653
653
  {
654
- "type": "stack",
655
- "direction": "horizontal",
656
654
  "gap": "sm",
655
+ "type": "stack",
657
656
  "justify": "center",
657
+ "direction": "horizontal",
658
658
  "children": [
659
659
  {
660
+ "icon": "x",
660
661
  "type": "button",
661
- "label": "Clear",
662
- "event": "CLEAR",
663
662
  "variant": "ghost",
664
- "icon": "x"
663
+ "label": "Clear",
664
+ "event": "CLEAR"
665
665
  }
666
666
  ]
667
667
  }
@@ -671,7 +671,8 @@
671
671
  ]
672
672
  }
673
673
  ]
674
- }
674
+ },
675
+ "scope": "collection"
675
676
  }
676
677
  ],
677
678
  "pages": [
@@ -687,4 +688,4 @@
687
688
  ]
688
689
  }
689
690
  ]
690
- }
691
+ }