@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-game-canvas3d",
3
3
  "version": "1.0.0",
4
- "description": "3D game canvas atom using the `game-canvas-3d` pattern. Renders tiles, units, and features in a 3D scene with configurable orientation, camera mode, grid, shadows, and background color.",
4
+ "description": "std-game-canvas3d as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "Canvas3dSceneOrbital",
@@ -38,62 +38,86 @@
38
38
  {
39
39
  "name": "tiles",
40
40
  "type": "array",
41
- "default": []
41
+ "default": [],
42
+ "items": {
43
+ "type": "string"
44
+ }
42
45
  },
43
46
  {
44
47
  "name": "units",
45
48
  "type": "array",
46
- "default": []
49
+ "default": [],
50
+ "items": {
51
+ "type": "string"
52
+ }
47
53
  },
48
54
  {
49
55
  "name": "features",
50
56
  "type": "array",
51
- "default": []
52
- }
53
- ],
54
- "instances": [
55
- {
56
- "id": "scene-1",
57
- "name": "Battle Arena",
58
- "description": "A 3D battle arena",
59
- "status": "active",
60
- "createdAt": "2026-01-01",
61
- "tiles": [
62
- {
63
- "x": 0,
64
- "y": 0,
65
- "z": 0,
66
- "type": "grass"
67
- },
68
- {
69
- "x": 1,
70
- "y": 0,
71
- "z": 0,
72
- "type": "grass"
73
- },
74
- {
75
- "x": 0,
76
- "y": 0,
77
- "z": 1,
78
- "type": "stone"
79
- },
80
- {
81
- "x": 1,
82
- "y": 0,
83
- "z": 1,
84
- "type": "water"
85
- }
86
- ],
87
- "units": [],
88
- "features": []
57
+ "default": [],
58
+ "items": {
59
+ "type": "string"
60
+ }
89
61
  }
90
62
  ]
91
63
  },
92
64
  "traits": [
93
65
  {
94
66
  "name": "Canvas3dSceneGameCanvas3d",
95
- "linkedEntity": "Canvas3dScene",
96
67
  "category": "interaction",
68
+ "linkedEntity": "Canvas3dScene",
69
+ "emits": [
70
+ {
71
+ "event": "Canvas3dSceneLoaded",
72
+ "description": "Fired when Canvas3dScene finishes loading",
73
+ "scope": "internal",
74
+ "payload": [
75
+ {
76
+ "name": "id",
77
+ "type": "string"
78
+ },
79
+ {
80
+ "name": "name",
81
+ "type": "string"
82
+ },
83
+ {
84
+ "name": "description",
85
+ "type": "string"
86
+ },
87
+ {
88
+ "name": "status",
89
+ "type": "string"
90
+ },
91
+ {
92
+ "name": "createdAt",
93
+ "type": "string"
94
+ },
95
+ {
96
+ "name": "tiles",
97
+ "type": "[string]"
98
+ },
99
+ {
100
+ "name": "units",
101
+ "type": "[string]"
102
+ },
103
+ {
104
+ "name": "features",
105
+ "type": "[string]"
106
+ }
107
+ ]
108
+ },
109
+ {
110
+ "event": "Canvas3dSceneLoadFailed",
111
+ "description": "Fired when Canvas3dScene fails to load",
112
+ "scope": "internal",
113
+ "payload": [
114
+ {
115
+ "name": "message",
116
+ "type": "string"
117
+ }
118
+ ]
119
+ }
120
+ ],
97
121
  "stateMachine": {
98
122
  "states": [
99
123
  {
@@ -134,6 +158,20 @@
134
158
  {
135
159
  "key": "CAMERA_CHANGE",
136
160
  "name": "Camera Change"
161
+ },
162
+ {
163
+ "key": "Canvas3dSceneLoaded",
164
+ "name": "Canvas3dScene loaded"
165
+ },
166
+ {
167
+ "key": "Canvas3dSceneLoadFailed",
168
+ "name": "Canvas3dScene load failed",
169
+ "payload": [
170
+ {
171
+ "name": "message",
172
+ "type": "string"
173
+ }
174
+ ]
137
175
  }
138
176
  ],
139
177
  "transitions": [
@@ -144,13 +182,18 @@
144
182
  "effects": [
145
183
  [
146
184
  "fetch",
147
- "Canvas3dScene"
185
+ "Canvas3dScene",
186
+ {
187
+ "emit": {
188
+ "failure": "Canvas3dSceneLoadFailed",
189
+ "success": "Canvas3dSceneLoaded"
190
+ }
191
+ }
148
192
  ],
149
193
  [
150
194
  "render-ui",
151
195
  "main",
152
196
  {
153
- "type": "game-canvas-3d",
154
197
  "tiles": [
155
198
  "object/get",
156
199
  [
@@ -159,29 +202,30 @@
159
202
  ],
160
203
  "tiles"
161
204
  ],
162
- "units": [
205
+ "features": [
163
206
  "object/get",
164
207
  [
165
208
  "array/first",
166
209
  "@Canvas3dScene"
167
210
  ],
168
- "units"
211
+ "features"
169
212
  ],
170
- "features": [
213
+ "showGrid": true,
214
+ "type": "game-canvas-3d",
215
+ "units": [
171
216
  "object/get",
172
217
  [
173
218
  "array/first",
174
219
  "@Canvas3dScene"
175
220
  ],
176
- "features"
221
+ "units"
177
222
  ],
178
- "orientation": "isometric",
223
+ "unitClickEvent": "UNIT_CLICK",
224
+ "backgroundColor": "#1a1a2e",
179
225
  "cameraMode": "orbital",
180
- "showGrid": true,
181
226
  "shadows": true,
182
- "backgroundColor": "#1a1a2e",
183
- "tileClickEvent": "TILE_CLICK",
184
- "unitClickEvent": "UNIT_CLICK"
227
+ "orientation": "isometric",
228
+ "tileClickEvent": "TILE_CLICK"
185
229
  }
186
230
  ]
187
231
  ]
@@ -195,7 +239,9 @@
195
239
  "render-ui",
196
240
  "main",
197
241
  {
198
- "type": "game-canvas-3d",
242
+ "cameraMode": "orbital",
243
+ "backgroundColor": "#1a1a2e",
244
+ "showGrid": true,
199
245
  "tiles": [
200
246
  "object/get",
201
247
  [
@@ -204,6 +250,9 @@
204
250
  ],
205
251
  "tiles"
206
252
  ],
253
+ "orientation": "isometric",
254
+ "tileClickEvent": "TILE_CLICK",
255
+ "shadows": true,
207
256
  "units": [
208
257
  "object/get",
209
258
  [
@@ -212,6 +261,8 @@
212
261
  ],
213
262
  "units"
214
263
  ],
264
+ "unitClickEvent": "UNIT_CLICK",
265
+ "type": "game-canvas-3d",
215
266
  "features": [
216
267
  "object/get",
217
268
  [
@@ -219,14 +270,7 @@
219
270
  "@Canvas3dScene"
220
271
  ],
221
272
  "features"
222
- ],
223
- "orientation": "isometric",
224
- "cameraMode": "orbital",
225
- "showGrid": true,
226
- "shadows": true,
227
- "backgroundColor": "#1a1a2e",
228
- "tileClickEvent": "TILE_CLICK",
229
- "unitClickEvent": "UNIT_CLICK"
273
+ ]
230
274
  }
231
275
  ]
232
276
  ]
@@ -241,41 +285,46 @@
241
285
  "main",
242
286
  {
243
287
  "type": "game-canvas-3d",
244
- "tiles": [
288
+ "orientation": "isometric",
289
+ "features": [
245
290
  "object/get",
246
291
  [
247
292
  "array/first",
248
293
  "@Canvas3dScene"
249
294
  ],
250
- "tiles"
295
+ "features"
251
296
  ],
252
- "units": [
297
+ "shadows": true,
298
+ "unitClickEvent": "UNIT_CLICK",
299
+ "cameraMode": "orbital",
300
+ "tiles": [
253
301
  "object/get",
254
302
  [
255
303
  "array/first",
256
304
  "@Canvas3dScene"
257
305
  ],
258
- "units"
306
+ "tiles"
259
307
  ],
260
- "features": [
308
+ "units": [
261
309
  "object/get",
262
310
  [
263
311
  "array/first",
264
312
  "@Canvas3dScene"
265
313
  ],
266
- "features"
314
+ "units"
267
315
  ],
268
- "orientation": "isometric",
269
- "cameraMode": "orbital",
270
- "showGrid": true,
271
- "shadows": true,
272
316
  "backgroundColor": "#1a1a2e",
273
317
  "tileClickEvent": "TILE_CLICK",
274
- "unitClickEvent": "UNIT_CLICK"
318
+ "showGrid": true
275
319
  }
276
320
  ]
277
321
  ]
278
322
  },
323
+ {
324
+ "from": "idle",
325
+ "to": "idle",
326
+ "event": "CAMERA_CHANGE"
327
+ },
279
328
  {
280
329
  "from": "active",
281
330
  "to": "active",
@@ -285,22 +334,29 @@
285
334
  "render-ui",
286
335
  "main",
287
336
  {
288
- "type": "game-canvas-3d",
289
- "tiles": [
337
+ "shadows": true,
338
+ "orientation": "isometric",
339
+ "tileClickEvent": "TILE_CLICK",
340
+ "units": [
290
341
  "object/get",
291
342
  [
292
343
  "array/first",
293
344
  "@Canvas3dScene"
294
345
  ],
295
- "tiles"
346
+ "units"
296
347
  ],
297
- "units": [
348
+ "type": "game-canvas-3d",
349
+ "cameraMode": "orbital",
350
+ "unitClickEvent": "UNIT_CLICK",
351
+ "showGrid": true,
352
+ "backgroundColor": "#1a1a2e",
353
+ "tiles": [
298
354
  "object/get",
299
355
  [
300
356
  "array/first",
301
357
  "@Canvas3dScene"
302
358
  ],
303
- "units"
359
+ "tiles"
304
360
  ],
305
361
  "features": [
306
362
  "object/get",
@@ -309,14 +365,7 @@
309
365
  "@Canvas3dScene"
310
366
  ],
311
367
  "features"
312
- ],
313
- "orientation": "isometric",
314
- "cameraMode": "orbital",
315
- "showGrid": true,
316
- "shadows": true,
317
- "backgroundColor": "#1a1a2e",
318
- "tileClickEvent": "TILE_CLICK",
319
- "unitClickEvent": "UNIT_CLICK"
368
+ ]
320
369
  }
321
370
  ]
322
371
  ]
@@ -330,38 +379,38 @@
330
379
  "render-ui",
331
380
  "main",
332
381
  {
333
- "type": "game-canvas-3d",
334
- "tiles": [
382
+ "units": [
335
383
  "object/get",
336
384
  [
337
385
  "array/first",
338
386
  "@Canvas3dScene"
339
387
  ],
340
- "tiles"
388
+ "units"
341
389
  ],
342
- "units": [
390
+ "cameraMode": "orbital",
391
+ "features": [
343
392
  "object/get",
344
393
  [
345
394
  "array/first",
346
395
  "@Canvas3dScene"
347
396
  ],
348
- "units"
397
+ "features"
349
398
  ],
350
- "features": [
399
+ "tiles": [
351
400
  "object/get",
352
401
  [
353
402
  "array/first",
354
403
  "@Canvas3dScene"
355
404
  ],
356
- "features"
405
+ "tiles"
357
406
  ],
407
+ "tileClickEvent": "TILE_CLICK",
358
408
  "orientation": "isometric",
359
- "cameraMode": "orbital",
360
- "showGrid": true,
409
+ "unitClickEvent": "UNIT_CLICK",
361
410
  "shadows": true,
362
411
  "backgroundColor": "#1a1a2e",
363
- "tileClickEvent": "TILE_CLICK",
364
- "unitClickEvent": "UNIT_CLICK"
412
+ "showGrid": true,
413
+ "type": "game-canvas-3d"
365
414
  }
366
415
  ]
367
416
  ]
@@ -369,17 +418,11 @@
369
418
  {
370
419
  "from": "active",
371
420
  "to": "active",
372
- "event": "CAMERA_CHANGE",
373
- "effects": []
374
- },
375
- {
376
- "from": "idle",
377
- "to": "idle",
378
- "event": "CAMERA_CHANGE",
379
- "effects": []
421
+ "event": "CAMERA_CHANGE"
380
422
  }
381
423
  ]
382
- }
424
+ },
425
+ "scope": "instance"
383
426
  }
384
427
  ],
385
428
  "pages": [
@@ -395,4 +438,4 @@
395
438
  ]
396
439
  }
397
440
  ]
398
- }
441
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-game-hud",
3
3
  "version": "1.0.0",
4
- "description": "Heads-up display atom. Renders the `game-hud` pattern showing health, score, lives, and other stats.",
4
+ "description": "std-game-hud as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "HudStateOrbital",
@@ -40,8 +40,48 @@
40
40
  "traits": [
41
41
  {
42
42
  "name": "HudStateHud",
43
- "linkedEntity": "HudState",
44
43
  "category": "interaction",
44
+ "linkedEntity": "HudState",
45
+ "emits": [
46
+ {
47
+ "event": "HudStateLoaded",
48
+ "description": "Fired when HudState finishes loading",
49
+ "scope": "internal",
50
+ "payload": [
51
+ {
52
+ "name": "id",
53
+ "type": "string"
54
+ },
55
+ {
56
+ "name": "name",
57
+ "type": "string"
58
+ },
59
+ {
60
+ "name": "description",
61
+ "type": "string"
62
+ },
63
+ {
64
+ "name": "status",
65
+ "type": "string"
66
+ },
67
+ {
68
+ "name": "createdAt",
69
+ "type": "string"
70
+ }
71
+ ]
72
+ },
73
+ {
74
+ "event": "HudStateLoadFailed",
75
+ "description": "Fired when HudState fails to load",
76
+ "scope": "internal",
77
+ "payload": [
78
+ {
79
+ "name": "message",
80
+ "type": "string"
81
+ }
82
+ ]
83
+ }
84
+ ],
45
85
  "stateMachine": {
46
86
  "states": [
47
87
  {
@@ -57,6 +97,20 @@
57
97
  {
58
98
  "key": "REFRESH",
59
99
  "name": "Refresh"
100
+ },
101
+ {
102
+ "key": "HudStateLoaded",
103
+ "name": "HudState loaded"
104
+ },
105
+ {
106
+ "key": "HudStateLoadFailed",
107
+ "name": "HudState load failed",
108
+ "payload": [
109
+ {
110
+ "name": "message",
111
+ "type": "string"
112
+ }
113
+ ]
60
114
  }
61
115
  ],
62
116
  "transitions": [
@@ -67,28 +121,34 @@
67
121
  "effects": [
68
122
  [
69
123
  "fetch",
70
- "HudState"
124
+ "HudState",
125
+ {
126
+ "emit": {
127
+ "failure": "HudStateLoadFailed",
128
+ "success": "HudStateLoaded"
129
+ }
130
+ }
71
131
  ],
72
132
  [
73
133
  "render-ui",
74
134
  "main",
75
135
  {
136
+ "transparent": false,
76
137
  "type": "game-hud",
77
- "position": "top-left",
78
138
  "size": "md",
79
- "transparent": false,
139
+ "position": "top-left",
80
140
  "stats": [
81
141
  {
82
142
  "label": "Name",
83
143
  "value": "@entity.name"
84
144
  },
85
145
  {
86
- "label": "Description",
87
- "value": "@entity.description"
146
+ "value": "@entity.description",
147
+ "label": "Description"
88
148
  },
89
149
  {
90
- "label": "Status",
91
- "value": "@entity.status"
150
+ "value": "@entity.status",
151
+ "label": "Status"
92
152
  },
93
153
  {
94
154
  "label": "CreatedAt",
@@ -106,40 +166,47 @@
106
166
  "effects": [
107
167
  [
108
168
  "fetch",
109
- "HudState"
169
+ "HudState",
170
+ {
171
+ "emit": {
172
+ "success": "HudStateLoaded",
173
+ "failure": "HudStateLoadFailed"
174
+ }
175
+ }
110
176
  ],
111
177
  [
112
178
  "render-ui",
113
179
  "main",
114
180
  {
115
181
  "type": "game-hud",
116
- "position": "top-left",
117
- "size": "md",
118
- "transparent": false,
119
182
  "stats": [
120
183
  {
121
184
  "label": "Name",
122
185
  "value": "@entity.name"
123
186
  },
124
187
  {
125
- "label": "Description",
126
- "value": "@entity.description"
188
+ "value": "@entity.description",
189
+ "label": "Description"
127
190
  },
128
191
  {
129
192
  "label": "Status",
130
193
  "value": "@entity.status"
131
194
  },
132
195
  {
133
- "label": "CreatedAt",
134
- "value": "@entity.createdAt"
196
+ "value": "@entity.createdAt",
197
+ "label": "CreatedAt"
135
198
  }
136
- ]
199
+ ],
200
+ "transparent": false,
201
+ "size": "md",
202
+ "position": "top-left"
137
203
  }
138
204
  ]
139
205
  ]
140
206
  }
141
207
  ]
142
- }
208
+ },
209
+ "scope": "instance"
143
210
  }
144
211
  ],
145
212
  "pages": [
@@ -155,4 +222,4 @@
155
222
  ]
156
223
  }
157
224
  ]
158
- }
225
+ }