@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-twilio",
3
3
  "version": "1.0.0",
4
- "description": "Twilio messaging integration behavior: compose, send SMS or WhatsApp, track delivery. Wraps the `twilio` service integration with sendSMS and sendWhatsApp operations. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-twilio as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceTwilioOrbital",
@@ -66,8 +66,72 @@
66
66
  "traits": [
67
67
  {
68
68
  "name": "ServiceTwilioTwilio",
69
- "linkedEntity": "ServiceTwilio",
70
69
  "category": "interaction",
70
+ "linkedEntity": "ServiceTwilio",
71
+ "emits": [
72
+ {
73
+ "event": "ServiceTwilioLoaded",
74
+ "description": "Fired when ServiceTwilio 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": "to",
99
+ "type": "string"
100
+ },
101
+ {
102
+ "name": "messageBody",
103
+ "type": "string"
104
+ },
105
+ {
106
+ "name": "channel",
107
+ "type": "string"
108
+ },
109
+ {
110
+ "name": "messageSid",
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": "ServiceTwilioLoadFailed",
125
+ "description": "Fired when ServiceTwilio 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
  {
@@ -91,26 +155,25 @@
91
155
  },
92
156
  {
93
157
  "key": "SEND_SMS",
94
- "name": "Send SMS"
158
+ "name": "Send Sms"
95
159
  },
96
160
  {
97
161
  "key": "SEND_WHATSAPP",
98
- "name": "Send WhatsApp"
162
+ "name": "Send Whatsapp"
99
163
  },
100
164
  {
101
165
  "key": "SENT",
102
- "name": "Message Sent",
166
+ "name": "Sent",
103
167
  "payload": [
104
168
  {
105
169
  "name": "messageSid",
106
- "type": "string",
107
- "required": false
170
+ "type": "string"
108
171
  }
109
172
  ]
110
173
  },
111
174
  {
112
175
  "key": "FAILED",
113
- "name": "Send Failed",
176
+ "name": "Failed",
114
177
  "payload": [
115
178
  {
116
179
  "name": "error",
@@ -119,13 +182,27 @@
119
182
  }
120
183
  ]
121
184
  },
185
+ {
186
+ "key": "RESET",
187
+ "name": "Reset"
188
+ },
122
189
  {
123
190
  "key": "RETRY",
124
191
  "name": "Retry"
125
192
  },
126
193
  {
127
- "key": "RESET",
128
- "name": "Reset"
194
+ "key": "ServiceTwilioLoaded",
195
+ "name": "ServiceTwilio loaded"
196
+ },
197
+ {
198
+ "key": "ServiceTwilioLoadFailed",
199
+ "name": "ServiceTwilio load failed",
200
+ "payload": [
201
+ {
202
+ "name": "message",
203
+ "type": "string"
204
+ }
205
+ ]
129
206
  }
130
207
  ],
131
208
  "transitions": [
@@ -136,22 +213,23 @@
136
213
  "effects": [
137
214
  [
138
215
  "fetch",
139
- "ServiceTwilio"
216
+ "ServiceTwilio",
217
+ {
218
+ "emit": {
219
+ "success": "ServiceTwilioLoaded",
220
+ "failure": "ServiceTwilioLoadFailed"
221
+ }
222
+ }
140
223
  ],
141
224
  [
142
225
  "render-ui",
143
226
  "main",
144
227
  {
145
- "type": "stack",
146
- "direction": "vertical",
147
- "gap": "lg",
148
228
  "align": "stretch",
149
229
  "children": [
150
230
  {
151
- "type": "stack",
152
231
  "direction": "horizontal",
153
232
  "gap": "md",
154
- "align": "center",
155
233
  "children": [
156
234
  {
157
235
  "type": "icon",
@@ -159,50 +237,55 @@
159
237
  "size": "lg"
160
238
  },
161
239
  {
162
- "type": "typography",
163
240
  "content": "ServiceTwilio Messaging",
164
- "variant": "h2"
241
+ "variant": "h2",
242
+ "type": "typography"
165
243
  }
166
- ]
244
+ ],
245
+ "align": "center",
246
+ "type": "stack"
167
247
  },
168
248
  {
169
249
  "type": "divider"
170
250
  },
171
251
  {
172
- "type": "input",
173
- "label": "To",
252
+ "placeholder": "+1234567890",
174
253
  "bind": "@entity.to",
175
- "placeholder": "+1234567890"
254
+ "label": "To",
255
+ "type": "input"
176
256
  },
177
257
  {
178
- "type": "textarea",
179
258
  "label": "Message",
259
+ "placeholder": "Write your message...",
180
260
  "bind": "@entity.messageBody",
181
- "placeholder": "Write your message..."
261
+ "type": "textarea"
182
262
  },
183
263
  {
184
264
  "type": "stack",
185
- "direction": "horizontal",
186
265
  "gap": "sm",
266
+ "direction": "horizontal",
187
267
  "justify": "center",
188
268
  "children": [
189
269
  {
270
+ "icon": "message-circle",
271
+ "variant": "primary",
190
272
  "type": "button",
191
273
  "label": "Send SMS",
192
- "event": "SEND_SMS",
193
- "variant": "primary",
194
- "icon": "message-circle"
274
+ "event": "SEND_SMS"
195
275
  },
196
276
  {
197
- "type": "button",
198
277
  "label": "Send WhatsApp",
199
- "event": "SEND_WHATSAPP",
200
278
  "variant": "secondary",
201
- "icon": "phone"
279
+ "icon": "phone",
280
+ "event": "SEND_WHATSAPP",
281
+ "type": "button"
202
282
  }
203
283
  ]
204
284
  }
205
- ]
285
+ ],
286
+ "direction": "vertical",
287
+ "type": "stack",
288
+ "gap": "lg"
206
289
  }
207
290
  ]
208
291
  ]
@@ -216,8 +299,8 @@
216
299
  "render-ui",
217
300
  "main",
218
301
  {
219
- "type": "loading-state",
220
302
  "title": "Sending message...",
303
+ "type": "loading-state",
221
304
  "message": "Delivering servicetwilio message..."
222
305
  }
223
306
  ],
@@ -276,10 +359,8 @@
276
359
  "render-ui",
277
360
  "main",
278
361
  {
279
- "type": "stack",
280
362
  "direction": "vertical",
281
363
  "gap": "lg",
282
- "align": "center",
283
364
  "children": [
284
365
  {
285
366
  "type": "icon",
@@ -287,18 +368,20 @@
287
368
  "size": "lg"
288
369
  },
289
370
  {
290
- "type": "alert",
291
371
  "variant": "success",
292
- "message": "Message sent successfully"
372
+ "message": "Message sent successfully",
373
+ "type": "alert"
293
374
  },
294
375
  {
295
- "type": "button",
376
+ "variant": "ghost",
296
377
  "label": "Send Another",
297
378
  "event": "RESET",
298
- "variant": "ghost",
379
+ "type": "button",
299
380
  "icon": "rotate-ccw"
300
381
  }
301
- ]
382
+ ],
383
+ "align": "center",
384
+ "type": "stack"
302
385
  }
303
386
  ]
304
387
  ]
@@ -322,63 +405,60 @@
322
405
  "render-ui",
323
406
  "main",
324
407
  {
325
- "type": "stack",
326
- "direction": "vertical",
327
- "gap": "lg",
328
- "align": "center",
329
408
  "children": [
330
409
  {
331
- "type": "error-state",
332
- "title": "Send Failed",
333
410
  "message": "Could not deliver the message.",
334
- "onRetry": "RETRY"
411
+ "onRetry": "RETRY",
412
+ "type": "error-state",
413
+ "title": "Send Failed"
335
414
  },
336
415
  {
337
- "type": "stack",
338
- "direction": "horizontal",
339
416
  "gap": "sm",
340
- "justify": "center",
417
+ "direction": "horizontal",
341
418
  "children": [
342
419
  {
343
420
  "type": "button",
344
- "label": "Retry",
345
- "event": "RETRY",
346
421
  "variant": "primary",
347
- "icon": "refresh-cw"
422
+ "icon": "refresh-cw",
423
+ "label": "Retry",
424
+ "event": "RETRY"
348
425
  },
349
426
  {
350
- "type": "button",
351
- "label": "Reset",
352
427
  "event": "RESET",
353
428
  "variant": "ghost",
354
- "icon": "rotate-ccw"
429
+ "label": "Reset",
430
+ "icon": "rotate-ccw",
431
+ "type": "button"
355
432
  }
356
- ]
433
+ ],
434
+ "justify": "center",
435
+ "type": "stack"
357
436
  }
358
- ]
437
+ ],
438
+ "type": "stack",
439
+ "gap": "lg",
440
+ "direction": "vertical",
441
+ "align": "center"
359
442
  }
360
443
  ]
361
444
  ]
362
445
  },
363
446
  {
364
- "from": "error",
447
+ "from": "sent",
365
448
  "to": "idle",
366
- "event": "RETRY",
449
+ "event": "RESET",
367
450
  "effects": [
451
+ [
452
+ "set",
453
+ "@entity.sendStatus",
454
+ "idle"
455
+ ],
368
456
  [
369
457
  "render-ui",
370
458
  "main",
371
459
  {
372
- "type": "stack",
373
- "direction": "vertical",
374
- "gap": "lg",
375
- "align": "stretch",
376
460
  "children": [
377
461
  {
378
- "type": "stack",
379
- "direction": "horizontal",
380
- "gap": "md",
381
- "align": "center",
382
462
  "children": [
383
463
  {
384
464
  "type": "icon",
@@ -386,129 +466,132 @@
386
466
  "size": "lg"
387
467
  },
388
468
  {
469
+ "variant": "h2",
389
470
  "type": "typography",
390
- "content": "ServiceTwilio Messaging",
391
- "variant": "h2"
471
+ "content": "ServiceTwilio Messaging"
392
472
  }
393
- ]
473
+ ],
474
+ "gap": "md",
475
+ "align": "center",
476
+ "type": "stack",
477
+ "direction": "horizontal"
394
478
  },
395
479
  {
396
480
  "type": "divider"
397
481
  },
398
482
  {
399
483
  "type": "input",
400
- "label": "To",
401
484
  "bind": "@entity.to",
485
+ "label": "To",
402
486
  "placeholder": "+1234567890"
403
487
  },
404
488
  {
405
- "type": "textarea",
406
- "label": "Message",
407
489
  "bind": "@entity.messageBody",
408
- "placeholder": "Write your message..."
490
+ "type": "textarea",
491
+ "placeholder": "Write your message...",
492
+ "label": "Message"
409
493
  },
410
494
  {
411
- "type": "stack",
412
- "direction": "horizontal",
413
495
  "gap": "sm",
414
- "justify": "center",
415
496
  "children": [
416
497
  {
417
- "type": "button",
418
498
  "label": "Send SMS",
419
- "event": "SEND_SMS",
420
499
  "variant": "primary",
421
- "icon": "message-circle"
500
+ "icon": "message-circle",
501
+ "type": "button",
502
+ "event": "SEND_SMS"
422
503
  },
423
504
  {
424
- "type": "button",
425
505
  "label": "Send WhatsApp",
426
- "event": "SEND_WHATSAPP",
506
+ "type": "button",
427
507
  "variant": "secondary",
428
- "icon": "phone"
508
+ "icon": "phone",
509
+ "event": "SEND_WHATSAPP"
429
510
  }
430
- ]
511
+ ],
512
+ "justify": "center",
513
+ "type": "stack",
514
+ "direction": "horizontal"
431
515
  }
432
- ]
516
+ ],
517
+ "direction": "vertical",
518
+ "align": "stretch",
519
+ "type": "stack",
520
+ "gap": "lg"
433
521
  }
434
522
  ]
435
523
  ]
436
524
  },
437
525
  {
438
- "from": "sent",
526
+ "from": "error",
439
527
  "to": "idle",
440
- "event": "RESET",
528
+ "event": "RETRY",
441
529
  "effects": [
442
- [
443
- "set",
444
- "@entity.sendStatus",
445
- "idle"
446
- ],
447
530
  [
448
531
  "render-ui",
449
532
  "main",
450
533
  {
451
- "type": "stack",
452
- "direction": "vertical",
453
534
  "gap": "lg",
454
- "align": "stretch",
535
+ "direction": "vertical",
455
536
  "children": [
456
537
  {
457
- "type": "stack",
458
- "direction": "horizontal",
459
538
  "gap": "md",
460
- "align": "center",
539
+ "type": "stack",
461
540
  "children": [
462
541
  {
463
- "type": "icon",
464
542
  "name": "message-circle",
465
- "size": "lg"
543
+ "size": "lg",
544
+ "type": "icon"
466
545
  },
467
546
  {
468
- "type": "typography",
547
+ "variant": "h2",
469
548
  "content": "ServiceTwilio Messaging",
470
- "variant": "h2"
549
+ "type": "typography"
471
550
  }
472
- ]
551
+ ],
552
+ "direction": "horizontal",
553
+ "align": "center"
473
554
  },
474
555
  {
475
556
  "type": "divider"
476
557
  },
477
558
  {
478
- "type": "input",
559
+ "placeholder": "+1234567890",
479
560
  "label": "To",
480
561
  "bind": "@entity.to",
481
- "placeholder": "+1234567890"
562
+ "type": "input"
482
563
  },
483
564
  {
484
- "type": "textarea",
485
565
  "label": "Message",
566
+ "type": "textarea",
486
567
  "bind": "@entity.messageBody",
487
568
  "placeholder": "Write your message..."
488
569
  },
489
570
  {
490
- "type": "stack",
491
- "direction": "horizontal",
492
571
  "gap": "sm",
493
- "justify": "center",
494
572
  "children": [
495
573
  {
496
574
  "type": "button",
497
575
  "label": "Send SMS",
498
576
  "event": "SEND_SMS",
499
- "variant": "primary",
500
- "icon": "message-circle"
577
+ "icon": "message-circle",
578
+ "variant": "primary"
501
579
  },
502
580
  {
503
- "type": "button",
504
581
  "label": "Send WhatsApp",
582
+ "type": "button",
505
583
  "event": "SEND_WHATSAPP",
506
- "variant": "secondary",
507
- "icon": "phone"
584
+ "icon": "phone",
585
+ "variant": "secondary"
508
586
  }
509
- ]
587
+ ],
588
+ "justify": "center",
589
+ "type": "stack",
590
+ "direction": "horizontal"
510
591
  }
511
- ]
592
+ ],
593
+ "align": "stretch",
594
+ "type": "stack"
512
595
  }
513
596
  ]
514
597
  ]
@@ -528,20 +611,18 @@
528
611
  "main",
529
612
  {
530
613
  "type": "stack",
531
- "direction": "vertical",
532
- "gap": "lg",
533
614
  "align": "stretch",
534
615
  "children": [
535
616
  {
536
617
  "type": "stack",
537
- "direction": "horizontal",
538
618
  "gap": "md",
619
+ "direction": "horizontal",
539
620
  "align": "center",
540
621
  "children": [
541
622
  {
542
- "type": "icon",
543
623
  "name": "message-circle",
544
- "size": "lg"
624
+ "size": "lg",
625
+ "type": "icon"
545
626
  },
546
627
  {
547
628
  "type": "typography",
@@ -555,45 +636,48 @@
555
636
  },
556
637
  {
557
638
  "type": "input",
558
- "label": "To",
559
639
  "bind": "@entity.to",
640
+ "label": "To",
560
641
  "placeholder": "+1234567890"
561
642
  },
562
643
  {
563
- "type": "textarea",
644
+ "placeholder": "Write your message...",
564
645
  "label": "Message",
565
646
  "bind": "@entity.messageBody",
566
- "placeholder": "Write your message..."
647
+ "type": "textarea"
567
648
  },
568
649
  {
569
650
  "type": "stack",
570
- "direction": "horizontal",
571
651
  "gap": "sm",
572
- "justify": "center",
573
652
  "children": [
574
653
  {
575
- "type": "button",
576
654
  "label": "Send SMS",
655
+ "icon": "message-circle",
577
656
  "event": "SEND_SMS",
578
- "variant": "primary",
579
- "icon": "message-circle"
657
+ "type": "button",
658
+ "variant": "primary"
580
659
  },
581
660
  {
582
- "type": "button",
661
+ "variant": "secondary",
662
+ "icon": "phone",
583
663
  "label": "Send WhatsApp",
584
664
  "event": "SEND_WHATSAPP",
585
- "variant": "secondary",
586
- "icon": "phone"
665
+ "type": "button"
587
666
  }
588
- ]
667
+ ],
668
+ "direction": "horizontal",
669
+ "justify": "center"
589
670
  }
590
- ]
671
+ ],
672
+ "gap": "lg",
673
+ "direction": "vertical"
591
674
  }
592
675
  ]
593
676
  ]
594
677
  }
595
678
  ]
596
- }
679
+ },
680
+ "scope": "instance"
597
681
  }
598
682
  ],
599
683
  "pages": [
@@ -609,4 +693,4 @@
609
693
  ]
610
694
  }
611
695
  ]
612
- }
696
+ }