@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-storage",
3
3
  "version": "1.0.0",
4
- "description": "Storage service integration behavior: upload, download, list, delete files. Wraps the `storage` service with separate events for each operation. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-storage as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceStorageOrbital",
@@ -70,8 +70,76 @@
70
70
  "traits": [
71
71
  {
72
72
  "name": "ServiceStorageStorage",
73
- "linkedEntity": "ServiceStorage",
74
73
  "category": "interaction",
74
+ "linkedEntity": "ServiceStorage",
75
+ "emits": [
76
+ {
77
+ "event": "ServiceStorageLoaded",
78
+ "description": "Fired when ServiceStorage finishes loading",
79
+ "scope": "internal",
80
+ "payload": [
81
+ {
82
+ "name": "id",
83
+ "type": "string"
84
+ },
85
+ {
86
+ "name": "name",
87
+ "type": "string"
88
+ },
89
+ {
90
+ "name": "description",
91
+ "type": "string"
92
+ },
93
+ {
94
+ "name": "status",
95
+ "type": "string"
96
+ },
97
+ {
98
+ "name": "createdAt",
99
+ "type": "string"
100
+ },
101
+ {
102
+ "name": "bucket",
103
+ "type": "string"
104
+ },
105
+ {
106
+ "name": "fileKey",
107
+ "type": "string"
108
+ },
109
+ {
110
+ "name": "prefix",
111
+ "type": "string"
112
+ },
113
+ {
114
+ "name": "content",
115
+ "type": "string"
116
+ },
117
+ {
118
+ "name": "storageStatus",
119
+ "type": "string"
120
+ },
121
+ {
122
+ "name": "result",
123
+ "type": "string"
124
+ },
125
+ {
126
+ "name": "error",
127
+ "type": "string"
128
+ }
129
+ ]
130
+ },
131
+ {
132
+ "event": "ServiceStorageLoadFailed",
133
+ "description": "Fired when ServiceStorage fails to load",
134
+ "scope": "internal",
135
+ "payload": [
136
+ {
137
+ "name": "message",
138
+ "type": "string"
139
+ }
140
+ ]
141
+ }
142
+ ],
75
143
  "stateMachine": {
76
144
  "states": [
77
145
  {
@@ -134,6 +202,20 @@
134
202
  {
135
203
  "key": "RESET",
136
204
  "name": "Reset"
205
+ },
206
+ {
207
+ "key": "ServiceStorageLoaded",
208
+ "name": "ServiceStorage loaded"
209
+ },
210
+ {
211
+ "key": "ServiceStorageLoadFailed",
212
+ "name": "ServiceStorage load failed",
213
+ "payload": [
214
+ {
215
+ "name": "message",
216
+ "type": "string"
217
+ }
218
+ ]
137
219
  }
138
220
  ],
139
221
  "transitions": [
@@ -144,99 +226,105 @@
144
226
  "effects": [
145
227
  [
146
228
  "fetch",
147
- "ServiceStorage"
229
+ "ServiceStorage",
230
+ {
231
+ "emit": {
232
+ "success": "ServiceStorageLoaded",
233
+ "failure": "ServiceStorageLoadFailed"
234
+ }
235
+ }
148
236
  ],
149
237
  [
150
238
  "render-ui",
151
239
  "main",
152
240
  {
153
- "type": "stack",
154
- "direction": "vertical",
155
241
  "gap": "lg",
156
- "align": "stretch",
157
242
  "children": [
158
243
  {
159
- "type": "stack",
160
- "direction": "horizontal",
161
- "gap": "md",
162
244
  "align": "center",
163
245
  "children": [
164
246
  {
247
+ "size": "lg",
165
248
  "type": "icon",
166
- "name": "hard-drive",
167
- "size": "lg"
249
+ "name": "hard-drive"
168
250
  },
169
251
  {
170
252
  "type": "typography",
171
253
  "content": "ServiceStorage Storage",
172
254
  "variant": "h2"
173
255
  }
174
- ]
256
+ ],
257
+ "type": "stack",
258
+ "gap": "md",
259
+ "direction": "horizontal"
175
260
  },
176
261
  {
177
262
  "type": "divider"
178
263
  },
179
264
  {
180
- "type": "input",
181
- "label": "Bucket",
182
265
  "bind": "@entity.bucket",
183
- "placeholder": "bucket-name"
266
+ "type": "input",
267
+ "placeholder": "bucket-name",
268
+ "label": "Bucket"
184
269
  },
185
270
  {
186
- "type": "input",
187
- "label": "File Key",
188
271
  "bind": "@entity.fileKey",
272
+ "label": "File Key",
273
+ "type": "input",
189
274
  "placeholder": "path/to/file.txt"
190
275
  },
191
276
  {
277
+ "placeholder": "path/prefix/",
192
278
  "type": "input",
193
279
  "label": "Prefix",
194
- "bind": "@entity.prefix",
195
- "placeholder": "path/prefix/"
280
+ "bind": "@entity.prefix"
196
281
  },
197
282
  {
283
+ "bind": "@entity.content",
198
284
  "type": "textarea",
199
285
  "label": "Content",
200
- "bind": "@entity.content",
201
286
  "placeholder": "File content..."
202
287
  },
203
288
  {
204
- "type": "stack",
205
- "direction": "horizontal",
206
- "gap": "sm",
207
- "justify": "center",
208
289
  "children": [
209
290
  {
210
- "type": "button",
211
291
  "label": "Upload",
292
+ "type": "button",
212
293
  "event": "UPLOAD_FILE",
213
294
  "variant": "primary",
214
295
  "icon": "upload"
215
296
  },
216
297
  {
298
+ "event": "DOWNLOAD_FILE",
217
299
  "type": "button",
218
300
  "label": "Download",
219
- "event": "DOWNLOAD_FILE",
220
301
  "variant": "secondary",
221
302
  "icon": "download"
222
303
  },
223
304
  {
224
- "type": "button",
225
- "label": "List",
226
- "event": "LIST_FILES",
227
305
  "variant": "secondary",
228
- "icon": "list"
306
+ "event": "LIST_FILES",
307
+ "icon": "list",
308
+ "type": "button",
309
+ "label": "List"
229
310
  },
230
311
  {
231
- "type": "button",
312
+ "icon": "trash-2",
232
313
  "label": "Delete",
233
- "event": "DELETE_FILE",
314
+ "type": "button",
234
315
  "variant": "destructive",
235
- "icon": "trash-2"
316
+ "event": "DELETE_FILE"
236
317
  }
237
- ]
318
+ ],
319
+ "justify": "center",
320
+ "type": "stack",
321
+ "direction": "horizontal",
322
+ "gap": "sm"
238
323
  }
239
- ]
324
+ ],
325
+ "type": "stack",
326
+ "direction": "vertical",
327
+ "align": "stretch"
240
328
  }
241
329
  ]
242
330
  ]
@@ -250,9 +338,9 @@
250
338
  "render-ui",
251
339
  "main",
252
340
  {
341
+ "message": "Executing storage operation on servicestorage...",
253
342
  "type": "loading-state",
254
- "title": "Processing...",
255
- "message": "Executing storage operation on servicestorage..."
343
+ "title": "Processing..."
256
344
  }
257
345
  ],
258
346
  [
@@ -260,9 +348,9 @@
260
348
  "storage",
261
349
  "upload",
262
350
  {
263
- "bucket": "@entity.bucket",
351
+ "content": "@entity.content",
264
352
  "key": "@entity.fileKey",
265
- "content": "@entity.content"
353
+ "bucket": "@entity.bucket"
266
354
  }
267
355
  ]
268
356
  ]
@@ -276,9 +364,9 @@
276
364
  "render-ui",
277
365
  "main",
278
366
  {
367
+ "message": "Executing storage operation on servicestorage...",
279
368
  "type": "loading-state",
280
- "title": "Processing...",
281
- "message": "Executing storage operation on servicestorage..."
369
+ "title": "Processing..."
282
370
  }
283
371
  ],
284
372
  [
@@ -301,9 +389,9 @@
301
389
  "render-ui",
302
390
  "main",
303
391
  {
304
- "type": "loading-state",
305
392
  "title": "Processing...",
306
- "message": "Executing storage operation on servicestorage..."
393
+ "message": "Executing storage operation on servicestorage...",
394
+ "type": "loading-state"
307
395
  }
308
396
  ],
309
397
  [
@@ -326,9 +414,9 @@
326
414
  "render-ui",
327
415
  "main",
328
416
  {
417
+ "message": "Executing storage operation on servicestorage...",
329
418
  "type": "loading-state",
330
- "title": "Processing...",
331
- "message": "Executing storage operation on servicestorage..."
419
+ "title": "Processing..."
332
420
  }
333
421
  ],
334
422
  [
@@ -364,7 +452,6 @@
364
452
  "type": "stack",
365
453
  "direction": "vertical",
366
454
  "gap": "lg",
367
- "align": "center",
368
455
  "children": [
369
456
  {
370
457
  "type": "icon",
@@ -372,24 +459,25 @@
372
459
  "size": "lg"
373
460
  },
374
461
  {
375
- "type": "alert",
462
+ "message": "Operation completed successfully",
376
463
  "variant": "success",
377
- "message": "Operation completed successfully"
464
+ "type": "alert"
378
465
  },
379
466
  {
380
- "type": "typography",
381
- "variant": "body",
382
467
  "color": "muted",
383
- "content": "@entity.result"
468
+ "type": "typography",
469
+ "content": "@entity.result",
470
+ "variant": "body"
384
471
  },
385
472
  {
386
- "type": "button",
387
473
  "label": "Back",
388
- "event": "RESET",
474
+ "type": "button",
389
475
  "variant": "ghost",
476
+ "event": "RESET",
390
477
  "icon": "rotate-ccw"
391
478
  }
392
- ]
479
+ ],
480
+ "align": "center"
393
481
  }
394
482
  ]
395
483
  ]
@@ -413,22 +501,22 @@
413
501
  "render-ui",
414
502
  "main",
415
503
  {
504
+ "gap": "lg",
416
505
  "type": "stack",
417
506
  "direction": "vertical",
418
- "gap": "lg",
419
507
  "align": "center",
420
508
  "children": [
421
509
  {
422
- "type": "error-state",
423
510
  "title": "Operation Failed",
424
- "message": "@entity.error"
511
+ "message": "@entity.error",
512
+ "type": "error-state"
425
513
  },
426
514
  {
427
- "type": "button",
428
- "label": "Back",
429
515
  "event": "RESET",
430
516
  "variant": "ghost",
431
- "icon": "rotate-ccw"
517
+ "type": "button",
518
+ "icon": "rotate-ccw",
519
+ "label": "Back"
432
520
  }
433
521
  ]
434
522
  }
@@ -449,43 +537,43 @@
449
537
  "render-ui",
450
538
  "main",
451
539
  {
452
- "type": "stack",
453
- "direction": "vertical",
454
540
  "gap": "lg",
541
+ "type": "stack",
455
542
  "align": "stretch",
543
+ "direction": "vertical",
456
544
  "children": [
457
545
  {
458
- "type": "stack",
459
- "direction": "horizontal",
460
- "gap": "md",
461
546
  "align": "center",
547
+ "type": "stack",
462
548
  "children": [
463
549
  {
464
- "type": "icon",
465
550
  "name": "hard-drive",
466
- "size": "lg"
551
+ "size": "lg",
552
+ "type": "icon"
467
553
  },
468
554
  {
555
+ "variant": "h2",
469
556
  "type": "typography",
470
- "content": "ServiceStorage Storage",
471
- "variant": "h2"
557
+ "content": "ServiceStorage Storage"
472
558
  }
473
- ]
559
+ ],
560
+ "gap": "md",
561
+ "direction": "horizontal"
474
562
  },
475
563
  {
476
564
  "type": "divider"
477
565
  },
478
566
  {
567
+ "bind": "@entity.bucket",
479
568
  "type": "input",
480
569
  "label": "Bucket",
481
- "bind": "@entity.bucket",
482
570
  "placeholder": "bucket-name"
483
571
  },
484
572
  {
485
- "type": "input",
573
+ "placeholder": "path/to/file.txt",
486
574
  "label": "File Key",
487
- "bind": "@entity.fileKey",
488
- "placeholder": "path/to/file.txt"
575
+ "type": "input",
576
+ "bind": "@entity.fileKey"
489
577
  },
490
578
  {
491
579
  "type": "input",
@@ -494,37 +582,37 @@
494
582
  "placeholder": "path/prefix/"
495
583
  },
496
584
  {
585
+ "bind": "@entity.content",
497
586
  "type": "textarea",
498
587
  "label": "Content",
499
- "bind": "@entity.content",
500
588
  "placeholder": "File content..."
501
589
  },
502
590
  {
503
- "type": "stack",
504
591
  "direction": "horizontal",
505
- "gap": "sm",
506
592
  "justify": "center",
593
+ "gap": "sm",
594
+ "type": "stack",
507
595
  "children": [
508
596
  {
509
- "type": "button",
510
597
  "label": "Upload",
511
- "event": "UPLOAD_FILE",
512
598
  "variant": "primary",
513
- "icon": "upload"
599
+ "icon": "upload",
600
+ "event": "UPLOAD_FILE",
601
+ "type": "button"
514
602
  },
515
603
  {
516
- "type": "button",
604
+ "variant": "secondary",
517
605
  "label": "Download",
518
606
  "event": "DOWNLOAD_FILE",
519
- "variant": "secondary",
520
- "icon": "download"
607
+ "icon": "download",
608
+ "type": "button"
521
609
  },
522
610
  {
611
+ "variant": "secondary",
523
612
  "type": "button",
524
613
  "label": "List",
525
- "event": "LIST_FILES",
526
- "variant": "secondary",
527
- "icon": "list"
614
+ "icon": "list",
615
+ "event": "LIST_FILES"
528
616
  },
529
617
  {
530
618
  "type": "button",
@@ -555,98 +643,99 @@
555
643
  "main",
556
644
  {
557
645
  "type": "stack",
558
- "direction": "vertical",
559
- "gap": "lg",
560
- "align": "stretch",
561
646
  "children": [
562
647
  {
563
648
  "type": "stack",
564
- "direction": "horizontal",
565
- "gap": "md",
566
649
  "align": "center",
567
650
  "children": [
568
651
  {
569
652
  "type": "icon",
570
- "name": "hard-drive",
571
- "size": "lg"
653
+ "size": "lg",
654
+ "name": "hard-drive"
572
655
  },
573
656
  {
657
+ "variant": "h2",
574
658
  "type": "typography",
575
- "content": "ServiceStorage Storage",
576
- "variant": "h2"
659
+ "content": "ServiceStorage Storage"
577
660
  }
578
- ]
661
+ ],
662
+ "direction": "horizontal",
663
+ "gap": "md"
579
664
  },
580
665
  {
581
666
  "type": "divider"
582
667
  },
583
668
  {
584
- "type": "input",
585
669
  "label": "Bucket",
586
- "bind": "@entity.bucket",
587
- "placeholder": "bucket-name"
670
+ "type": "input",
671
+ "placeholder": "bucket-name",
672
+ "bind": "@entity.bucket"
588
673
  },
589
674
  {
590
- "type": "input",
591
675
  "label": "File Key",
592
676
  "bind": "@entity.fileKey",
677
+ "type": "input",
593
678
  "placeholder": "path/to/file.txt"
594
679
  },
595
680
  {
596
- "type": "input",
681
+ "placeholder": "path/prefix/",
597
682
  "label": "Prefix",
598
683
  "bind": "@entity.prefix",
599
- "placeholder": "path/prefix/"
684
+ "type": "input"
600
685
  },
601
686
  {
602
- "type": "textarea",
603
687
  "label": "Content",
604
- "bind": "@entity.content",
605
- "placeholder": "File content..."
688
+ "type": "textarea",
689
+ "placeholder": "File content...",
690
+ "bind": "@entity.content"
606
691
  },
607
692
  {
608
693
  "type": "stack",
609
- "direction": "horizontal",
610
- "gap": "sm",
611
694
  "justify": "center",
612
695
  "children": [
613
696
  {
614
697
  "type": "button",
615
698
  "label": "Upload",
616
- "event": "UPLOAD_FILE",
699
+ "icon": "upload",
617
700
  "variant": "primary",
618
- "icon": "upload"
701
+ "event": "UPLOAD_FILE"
619
702
  },
620
703
  {
621
704
  "type": "button",
622
- "label": "Download",
623
- "event": "DOWNLOAD_FILE",
624
705
  "variant": "secondary",
625
- "icon": "download"
706
+ "event": "DOWNLOAD_FILE",
707
+ "icon": "download",
708
+ "label": "Download"
626
709
  },
627
710
  {
628
711
  "type": "button",
629
- "label": "List",
630
- "event": "LIST_FILES",
712
+ "icon": "list",
631
713
  "variant": "secondary",
632
- "icon": "list"
714
+ "event": "LIST_FILES",
715
+ "label": "List"
633
716
  },
634
717
  {
718
+ "icon": "trash-2",
635
719
  "type": "button",
636
- "label": "Delete",
637
- "event": "DELETE_FILE",
638
720
  "variant": "destructive",
639
- "icon": "trash-2"
721
+ "label": "Delete",
722
+ "event": "DELETE_FILE"
640
723
  }
641
- ]
724
+ ],
725
+ "direction": "horizontal",
726
+ "gap": "sm"
642
727
  }
643
- ]
728
+ ],
729
+ "direction": "vertical",
730
+ "gap": "lg",
731
+ "align": "stretch"
644
732
  }
645
733
  ]
646
734
  ]
647
735
  }
648
736
  ]
649
- }
737
+ },
738
+ "scope": "instance"
650
739
  }
651
740
  ],
652
741
  "pages": [
@@ -662,4 +751,4 @@
662
751
  ]
663
752
  }
664
753
  ]
665
- }
754
+ }