@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-notification-hub",
3
3
  "version": "1.0.0",
4
- "description": "Unified notification sender molecule. Composes email and twilio into a single trait with channel selection (Email, SMS, WhatsApp). A single state machine routes to the appropriate call-service based on the chosen channel.",
4
+ "description": "std-service-notification-hub as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceNotificationHubOrbital",
@@ -66,8 +66,72 @@
66
66
  "traits": [
67
67
  {
68
68
  "name": "ServiceNotificationHubNotificationHub",
69
- "linkedEntity": "ServiceNotificationHub",
70
69
  "category": "interaction",
70
+ "linkedEntity": "ServiceNotificationHub",
71
+ "emits": [
72
+ {
73
+ "event": "ServiceNotificationHubLoaded",
74
+ "description": "Fired when ServiceNotificationHub finishes loading",
75
+ "scope": "internal",
76
+ "payload": [
77
+ {
78
+ "name": "id",
79
+ "type": "string"
80
+ },
81
+ {
82
+ "name": "name",
83
+ "type": "string"
84
+ },
85
+ {
86
+ "name": "description",
87
+ "type": "string"
88
+ },
89
+ {
90
+ "name": "status",
91
+ "type": "string"
92
+ },
93
+ {
94
+ "name": "createdAt",
95
+ "type": "string"
96
+ },
97
+ {
98
+ "name": "recipient",
99
+ "type": "string"
100
+ },
101
+ {
102
+ "name": "subject",
103
+ "type": "string"
104
+ },
105
+ {
106
+ "name": "messageBody",
107
+ "type": "string"
108
+ },
109
+ {
110
+ "name": "channel",
111
+ "type": "string"
112
+ },
113
+ {
114
+ "name": "sendStatus",
115
+ "type": "string"
116
+ },
117
+ {
118
+ "name": "error",
119
+ "type": "string"
120
+ }
121
+ ]
122
+ },
123
+ {
124
+ "event": "ServiceNotificationHubLoadFailed",
125
+ "description": "Fired when ServiceNotificationHub fails to load",
126
+ "scope": "internal",
127
+ "payload": [
128
+ {
129
+ "name": "message",
130
+ "type": "string"
131
+ }
132
+ ]
133
+ }
134
+ ],
71
135
  "stateMachine": {
72
136
  "states": [
73
137
  {
@@ -95,19 +159,19 @@
95
159
  },
96
160
  {
97
161
  "key": "SEND_SMS",
98
- "name": "Send SMS"
162
+ "name": "Send Sms"
99
163
  },
100
164
  {
101
165
  "key": "SEND_WHATSAPP",
102
- "name": "Send WhatsApp"
166
+ "name": "Send Whatsapp"
103
167
  },
104
168
  {
105
169
  "key": "SENT",
106
- "name": "Notification Sent"
170
+ "name": "Sent"
107
171
  },
108
172
  {
109
173
  "key": "FAILED",
110
- "name": "Send Failed",
174
+ "name": "Failed",
111
175
  "payload": [
112
176
  {
113
177
  "name": "error",
@@ -116,13 +180,27 @@
116
180
  }
117
181
  ]
118
182
  },
183
+ {
184
+ "key": "RESET",
185
+ "name": "Reset"
186
+ },
119
187
  {
120
188
  "key": "RETRY",
121
189
  "name": "Retry"
122
190
  },
123
191
  {
124
- "key": "RESET",
125
- "name": "Reset"
192
+ "key": "ServiceNotificationHubLoaded",
193
+ "name": "ServiceNotificationHub loaded"
194
+ },
195
+ {
196
+ "key": "ServiceNotificationHubLoadFailed",
197
+ "name": "ServiceNotificationHub load failed",
198
+ "payload": [
199
+ {
200
+ "name": "message",
201
+ "type": "string"
202
+ }
203
+ ]
126
204
  }
127
205
  ],
128
206
  "transitions": [
@@ -133,7 +211,13 @@
133
211
  "effects": [
134
212
  [
135
213
  "fetch",
136
- "ServiceNotificationHub"
214
+ "ServiceNotificationHub",
215
+ {
216
+ "emit": {
217
+ "success": "ServiceNotificationHubLoaded",
218
+ "failure": "ServiceNotificationHubLoadFailed"
219
+ }
220
+ }
137
221
  ],
138
222
  [
139
223
  "render-ui",
@@ -141,24 +225,23 @@
141
225
  {
142
226
  "type": "stack",
143
227
  "direction": "vertical",
144
- "gap": "lg",
145
228
  "align": "stretch",
146
229
  "children": [
147
230
  {
148
231
  "type": "stack",
149
232
  "direction": "horizontal",
150
- "gap": "md",
151
233
  "align": "center",
234
+ "gap": "md",
152
235
  "children": [
153
236
  {
154
237
  "type": "icon",
155
- "name": "bell",
156
- "size": "lg"
238
+ "size": "lg",
239
+ "name": "bell"
157
240
  },
158
241
  {
159
- "type": "typography",
160
242
  "content": "ServiceNotificationHub Notification Hub",
161
- "variant": "h2"
243
+ "variant": "h2",
244
+ "type": "typography"
162
245
  }
163
246
  ]
164
247
  },
@@ -166,53 +249,54 @@
166
249
  "type": "divider"
167
250
  },
168
251
  {
252
+ "placeholder": "Email or phone number",
169
253
  "type": "input",
170
254
  "label": "Recipient",
171
- "bind": "@entity.recipient",
172
- "placeholder": "Email or phone number"
255
+ "bind": "@entity.recipient"
173
256
  },
174
257
  {
175
- "type": "input",
176
- "label": "Subject",
177
258
  "bind": "@entity.subject",
178
- "placeholder": "Notification subject"
259
+ "placeholder": "Notification subject",
260
+ "label": "Subject",
261
+ "type": "input"
179
262
  },
180
263
  {
181
- "type": "textarea",
182
- "label": "Message",
183
264
  "bind": "@entity.messageBody",
184
- "placeholder": "Write your message..."
265
+ "placeholder": "Write your message...",
266
+ "label": "Message",
267
+ "type": "textarea"
185
268
  },
186
269
  {
270
+ "justify": "center",
271
+ "gap": "sm",
187
272
  "type": "stack",
188
273
  "direction": "horizontal",
189
- "gap": "sm",
190
- "justify": "center",
191
274
  "children": [
192
275
  {
193
- "type": "button",
194
276
  "label": "Email",
195
- "event": "SEND_EMAIL",
196
277
  "variant": "primary",
197
- "icon": "mail"
278
+ "icon": "mail",
279
+ "type": "button",
280
+ "event": "SEND_EMAIL"
198
281
  },
199
282
  {
200
- "type": "button",
201
283
  "label": "SMS",
202
- "event": "SEND_SMS",
203
284
  "variant": "secondary",
204
- "icon": "message-circle"
285
+ "icon": "message-circle",
286
+ "event": "SEND_SMS",
287
+ "type": "button"
205
288
  },
206
289
  {
290
+ "icon": "phone",
291
+ "event": "SEND_WHATSAPP",
207
292
  "type": "button",
208
293
  "label": "WhatsApp",
209
- "event": "SEND_WHATSAPP",
210
- "variant": "secondary",
211
- "icon": "phone"
294
+ "variant": "secondary"
212
295
  }
213
296
  ]
214
297
  }
215
- ]
298
+ ],
299
+ "gap": "lg"
216
300
  }
217
301
  ]
218
302
  ]
@@ -232,8 +316,8 @@
232
316
  "main",
233
317
  {
234
318
  "type": "loading-state",
235
- "title": "Sending notification...",
236
- "message": "Delivering servicenotificationhub notification..."
319
+ "message": "Delivering servicenotificationhub notification...",
320
+ "title": "Sending notification..."
237
321
  }
238
322
  ],
239
323
  [
@@ -241,9 +325,9 @@
241
325
  "email",
242
326
  "send",
243
327
  {
244
- "to": "@entity.recipient",
245
328
  "subject": "@entity.subject",
246
- "body": "@entity.messageBody"
329
+ "body": "@entity.messageBody",
330
+ "to": "@entity.recipient"
247
331
  }
248
332
  ]
249
333
  ]
@@ -272,8 +356,8 @@
272
356
  "twilio",
273
357
  "sendSMS",
274
358
  {
275
- "to": "@entity.recipient",
276
- "body": "@entity.messageBody"
359
+ "body": "@entity.messageBody",
360
+ "to": "@entity.recipient"
277
361
  }
278
362
  ]
279
363
  ]
@@ -292,9 +376,9 @@
292
376
  "render-ui",
293
377
  "main",
294
378
  {
379
+ "message": "Delivering servicenotificationhub notification...",
295
380
  "type": "loading-state",
296
- "title": "Sending notification...",
297
- "message": "Delivering servicenotificationhub notification..."
381
+ "title": "Sending notification..."
298
382
  }
299
383
  ],
300
384
  [
@@ -302,8 +386,8 @@
302
386
  "twilio",
303
387
  "sendWhatsApp",
304
388
  {
305
- "to": "@entity.recipient",
306
- "body": "@entity.messageBody"
389
+ "body": "@entity.messageBody",
390
+ "to": "@entity.recipient"
307
391
  }
308
392
  ]
309
393
  ]
@@ -322,29 +406,29 @@
322
406
  "render-ui",
323
407
  "main",
324
408
  {
325
- "type": "stack",
326
- "direction": "vertical",
327
- "gap": "lg",
328
409
  "align": "center",
329
410
  "children": [
330
411
  {
331
- "type": "icon",
332
412
  "name": "check-circle",
333
- "size": "lg"
413
+ "size": "lg",
414
+ "type": "icon"
334
415
  },
335
416
  {
336
- "type": "alert",
337
417
  "variant": "success",
418
+ "type": "alert",
338
419
  "message": "Notification sent successfully"
339
420
  },
340
421
  {
341
422
  "type": "button",
342
423
  "label": "Send Another",
343
- "event": "RESET",
344
424
  "variant": "ghost",
425
+ "event": "RESET",
345
426
  "icon": "rotate-ccw"
346
427
  }
347
- ]
428
+ ],
429
+ "type": "stack",
430
+ "gap": "lg",
431
+ "direction": "vertical"
348
432
  }
349
433
  ]
350
434
  ]
@@ -368,9 +452,7 @@
368
452
  "render-ui",
369
453
  "main",
370
454
  {
371
- "type": "stack",
372
455
  "direction": "vertical",
373
- "gap": "lg",
374
456
  "align": "center",
375
457
  "children": [
376
458
  {
@@ -381,50 +463,51 @@
381
463
  },
382
464
  {
383
465
  "type": "stack",
466
+ "justify": "center",
384
467
  "direction": "horizontal",
385
468
  "gap": "sm",
386
- "justify": "center",
387
469
  "children": [
388
470
  {
389
471
  "type": "button",
390
472
  "label": "Retry",
391
473
  "event": "RETRY",
392
- "variant": "primary",
393
- "icon": "refresh-cw"
474
+ "icon": "refresh-cw",
475
+ "variant": "primary"
394
476
  },
395
477
  {
396
478
  "type": "button",
479
+ "variant": "ghost",
397
480
  "label": "Reset",
398
481
  "event": "RESET",
399
- "variant": "ghost",
400
482
  "icon": "rotate-ccw"
401
483
  }
402
484
  ]
403
485
  }
404
- ]
486
+ ],
487
+ "type": "stack",
488
+ "gap": "lg"
405
489
  }
406
490
  ]
407
491
  ]
408
492
  },
409
493
  {
410
- "from": "error",
494
+ "from": "sent",
411
495
  "to": "idle",
412
- "event": "RETRY",
496
+ "event": "RESET",
413
497
  "effects": [
498
+ [
499
+ "set",
500
+ "@entity.sendStatus",
501
+ "idle"
502
+ ],
414
503
  [
415
504
  "render-ui",
416
505
  "main",
417
506
  {
418
- "type": "stack",
419
507
  "direction": "vertical",
420
508
  "gap": "lg",
421
- "align": "stretch",
422
509
  "children": [
423
510
  {
424
- "type": "stack",
425
- "direction": "horizontal",
426
- "gap": "md",
427
- "align": "center",
428
511
  "children": [
429
512
  {
430
513
  "type": "icon",
@@ -432,20 +515,24 @@
432
515
  "size": "lg"
433
516
  },
434
517
  {
435
- "type": "typography",
436
518
  "content": "ServiceNotificationHub Notification Hub",
519
+ "type": "typography",
437
520
  "variant": "h2"
438
521
  }
439
- ]
522
+ ],
523
+ "gap": "md",
524
+ "type": "stack",
525
+ "align": "center",
526
+ "direction": "horizontal"
440
527
  },
441
528
  {
442
529
  "type": "divider"
443
530
  },
444
531
  {
445
- "type": "input",
446
532
  "label": "Recipient",
533
+ "placeholder": "Email or phone number",
447
534
  "bind": "@entity.recipient",
448
- "placeholder": "Email or phone number"
535
+ "type": "input"
449
536
  },
450
537
  {
451
538
  "type": "input",
@@ -454,16 +541,15 @@
454
541
  "placeholder": "Notification subject"
455
542
  },
456
543
  {
457
- "type": "textarea",
458
- "label": "Message",
459
544
  "bind": "@entity.messageBody",
460
- "placeholder": "Write your message..."
545
+ "label": "Message",
546
+ "placeholder": "Write your message...",
547
+ "type": "textarea"
461
548
  },
462
549
  {
463
- "type": "stack",
464
- "direction": "horizontal",
465
- "gap": "sm",
466
550
  "justify": "center",
551
+ "gap": "sm",
552
+ "type": "stack",
467
553
  "children": [
468
554
  {
469
555
  "type": "button",
@@ -473,60 +559,55 @@
473
559
  "icon": "mail"
474
560
  },
475
561
  {
562
+ "icon": "message-circle",
563
+ "variant": "secondary",
476
564
  "type": "button",
477
- "label": "SMS",
478
565
  "event": "SEND_SMS",
479
- "variant": "secondary",
480
- "icon": "message-circle"
566
+ "label": "SMS"
481
567
  },
482
568
  {
483
- "type": "button",
484
569
  "label": "WhatsApp",
485
- "event": "SEND_WHATSAPP",
486
570
  "variant": "secondary",
571
+ "event": "SEND_WHATSAPP",
572
+ "type": "button",
487
573
  "icon": "phone"
488
574
  }
489
- ]
575
+ ],
576
+ "direction": "horizontal"
490
577
  }
491
- ]
578
+ ],
579
+ "align": "stretch",
580
+ "type": "stack"
492
581
  }
493
582
  ]
494
583
  ]
495
584
  },
496
585
  {
497
- "from": "sent",
586
+ "from": "error",
498
587
  "to": "idle",
499
- "event": "RESET",
588
+ "event": "RETRY",
500
589
  "effects": [
501
- [
502
- "set",
503
- "@entity.sendStatus",
504
- "idle"
505
- ],
506
590
  [
507
591
  "render-ui",
508
592
  "main",
509
593
  {
510
- "type": "stack",
511
- "direction": "vertical",
512
- "gap": "lg",
513
594
  "align": "stretch",
514
595
  "children": [
515
596
  {
516
- "type": "stack",
517
597
  "direction": "horizontal",
518
- "gap": "md",
598
+ "type": "stack",
519
599
  "align": "center",
600
+ "gap": "md",
520
601
  "children": [
521
602
  {
522
603
  "type": "icon",
523
- "name": "bell",
524
- "size": "lg"
604
+ "size": "lg",
605
+ "name": "bell"
525
606
  },
526
607
  {
527
- "type": "typography",
528
608
  "content": "ServiceNotificationHub Notification Hub",
529
- "variant": "h2"
609
+ "variant": "h2",
610
+ "type": "typography"
530
611
  }
531
612
  ]
532
613
  },
@@ -534,53 +615,56 @@
534
615
  "type": "divider"
535
616
  },
536
617
  {
537
- "type": "input",
538
- "label": "Recipient",
539
618
  "bind": "@entity.recipient",
540
- "placeholder": "Email or phone number"
619
+ "label": "Recipient",
620
+ "placeholder": "Email or phone number",
621
+ "type": "input"
541
622
  },
542
623
  {
543
624
  "type": "input",
625
+ "placeholder": "Notification subject",
544
626
  "label": "Subject",
545
- "bind": "@entity.subject",
546
- "placeholder": "Notification subject"
627
+ "bind": "@entity.subject"
547
628
  },
548
629
  {
549
- "type": "textarea",
550
- "label": "Message",
630
+ "placeholder": "Write your message...",
551
631
  "bind": "@entity.messageBody",
552
- "placeholder": "Write your message..."
632
+ "type": "textarea",
633
+ "label": "Message"
553
634
  },
554
635
  {
555
636
  "type": "stack",
556
- "direction": "horizontal",
557
- "gap": "sm",
558
- "justify": "center",
559
637
  "children": [
560
638
  {
561
- "type": "button",
562
639
  "label": "Email",
563
- "event": "SEND_EMAIL",
564
640
  "variant": "primary",
565
- "icon": "mail"
641
+ "type": "button",
642
+ "icon": "mail",
643
+ "event": "SEND_EMAIL"
566
644
  },
567
645
  {
568
- "type": "button",
569
646
  "label": "SMS",
570
- "event": "SEND_SMS",
647
+ "icon": "message-circle",
571
648
  "variant": "secondary",
572
- "icon": "message-circle"
649
+ "type": "button",
650
+ "event": "SEND_SMS"
573
651
  },
574
652
  {
575
- "type": "button",
576
653
  "label": "WhatsApp",
577
- "event": "SEND_WHATSAPP",
654
+ "icon": "phone",
578
655
  "variant": "secondary",
579
- "icon": "phone"
656
+ "event": "SEND_WHATSAPP",
657
+ "type": "button"
580
658
  }
581
- ]
659
+ ],
660
+ "justify": "center",
661
+ "direction": "horizontal",
662
+ "gap": "sm"
582
663
  }
583
- ]
664
+ ],
665
+ "gap": "lg",
666
+ "type": "stack",
667
+ "direction": "vertical"
584
668
  }
585
669
  ]
586
670
  ]
@@ -599,21 +683,18 @@
599
683
  "render-ui",
600
684
  "main",
601
685
  {
602
- "type": "stack",
603
- "direction": "vertical",
604
686
  "gap": "lg",
605
- "align": "stretch",
606
687
  "children": [
607
688
  {
608
- "type": "stack",
609
- "direction": "horizontal",
610
689
  "gap": "md",
690
+ "type": "stack",
611
691
  "align": "center",
692
+ "direction": "horizontal",
612
693
  "children": [
613
694
  {
614
695
  "type": "icon",
615
- "name": "bell",
616
- "size": "lg"
696
+ "size": "lg",
697
+ "name": "bell"
617
698
  },
618
699
  {
619
700
  "type": "typography",
@@ -627,58 +708,62 @@
627
708
  },
628
709
  {
629
710
  "type": "input",
630
- "label": "Recipient",
631
711
  "bind": "@entity.recipient",
712
+ "label": "Recipient",
632
713
  "placeholder": "Email or phone number"
633
714
  },
634
715
  {
635
- "type": "input",
716
+ "placeholder": "Notification subject",
636
717
  "label": "Subject",
637
718
  "bind": "@entity.subject",
638
- "placeholder": "Notification subject"
719
+ "type": "input"
639
720
  },
640
721
  {
641
- "type": "textarea",
642
722
  "label": "Message",
723
+ "placeholder": "Write your message...",
643
724
  "bind": "@entity.messageBody",
644
- "placeholder": "Write your message..."
725
+ "type": "textarea"
645
726
  },
646
727
  {
647
- "type": "stack",
648
- "direction": "horizontal",
649
- "gap": "sm",
650
- "justify": "center",
651
728
  "children": [
652
729
  {
653
730
  "type": "button",
731
+ "icon": "mail",
654
732
  "label": "Email",
655
733
  "event": "SEND_EMAIL",
656
- "variant": "primary",
657
- "icon": "mail"
734
+ "variant": "primary"
658
735
  },
659
736
  {
660
- "type": "button",
661
- "label": "SMS",
662
737
  "event": "SEND_SMS",
663
- "variant": "secondary",
664
- "icon": "message-circle"
738
+ "label": "SMS",
739
+ "icon": "message-circle",
740
+ "type": "button",
741
+ "variant": "secondary"
665
742
  },
666
743
  {
667
- "type": "button",
668
744
  "label": "WhatsApp",
669
- "event": "SEND_WHATSAPP",
670
745
  "variant": "secondary",
671
- "icon": "phone"
746
+ "event": "SEND_WHATSAPP",
747
+ "icon": "phone",
748
+ "type": "button"
672
749
  }
673
- ]
750
+ ],
751
+ "justify": "center",
752
+ "gap": "sm",
753
+ "direction": "horizontal",
754
+ "type": "stack"
674
755
  }
675
- ]
756
+ ],
757
+ "align": "stretch",
758
+ "type": "stack",
759
+ "direction": "vertical"
676
760
  }
677
761
  ]
678
762
  ]
679
763
  }
680
764
  ]
681
- }
765
+ },
766
+ "scope": "instance"
682
767
  }
683
768
  ],
684
769
  "pages": [
@@ -694,4 +779,4 @@
694
779
  ]
695
780
  }
696
781
  ]
697
- }
782
+ }