@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-llm",
3
3
  "version": "1.0.0",
4
- "description": "LLM service integration behavior: generate, classify, summarize text. Wraps the `llm` integration with 4 actions via separate action events. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-llm as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceLlmOrbital",
@@ -66,8 +66,69 @@
66
66
  "traits": [
67
67
  {
68
68
  "name": "ServiceLlmLlm",
69
- "linkedEntity": "ServiceLlm",
70
69
  "category": "interaction",
70
+ "linkedEntity": "ServiceLlm",
71
+ "emits": [
72
+ {
73
+ "event": "ServiceLlmLoaded",
74
+ "description": "Fired when ServiceLlm finishes loading",
75
+ "scope": "internal",
76
+ "payload": [
77
+ {
78
+ "name": "id",
79
+ "type": "string",
80
+ "required": true
81
+ },
82
+ {
83
+ "name": "inputText",
84
+ "type": "string"
85
+ },
86
+ {
87
+ "name": "action",
88
+ "type": "string"
89
+ },
90
+ {
91
+ "name": "result",
92
+ "type": "string"
93
+ },
94
+ {
95
+ "name": "llmStatus",
96
+ "type": "string"
97
+ },
98
+ {
99
+ "name": "error",
100
+ "type": "string"
101
+ },
102
+ {
103
+ "name": "name",
104
+ "type": "string"
105
+ },
106
+ {
107
+ "name": "description",
108
+ "type": "string"
109
+ },
110
+ {
111
+ "name": "status",
112
+ "type": "string"
113
+ },
114
+ {
115
+ "name": "createdAt",
116
+ "type": "string"
117
+ }
118
+ ]
119
+ },
120
+ {
121
+ "event": "ServiceLlmLoadFailed",
122
+ "description": "Fired when ServiceLlm fails to load",
123
+ "scope": "internal",
124
+ "payload": [
125
+ {
126
+ "name": "message",
127
+ "type": "string"
128
+ }
129
+ ]
130
+ }
131
+ ],
71
132
  "stateMachine": {
72
133
  "states": [
73
134
  {
@@ -123,13 +184,27 @@
123
184
  }
124
185
  ]
125
186
  },
187
+ {
188
+ "key": "RESET",
189
+ "name": "Reset"
190
+ },
126
191
  {
127
192
  "key": "RETRY",
128
193
  "name": "Retry"
129
194
  },
130
195
  {
131
- "key": "RESET",
132
- "name": "Reset"
196
+ "key": "ServiceLlmLoaded",
197
+ "name": "ServiceLlm loaded"
198
+ },
199
+ {
200
+ "key": "ServiceLlmLoadFailed",
201
+ "name": "ServiceLlm load failed",
202
+ "payload": [
203
+ {
204
+ "name": "message",
205
+ "type": "string"
206
+ }
207
+ ]
133
208
  }
134
209
  ],
135
210
  "transitions": [
@@ -140,74 +215,80 @@
140
215
  "effects": [
141
216
  [
142
217
  "fetch",
143
- "ServiceLlm"
218
+ "ServiceLlm",
219
+ {
220
+ "emit": {
221
+ "failure": "ServiceLlmLoadFailed",
222
+ "success": "ServiceLlmLoaded"
223
+ }
224
+ }
144
225
  ],
145
226
  [
146
227
  "render-ui",
147
228
  "main",
148
229
  {
149
- "type": "stack",
150
- "direction": "vertical",
151
- "gap": "lg",
152
- "align": "stretch",
153
230
  "children": [
154
231
  {
155
- "type": "stack",
156
- "direction": "horizontal",
157
- "gap": "md",
158
- "align": "center",
159
232
  "children": [
160
233
  {
161
234
  "type": "icon",
162
- "name": "brain",
163
- "size": "lg"
235
+ "size": "lg",
236
+ "name": "brain"
164
237
  },
165
238
  {
239
+ "variant": "h2",
166
240
  "type": "typography",
167
- "content": "ServiceLlm LLM",
168
- "variant": "h2"
241
+ "content": "ServiceLlm LLM"
169
242
  }
170
- ]
243
+ ],
244
+ "gap": "md",
245
+ "direction": "horizontal",
246
+ "align": "center",
247
+ "type": "stack"
171
248
  },
172
249
  {
173
250
  "type": "divider"
174
251
  },
175
252
  {
176
253
  "type": "textarea",
254
+ "placeholder": "Enter text for LLM processing...",
177
255
  "label": "Input Text",
178
- "bind": "@entity.inputText",
179
- "placeholder": "Enter text for LLM processing..."
256
+ "bind": "@entity.inputText"
180
257
  },
181
258
  {
182
- "type": "stack",
183
259
  "direction": "horizontal",
260
+ "type": "stack",
184
261
  "gap": "sm",
185
262
  "justify": "center",
186
263
  "children": [
187
264
  {
188
265
  "type": "button",
189
- "label": "Generate",
190
266
  "event": "GENERATE",
267
+ "label": "Generate",
191
268
  "variant": "primary",
192
269
  "icon": "sparkles"
193
270
  },
194
271
  {
195
272
  "type": "button",
196
- "label": "Classify",
197
- "event": "CLASSIFY",
198
273
  "variant": "secondary",
199
- "icon": "tag"
274
+ "icon": "tag",
275
+ "event": "CLASSIFY",
276
+ "label": "Classify"
200
277
  },
201
278
  {
202
- "type": "button",
203
279
  "label": "Summarize",
204
- "event": "SUMMARIZE",
280
+ "type": "button",
281
+ "icon": "align-left",
205
282
  "variant": "secondary",
206
- "icon": "align-left"
283
+ "event": "SUMMARIZE"
207
284
  }
208
285
  ]
209
286
  }
210
- ]
287
+ ],
288
+ "gap": "lg",
289
+ "align": "stretch",
290
+ "type": "stack",
291
+ "direction": "vertical"
211
292
  }
212
293
  ]
213
294
  ]
@@ -226,9 +307,9 @@
226
307
  "render-ui",
227
308
  "main",
228
309
  {
229
- "type": "loading-state",
310
+ "message": "Running servicellm LLM task...",
230
311
  "title": "Processing...",
231
- "message": "Running servicellm LLM task..."
312
+ "type": "loading-state"
232
313
  }
233
314
  ],
234
315
  [
@@ -255,9 +336,9 @@
255
336
  "render-ui",
256
337
  "main",
257
338
  {
258
- "type": "loading-state",
259
339
  "title": "Processing...",
260
- "message": "Running servicellm LLM task..."
340
+ "message": "Running servicellm LLM task...",
341
+ "type": "loading-state"
261
342
  }
262
343
  ],
263
344
  [
@@ -289,9 +370,9 @@
289
370
  "render-ui",
290
371
  "main",
291
372
  {
373
+ "message": "Running servicellm LLM task...",
292
374
  "type": "loading-state",
293
- "title": "Processing...",
294
- "message": "Running servicellm LLM task..."
375
+ "title": "Processing..."
295
376
  }
296
377
  ],
297
378
  [
@@ -323,15 +404,15 @@
323
404
  "render-ui",
324
405
  "main",
325
406
  {
326
- "type": "stack",
327
- "direction": "vertical",
328
407
  "gap": "lg",
329
408
  "align": "center",
409
+ "direction": "vertical",
410
+ "type": "stack",
330
411
  "children": [
331
412
  {
332
- "type": "icon",
413
+ "size": "lg",
333
414
  "name": "check-circle",
334
- "size": "lg"
415
+ "type": "icon"
335
416
  },
336
417
  {
337
418
  "type": "alert",
@@ -339,15 +420,15 @@
339
420
  "message": "LLM task complete"
340
421
  },
341
422
  {
342
- "type": "typography",
343
423
  "variant": "body",
344
- "content": "@entity.result"
424
+ "content": "@entity.result",
425
+ "type": "typography"
345
426
  },
346
427
  {
347
428
  "type": "button",
429
+ "variant": "ghost",
348
430
  "label": "Start Over",
349
431
  "event": "RESET",
350
- "variant": "ghost",
351
432
  "icon": "rotate-ccw"
352
433
  }
353
434
  ]
@@ -374,38 +455,38 @@
374
455
  "render-ui",
375
456
  "main",
376
457
  {
377
- "type": "stack",
378
458
  "direction": "vertical",
379
- "gap": "lg",
380
459
  "align": "center",
460
+ "gap": "lg",
461
+ "type": "stack",
381
462
  "children": [
382
463
  {
464
+ "onRetry": "RETRY",
383
465
  "type": "error-state",
384
- "title": "LLM Failed",
385
466
  "message": "@entity.error",
386
- "onRetry": "RETRY"
467
+ "title": "LLM Failed"
387
468
  },
388
469
  {
389
- "type": "stack",
390
- "direction": "horizontal",
391
- "gap": "sm",
392
470
  "justify": "center",
393
471
  "children": [
394
472
  {
395
- "type": "button",
396
473
  "label": "Retry",
397
- "event": "RETRY",
474
+ "icon": "refresh-cw",
398
475
  "variant": "primary",
399
- "icon": "refresh-cw"
476
+ "event": "RETRY",
477
+ "type": "button"
400
478
  },
401
479
  {
402
- "type": "button",
480
+ "icon": "rotate-ccw",
403
481
  "label": "Reset",
404
- "event": "RESET",
405
482
  "variant": "ghost",
406
- "icon": "rotate-ccw"
483
+ "event": "RESET",
484
+ "type": "button"
407
485
  }
408
- ]
486
+ ],
487
+ "type": "stack",
488
+ "direction": "horizontal",
489
+ "gap": "sm"
409
490
  }
410
491
  ]
411
492
  }
@@ -413,9 +494,9 @@
413
494
  ]
414
495
  },
415
496
  {
416
- "from": "error",
497
+ "from": "complete",
417
498
  "to": "idle",
418
- "event": "RETRY",
499
+ "event": "RESET",
419
500
  "effects": [
420
501
  [
421
502
  "set",
@@ -426,66 +507,66 @@
426
507
  "render-ui",
427
508
  "main",
428
509
  {
429
- "type": "stack",
430
- "direction": "vertical",
431
510
  "gap": "lg",
511
+ "type": "stack",
432
512
  "align": "stretch",
513
+ "direction": "vertical",
433
514
  "children": [
434
515
  {
435
- "type": "stack",
436
- "direction": "horizontal",
437
- "gap": "md",
438
516
  "align": "center",
439
517
  "children": [
440
518
  {
519
+ "size": "lg",
441
520
  "type": "icon",
442
- "name": "brain",
443
- "size": "lg"
521
+ "name": "brain"
444
522
  },
445
523
  {
446
- "type": "typography",
447
524
  "content": "ServiceLlm LLM",
448
- "variant": "h2"
525
+ "variant": "h2",
526
+ "type": "typography"
449
527
  }
450
- ]
528
+ ],
529
+ "type": "stack",
530
+ "direction": "horizontal",
531
+ "gap": "md"
451
532
  },
452
533
  {
453
534
  "type": "divider"
454
535
  },
455
536
  {
456
- "type": "textarea",
457
- "label": "Input Text",
458
537
  "bind": "@entity.inputText",
538
+ "label": "Input Text",
539
+ "type": "textarea",
459
540
  "placeholder": "Enter text for LLM processing..."
460
541
  },
461
542
  {
462
543
  "type": "stack",
463
- "direction": "horizontal",
464
544
  "gap": "sm",
465
545
  "justify": "center",
466
546
  "children": [
467
547
  {
468
548
  "type": "button",
469
- "label": "Generate",
470
- "event": "GENERATE",
471
549
  "variant": "primary",
472
- "icon": "sparkles"
550
+ "event": "GENERATE",
551
+ "icon": "sparkles",
552
+ "label": "Generate"
473
553
  },
474
554
  {
475
- "type": "button",
476
- "label": "Classify",
477
- "event": "CLASSIFY",
478
555
  "variant": "secondary",
479
- "icon": "tag"
556
+ "icon": "tag",
557
+ "label": "Classify",
558
+ "type": "button",
559
+ "event": "CLASSIFY"
480
560
  },
481
561
  {
482
- "type": "button",
483
562
  "label": "Summarize",
484
563
  "event": "SUMMARIZE",
485
- "variant": "secondary",
486
- "icon": "align-left"
564
+ "type": "button",
565
+ "icon": "align-left",
566
+ "variant": "secondary"
487
567
  }
488
- ]
568
+ ],
569
+ "direction": "horizontal"
489
570
  }
490
571
  ]
491
572
  }
@@ -493,9 +574,9 @@
493
574
  ]
494
575
  },
495
576
  {
496
- "from": "complete",
577
+ "from": "error",
497
578
  "to": "idle",
498
- "event": "RESET",
579
+ "event": "RETRY",
499
580
  "effects": [
500
581
  [
501
582
  "set",
@@ -506,26 +587,24 @@
506
587
  "render-ui",
507
588
  "main",
508
589
  {
509
- "type": "stack",
510
- "direction": "vertical",
511
- "gap": "lg",
512
590
  "align": "stretch",
591
+ "type": "stack",
513
592
  "children": [
514
593
  {
515
594
  "type": "stack",
516
- "direction": "horizontal",
517
595
  "gap": "md",
596
+ "direction": "horizontal",
518
597
  "align": "center",
519
598
  "children": [
520
599
  {
521
- "type": "icon",
600
+ "size": "lg",
522
601
  "name": "brain",
523
- "size": "lg"
602
+ "type": "icon"
524
603
  },
525
604
  {
526
- "type": "typography",
605
+ "variant": "h2",
527
606
  "content": "ServiceLlm LLM",
528
- "variant": "h2"
607
+ "type": "typography"
529
608
  }
530
609
  ]
531
610
  },
@@ -533,20 +612,16 @@
533
612
  "type": "divider"
534
613
  },
535
614
  {
536
- "type": "textarea",
537
615
  "label": "Input Text",
538
616
  "bind": "@entity.inputText",
617
+ "type": "textarea",
539
618
  "placeholder": "Enter text for LLM processing..."
540
619
  },
541
620
  {
542
- "type": "stack",
543
- "direction": "horizontal",
544
- "gap": "sm",
545
- "justify": "center",
546
621
  "children": [
547
622
  {
548
- "type": "button",
549
623
  "label": "Generate",
624
+ "type": "button",
550
625
  "event": "GENERATE",
551
626
  "variant": "primary",
552
627
  "icon": "sparkles"
@@ -559,15 +634,21 @@
559
634
  "icon": "tag"
560
635
  },
561
636
  {
562
- "type": "button",
563
- "label": "Summarize",
564
637
  "event": "SUMMARIZE",
638
+ "type": "button",
565
639
  "variant": "secondary",
640
+ "label": "Summarize",
566
641
  "icon": "align-left"
567
642
  }
568
- ]
643
+ ],
644
+ "type": "stack",
645
+ "gap": "sm",
646
+ "direction": "horizontal",
647
+ "justify": "center"
569
648
  }
570
- ]
649
+ ],
650
+ "gap": "lg",
651
+ "direction": "vertical"
571
652
  }
572
653
  ]
573
654
  ]
@@ -586,16 +667,11 @@
586
667
  "render-ui",
587
668
  "main",
588
669
  {
589
- "type": "stack",
590
670
  "direction": "vertical",
591
671
  "gap": "lg",
592
- "align": "stretch",
593
672
  "children": [
594
673
  {
595
- "type": "stack",
596
674
  "direction": "horizontal",
597
- "gap": "md",
598
- "align": "center",
599
675
  "children": [
600
676
  {
601
677
  "type": "icon",
@@ -604,39 +680,42 @@
604
680
  },
605
681
  {
606
682
  "type": "typography",
607
- "content": "ServiceLlm LLM",
608
- "variant": "h2"
683
+ "variant": "h2",
684
+ "content": "ServiceLlm LLM"
609
685
  }
610
- ]
686
+ ],
687
+ "gap": "md",
688
+ "type": "stack",
689
+ "align": "center"
611
690
  },
612
691
  {
613
692
  "type": "divider"
614
693
  },
615
694
  {
616
- "type": "textarea",
617
- "label": "Input Text",
618
695
  "bind": "@entity.inputText",
696
+ "label": "Input Text",
697
+ "type": "textarea",
619
698
  "placeholder": "Enter text for LLM processing..."
620
699
  },
621
700
  {
622
- "type": "stack",
623
701
  "direction": "horizontal",
624
702
  "gap": "sm",
703
+ "type": "stack",
625
704
  "justify": "center",
626
705
  "children": [
627
706
  {
628
- "type": "button",
629
- "label": "Generate",
630
707
  "event": "GENERATE",
631
708
  "variant": "primary",
632
- "icon": "sparkles"
709
+ "type": "button",
710
+ "icon": "sparkles",
711
+ "label": "Generate"
633
712
  },
634
713
  {
635
- "type": "button",
636
714
  "label": "Classify",
637
- "event": "CLASSIFY",
638
715
  "variant": "secondary",
639
- "icon": "tag"
716
+ "event": "CLASSIFY",
717
+ "icon": "tag",
718
+ "type": "button"
640
719
  },
641
720
  {
642
721
  "type": "button",
@@ -647,13 +726,16 @@
647
726
  }
648
727
  ]
649
728
  }
650
- ]
729
+ ],
730
+ "type": "stack",
731
+ "align": "stretch"
651
732
  }
652
733
  ]
653
734
  ]
654
735
  }
655
736
  ]
656
- }
737
+ },
738
+ "scope": "instance"
657
739
  }
658
740
  ],
659
741
  "pages": [
@@ -669,4 +751,4 @@
669
751
  ]
670
752
  }
671
753
  ]
672
- }
754
+ }