@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-service-email",
3
3
  "version": "1.0.0",
4
- "description": "Email service integration behavior: compose, send, track delivery status. Wraps the `email` service with call-service for send operations. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-email as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceEmailOrbital",
@@ -69,8 +69,76 @@
69
69
  "traits": [
70
70
  {
71
71
  "name": "ServiceEmailEmail",
72
- "linkedEntity": "ServiceEmail",
73
72
  "category": "interaction",
73
+ "linkedEntity": "ServiceEmail",
74
+ "emits": [
75
+ {
76
+ "event": "ServiceEmailLoaded",
77
+ "description": "Fired when ServiceEmail finishes loading",
78
+ "scope": "internal",
79
+ "payload": [
80
+ {
81
+ "name": "id",
82
+ "type": "string"
83
+ },
84
+ {
85
+ "name": "name",
86
+ "type": "string"
87
+ },
88
+ {
89
+ "name": "description",
90
+ "type": "string"
91
+ },
92
+ {
93
+ "name": "status",
94
+ "type": "string"
95
+ },
96
+ {
97
+ "name": "createdAt",
98
+ "type": "string"
99
+ },
100
+ {
101
+ "name": "to",
102
+ "type": "string"
103
+ },
104
+ {
105
+ "name": "subject",
106
+ "type": "string"
107
+ },
108
+ {
109
+ "name": "body",
110
+ "type": "string"
111
+ },
112
+ {
113
+ "name": "from",
114
+ "type": "string"
115
+ },
116
+ {
117
+ "name": "sendStatus",
118
+ "type": "string"
119
+ },
120
+ {
121
+ "name": "messageId",
122
+ "type": "string"
123
+ },
124
+ {
125
+ "name": "error",
126
+ "type": "string"
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ "event": "ServiceEmailLoadFailed",
132
+ "description": "Fired when ServiceEmail fails to load",
133
+ "scope": "internal",
134
+ "payload": [
135
+ {
136
+ "name": "message",
137
+ "type": "string"
138
+ }
139
+ ]
140
+ }
141
+ ],
74
142
  "stateMachine": {
75
143
  "states": [
76
144
  {
@@ -94,22 +162,21 @@
94
162
  },
95
163
  {
96
164
  "key": "SEND",
97
- "name": "Send Email"
165
+ "name": "Send"
98
166
  },
99
167
  {
100
168
  "key": "SENT",
101
- "name": "Email Sent",
169
+ "name": "Sent",
102
170
  "payload": [
103
171
  {
104
172
  "name": "messageId",
105
- "type": "string",
106
- "required": false
173
+ "type": "string"
107
174
  }
108
175
  ]
109
176
  },
110
177
  {
111
178
  "key": "FAILED",
112
- "name": "Send Failed",
179
+ "name": "Failed",
113
180
  "payload": [
114
181
  {
115
182
  "name": "error",
@@ -118,13 +185,27 @@
118
185
  }
119
186
  ]
120
187
  },
188
+ {
189
+ "key": "RESET",
190
+ "name": "Reset"
191
+ },
121
192
  {
122
193
  "key": "RETRY",
123
194
  "name": "Retry"
124
195
  },
125
196
  {
126
- "key": "RESET",
127
- "name": "Reset"
197
+ "key": "ServiceEmailLoaded",
198
+ "name": "ServiceEmail loaded"
199
+ },
200
+ {
201
+ "key": "ServiceEmailLoadFailed",
202
+ "name": "ServiceEmail load failed",
203
+ "payload": [
204
+ {
205
+ "name": "message",
206
+ "type": "string"
207
+ }
208
+ ]
128
209
  }
129
210
  ],
130
211
  "transitions": [
@@ -135,34 +216,40 @@
135
216
  "effects": [
136
217
  [
137
218
  "fetch",
138
- "ServiceEmail"
219
+ "ServiceEmail",
220
+ {
221
+ "emit": {
222
+ "success": "ServiceEmailLoaded",
223
+ "failure": "ServiceEmailLoadFailed"
224
+ }
225
+ }
139
226
  ],
140
227
  [
141
228
  "render-ui",
142
229
  "main",
143
230
  {
144
- "type": "stack",
145
231
  "direction": "vertical",
232
+ "type": "stack",
146
233
  "gap": "lg",
147
234
  "align": "stretch",
148
235
  "children": [
149
236
  {
150
- "type": "stack",
151
237
  "direction": "horizontal",
152
- "gap": "md",
238
+ "type": "stack",
153
239
  "align": "center",
154
240
  "children": [
155
241
  {
156
- "type": "icon",
157
242
  "name": "mail",
243
+ "type": "icon",
158
244
  "size": "lg"
159
245
  },
160
246
  {
161
247
  "type": "typography",
162
- "content": "ServiceEmail Email",
163
- "variant": "h2"
248
+ "variant": "h2",
249
+ "content": "ServiceEmail Email"
164
250
  }
165
- ]
251
+ ],
252
+ "gap": "md"
166
253
  },
167
254
  {
168
255
  "type": "divider"
@@ -176,21 +263,21 @@
176
263
  {
177
264
  "type": "input",
178
265
  "label": "Subject",
179
- "bind": "@entity.subject",
180
- "placeholder": "Email subject"
266
+ "placeholder": "Email subject",
267
+ "bind": "@entity.subject"
181
268
  },
182
269
  {
183
- "type": "textarea",
184
270
  "label": "Body",
185
271
  "bind": "@entity.body",
186
- "placeholder": "Write your message..."
272
+ "placeholder": "Write your message...",
273
+ "type": "textarea"
187
274
  },
188
275
  {
189
- "type": "button",
190
276
  "label": "Send",
277
+ "icon": "send",
191
278
  "event": "SEND",
192
- "variant": "primary",
193
- "icon": "send"
279
+ "type": "button",
280
+ "variant": "primary"
194
281
  }
195
282
  ]
196
283
  }
@@ -206,9 +293,9 @@
206
293
  "render-ui",
207
294
  "main",
208
295
  {
209
- "type": "loading-state",
296
+ "message": "Delivering serviceemail email...",
210
297
  "title": "Sending email...",
211
- "message": "Delivering serviceemail email..."
298
+ "type": "loading-state"
212
299
  }
213
300
  ],
214
301
  [
@@ -238,8 +325,6 @@
238
325
  "main",
239
326
  {
240
327
  "type": "stack",
241
- "direction": "vertical",
242
- "gap": "lg",
243
328
  "align": "center",
244
329
  "children": [
245
330
  {
@@ -253,13 +338,15 @@
253
338
  "message": "Email sent successfully"
254
339
  },
255
340
  {
341
+ "icon": "rotate-ccw",
256
342
  "type": "button",
257
343
  "label": "Send Another",
258
344
  "event": "RESET",
259
- "variant": "ghost",
260
- "icon": "rotate-ccw"
345
+ "variant": "ghost"
261
346
  }
262
- ]
347
+ ],
348
+ "gap": "lg",
349
+ "direction": "vertical"
263
350
  }
264
351
  ]
265
352
  ]
@@ -279,37 +366,37 @@
279
366
  "main",
280
367
  {
281
368
  "type": "stack",
282
- "direction": "vertical",
283
369
  "gap": "lg",
370
+ "direction": "vertical",
284
371
  "align": "center",
285
372
  "children": [
286
373
  {
287
374
  "type": "error-state",
288
- "title": "Send Failed",
289
375
  "message": "Could not deliver the email.",
290
- "onRetry": "RETRY"
376
+ "onRetry": "RETRY",
377
+ "title": "Send Failed"
291
378
  },
292
379
  {
380
+ "justify": "center",
293
381
  "type": "stack",
294
382
  "direction": "horizontal",
295
- "gap": "sm",
296
- "justify": "center",
297
383
  "children": [
298
384
  {
299
- "type": "button",
300
385
  "label": "Retry",
386
+ "type": "button",
387
+ "icon": "refresh-cw",
301
388
  "event": "RETRY",
302
- "variant": "primary",
303
- "icon": "refresh-cw"
389
+ "variant": "primary"
304
390
  },
305
391
  {
306
- "type": "button",
307
- "label": "Reset",
308
392
  "event": "RESET",
393
+ "label": "Reset",
309
394
  "variant": "ghost",
310
- "icon": "rotate-ccw"
395
+ "icon": "rotate-ccw",
396
+ "type": "button"
311
397
  }
312
- ]
398
+ ],
399
+ "gap": "sm"
313
400
  }
314
401
  ]
315
402
  }
@@ -317,23 +404,24 @@
317
404
  ]
318
405
  },
319
406
  {
320
- "from": "error",
407
+ "from": "sent",
321
408
  "to": "idle",
322
- "event": "RETRY",
409
+ "event": "RESET",
323
410
  "effects": [
411
+ [
412
+ "set",
413
+ "@entity.sendStatus",
414
+ "idle"
415
+ ],
324
416
  [
325
417
  "render-ui",
326
418
  "main",
327
419
  {
328
- "type": "stack",
329
- "direction": "vertical",
330
- "gap": "lg",
331
- "align": "stretch",
332
420
  "children": [
333
421
  {
334
422
  "type": "stack",
335
- "direction": "horizontal",
336
423
  "gap": "md",
424
+ "direction": "horizontal",
337
425
  "align": "center",
338
426
  "children": [
339
427
  {
@@ -353,100 +441,99 @@
353
441
  },
354
442
  {
355
443
  "type": "input",
356
- "label": "To",
357
444
  "bind": "@entity.to",
445
+ "label": "To",
358
446
  "placeholder": "recipient@example.com"
359
447
  },
360
448
  {
361
- "type": "input",
449
+ "placeholder": "Email subject",
362
450
  "label": "Subject",
363
- "bind": "@entity.subject",
364
- "placeholder": "Email subject"
451
+ "type": "input",
452
+ "bind": "@entity.subject"
365
453
  },
366
454
  {
367
- "type": "textarea",
368
- "label": "Body",
369
455
  "bind": "@entity.body",
370
- "placeholder": "Write your message..."
456
+ "label": "Body",
457
+ "placeholder": "Write your message...",
458
+ "type": "textarea"
371
459
  },
372
460
  {
461
+ "variant": "primary",
462
+ "event": "SEND",
373
463
  "type": "button",
374
464
  "label": "Send",
375
- "event": "SEND",
376
- "variant": "primary",
377
465
  "icon": "send"
378
466
  }
379
- ]
467
+ ],
468
+ "align": "stretch",
469
+ "type": "stack",
470
+ "direction": "vertical",
471
+ "gap": "lg"
380
472
  }
381
473
  ]
382
474
  ]
383
475
  },
384
476
  {
385
- "from": "sent",
477
+ "from": "error",
386
478
  "to": "idle",
387
- "event": "RESET",
479
+ "event": "RETRY",
388
480
  "effects": [
389
- [
390
- "set",
391
- "@entity.sendStatus",
392
- "idle"
393
- ],
394
481
  [
395
482
  "render-ui",
396
483
  "main",
397
484
  {
398
485
  "type": "stack",
399
- "direction": "vertical",
400
- "gap": "lg",
401
486
  "align": "stretch",
402
487
  "children": [
403
488
  {
404
489
  "type": "stack",
405
- "direction": "horizontal",
406
- "gap": "md",
407
490
  "align": "center",
408
491
  "children": [
409
492
  {
493
+ "size": "lg",
410
494
  "type": "icon",
411
- "name": "mail",
412
- "size": "lg"
495
+ "name": "mail"
413
496
  },
414
497
  {
415
- "type": "typography",
416
498
  "content": "ServiceEmail Email",
417
- "variant": "h2"
499
+ "variant": "h2",
500
+ "type": "typography"
418
501
  }
419
- ]
502
+ ],
503
+ "gap": "md",
504
+ "direction": "horizontal"
420
505
  },
421
506
  {
422
507
  "type": "divider"
423
508
  },
424
509
  {
425
510
  "type": "input",
426
- "label": "To",
511
+ "placeholder": "recipient@example.com",
427
512
  "bind": "@entity.to",
428
- "placeholder": "recipient@example.com"
513
+ "label": "To"
429
514
  },
430
515
  {
431
516
  "type": "input",
432
517
  "label": "Subject",
433
- "bind": "@entity.subject",
434
- "placeholder": "Email subject"
518
+ "placeholder": "Email subject",
519
+ "bind": "@entity.subject"
435
520
  },
436
521
  {
437
- "type": "textarea",
438
522
  "label": "Body",
439
523
  "bind": "@entity.body",
440
- "placeholder": "Write your message..."
524
+ "placeholder": "Write your message...",
525
+ "type": "textarea"
441
526
  },
442
527
  {
443
- "type": "button",
444
- "label": "Send",
445
528
  "event": "SEND",
529
+ "icon": "send",
446
530
  "variant": "primary",
447
- "icon": "send"
531
+ "label": "Send",
532
+ "type": "button"
448
533
  }
449
- ]
534
+ ],
535
+ "direction": "vertical",
536
+ "gap": "lg"
450
537
  }
451
538
  ]
452
539
  ]
@@ -467,24 +554,22 @@
467
554
  {
468
555
  "type": "stack",
469
556
  "direction": "vertical",
470
- "gap": "lg",
471
- "align": "stretch",
472
557
  "children": [
473
558
  {
474
- "type": "stack",
475
- "direction": "horizontal",
476
- "gap": "md",
477
559
  "align": "center",
560
+ "gap": "md",
561
+ "direction": "horizontal",
562
+ "type": "stack",
478
563
  "children": [
479
564
  {
480
565
  "type": "icon",
481
- "name": "mail",
482
- "size": "lg"
566
+ "size": "lg",
567
+ "name": "mail"
483
568
  },
484
569
  {
485
- "type": "typography",
486
570
  "content": "ServiceEmail Email",
487
- "variant": "h2"
571
+ "variant": "h2",
572
+ "type": "typography"
488
573
  }
489
574
  ]
490
575
  },
@@ -492,37 +577,40 @@
492
577
  "type": "divider"
493
578
  },
494
579
  {
495
- "type": "input",
496
- "label": "To",
580
+ "placeholder": "recipient@example.com",
497
581
  "bind": "@entity.to",
498
- "placeholder": "recipient@example.com"
582
+ "label": "To",
583
+ "type": "input"
499
584
  },
500
585
  {
501
- "type": "input",
502
- "label": "Subject",
503
586
  "bind": "@entity.subject",
504
- "placeholder": "Email subject"
587
+ "placeholder": "Email subject",
588
+ "label": "Subject",
589
+ "type": "input"
505
590
  },
506
591
  {
592
+ "bind": "@entity.body",
507
593
  "type": "textarea",
508
594
  "label": "Body",
509
- "bind": "@entity.body",
510
595
  "placeholder": "Write your message..."
511
596
  },
512
597
  {
513
- "type": "button",
514
- "label": "Send",
515
598
  "event": "SEND",
599
+ "label": "Send",
600
+ "type": "button",
516
601
  "variant": "primary",
517
602
  "icon": "send"
518
603
  }
519
- ]
604
+ ],
605
+ "align": "stretch",
606
+ "gap": "lg"
520
607
  }
521
608
  ]
522
609
  ]
523
610
  }
524
611
  ]
525
- }
612
+ },
613
+ "scope": "instance"
526
614
  }
527
615
  ],
528
616
  "pages": [
@@ -538,4 +626,4 @@
538
626
  ]
539
627
  }
540
628
  ]
541
- }
629
+ }