@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-redis",
3
3
  "version": "1.0.0",
4
- "description": "Redis cache integration behavior: get, set, delete with TTL support. Wraps the `redis` service with separate events for each operation. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-redis as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceRedisOrbital",
@@ -46,7 +46,7 @@
46
46
  {
47
47
  "name": "ttl",
48
48
  "type": "number",
49
- "default": 3600
49
+ "default": 3600.0
50
50
  },
51
51
  {
52
52
  "name": "result",
@@ -66,8 +66,72 @@
66
66
  "traits": [
67
67
  {
68
68
  "name": "ServiceRedisRedis",
69
- "linkedEntity": "ServiceRedis",
70
69
  "category": "interaction",
70
+ "linkedEntity": "ServiceRedis",
71
+ "emits": [
72
+ {
73
+ "event": "ServiceRedisLoaded",
74
+ "description": "Fired when ServiceRedis 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": "key",
99
+ "type": "string"
100
+ },
101
+ {
102
+ "name": "value",
103
+ "type": "string"
104
+ },
105
+ {
106
+ "name": "ttl",
107
+ "type": "number"
108
+ },
109
+ {
110
+ "name": "result",
111
+ "type": "string"
112
+ },
113
+ {
114
+ "name": "redisStatus",
115
+ "type": "string"
116
+ },
117
+ {
118
+ "name": "error",
119
+ "type": "string"
120
+ }
121
+ ]
122
+ },
123
+ {
124
+ "event": "ServiceRedisLoadFailed",
125
+ "description": "Fired when ServiceRedis 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
  {
@@ -126,6 +190,20 @@
126
190
  {
127
191
  "key": "RESET",
128
192
  "name": "Reset"
193
+ },
194
+ {
195
+ "key": "ServiceRedisLoaded",
196
+ "name": "ServiceRedis loaded"
197
+ },
198
+ {
199
+ "key": "ServiceRedisLoadFailed",
200
+ "name": "ServiceRedis load failed",
201
+ "payload": [
202
+ {
203
+ "name": "message",
204
+ "type": "string"
205
+ }
206
+ ]
129
207
  }
130
208
  ],
131
209
  "transitions": [
@@ -136,26 +214,31 @@
136
214
  "effects": [
137
215
  [
138
216
  "fetch",
139
- "ServiceRedis"
217
+ "ServiceRedis",
218
+ {
219
+ "emit": {
220
+ "success": "ServiceRedisLoaded",
221
+ "failure": "ServiceRedisLoadFailed"
222
+ }
223
+ }
140
224
  ],
141
225
  [
142
226
  "render-ui",
143
227
  "main",
144
228
  {
145
- "type": "stack",
146
- "direction": "vertical",
147
229
  "gap": "lg",
230
+ "type": "stack",
148
231
  "align": "center",
149
232
  "children": [
150
233
  {
151
234
  "type": "stack",
152
- "direction": "horizontal",
153
235
  "gap": "md",
154
236
  "align": "center",
237
+ "direction": "horizontal",
155
238
  "children": [
156
239
  {
157
- "type": "icon",
158
240
  "name": "database",
241
+ "type": "icon",
159
242
  "size": "lg"
160
243
  },
161
244
  {
@@ -169,61 +252,62 @@
169
252
  "type": "divider"
170
253
  },
171
254
  {
172
- "type": "stack",
173
- "direction": "vertical",
174
255
  "gap": "md",
256
+ "direction": "vertical",
257
+ "type": "stack",
175
258
  "children": [
176
259
  {
177
260
  "type": "input",
178
- "label": "Key",
261
+ "placeholder": "cache-key",
179
262
  "bind": "@entity.key",
180
- "placeholder": "cache-key"
263
+ "label": "Key"
181
264
  },
182
265
  {
183
- "type": "input",
184
266
  "label": "Value",
185
267
  "bind": "@entity.value",
268
+ "type": "input",
186
269
  "placeholder": "cache-value"
187
270
  },
188
271
  {
189
- "type": "input",
190
- "label": "TTL (seconds)",
272
+ "placeholder": "3600",
191
273
  "bind": "@entity.ttl",
274
+ "label": "TTL (seconds)",
192
275
  "inputType": "number",
193
- "placeholder": "3600"
276
+ "type": "input"
194
277
  }
195
278
  ]
196
279
  },
197
280
  {
198
281
  "type": "stack",
199
282
  "direction": "horizontal",
200
- "gap": "sm",
201
283
  "justify": "center",
202
284
  "children": [
203
285
  {
286
+ "variant": "primary",
204
287
  "type": "button",
205
- "label": "Get",
206
288
  "event": "GET_KEY",
207
- "variant": "primary",
208
- "icon": "download"
289
+ "icon": "download",
290
+ "label": "Get"
209
291
  },
210
292
  {
293
+ "icon": "upload",
211
294
  "type": "button",
212
295
  "label": "Set",
213
- "event": "SET_KEY",
214
296
  "variant": "primary",
215
- "icon": "upload"
297
+ "event": "SET_KEY"
216
298
  },
217
299
  {
218
300
  "type": "button",
219
- "label": "Delete",
220
301
  "event": "DELETE_KEY",
221
302
  "variant": "destructive",
303
+ "label": "Delete",
222
304
  "icon": "trash-2"
223
305
  }
224
- ]
306
+ ],
307
+ "gap": "sm"
225
308
  }
226
- ]
309
+ ],
310
+ "direction": "vertical"
227
311
  }
228
312
  ]
229
313
  ]
@@ -238,8 +322,8 @@
238
322
  "main",
239
323
  {
240
324
  "type": "loading-state",
241
- "title": "Executing...",
242
- "message": "Running redis operation..."
325
+ "message": "Running redis operation...",
326
+ "title": "Executing..."
243
327
  }
244
328
  ],
245
329
  [
@@ -261,9 +345,9 @@
261
345
  "render-ui",
262
346
  "main",
263
347
  {
348
+ "message": "Running redis operation...",
264
349
  "type": "loading-state",
265
- "title": "Executing...",
266
- "message": "Running redis operation..."
350
+ "title": "Executing..."
267
351
  }
268
352
  ],
269
353
  [
@@ -272,8 +356,8 @@
272
356
  "set",
273
357
  {
274
358
  "key": "@entity.key",
275
- "value": "@entity.value",
276
- "ttl": "@entity.ttl"
359
+ "ttl": "@entity.ttl",
360
+ "value": "@entity.value"
277
361
  }
278
362
  ]
279
363
  ]
@@ -287,9 +371,9 @@
287
371
  "render-ui",
288
372
  "main",
289
373
  {
290
- "type": "loading-state",
291
374
  "title": "Executing...",
292
- "message": "Running redis operation..."
375
+ "message": "Running redis operation...",
376
+ "type": "loading-state"
293
377
  }
294
378
  ],
295
379
  [
@@ -316,8 +400,6 @@
316
400
  "render-ui",
317
401
  "main",
318
402
  {
319
- "type": "stack",
320
- "direction": "vertical",
321
403
  "gap": "lg",
322
404
  "align": "center",
323
405
  "children": [
@@ -327,9 +409,9 @@
327
409
  "size": "lg"
328
410
  },
329
411
  {
412
+ "message": "Operation complete",
330
413
  "type": "alert",
331
- "variant": "success",
332
- "message": "Operation complete"
414
+ "variant": "success"
333
415
  },
334
416
  {
335
417
  "type": "typography",
@@ -338,13 +420,15 @@
338
420
  "content": "@entity.result"
339
421
  },
340
422
  {
341
- "type": "button",
342
423
  "label": "Reset",
343
424
  "event": "RESET",
344
425
  "variant": "ghost",
426
+ "type": "button",
345
427
  "icon": "rotate-ccw"
346
428
  }
347
- ]
429
+ ],
430
+ "type": "stack",
431
+ "direction": "vertical"
348
432
  }
349
433
  ]
350
434
  ]
@@ -363,10 +447,10 @@
363
447
  "render-ui",
364
448
  "main",
365
449
  {
366
- "type": "error-state",
367
450
  "title": "Redis Error",
451
+ "onRetry": "RESET",
368
452
  "message": "@entity.error",
369
- "onRetry": "RESET"
453
+ "type": "error-state"
370
454
  }
371
455
  ]
372
456
  ]
@@ -380,16 +464,13 @@
380
464
  "render-ui",
381
465
  "main",
382
466
  {
383
- "type": "stack",
384
- "direction": "vertical",
385
467
  "gap": "lg",
386
- "align": "center",
387
468
  "children": [
388
469
  {
389
- "type": "stack",
470
+ "align": "center",
390
471
  "direction": "horizontal",
472
+ "type": "stack",
391
473
  "gap": "md",
392
- "align": "center",
393
474
  "children": [
394
475
  {
395
476
  "type": "icon",
@@ -397,9 +478,9 @@
397
478
  "size": "lg"
398
479
  },
399
480
  {
400
- "type": "typography",
481
+ "variant": "h2",
401
482
  "content": "Redis Cache",
402
- "variant": "h2"
483
+ "type": "typography"
403
484
  }
404
485
  ]
405
486
  },
@@ -407,61 +488,64 @@
407
488
  "type": "divider"
408
489
  },
409
490
  {
410
- "type": "stack",
411
- "direction": "vertical",
412
- "gap": "md",
413
491
  "children": [
414
492
  {
493
+ "placeholder": "cache-key",
415
494
  "type": "input",
416
- "label": "Key",
417
495
  "bind": "@entity.key",
418
- "placeholder": "cache-key"
496
+ "label": "Key"
419
497
  },
420
498
  {
421
- "type": "input",
422
499
  "label": "Value",
423
- "bind": "@entity.value",
424
- "placeholder": "cache-value"
500
+ "placeholder": "cache-value",
501
+ "type": "input",
502
+ "bind": "@entity.value"
425
503
  },
426
504
  {
427
505
  "type": "input",
428
- "label": "TTL (seconds)",
429
506
  "bind": "@entity.ttl",
430
- "inputType": "number",
431
- "placeholder": "3600"
507
+ "placeholder": "3600",
508
+ "label": "TTL (seconds)",
509
+ "inputType": "number"
432
510
  }
433
- ]
511
+ ],
512
+ "type": "stack",
513
+ "direction": "vertical",
514
+ "gap": "md"
434
515
  },
435
516
  {
436
- "type": "stack",
437
- "direction": "horizontal",
438
- "gap": "sm",
439
- "justify": "center",
440
517
  "children": [
441
518
  {
442
- "type": "button",
443
- "label": "Get",
444
519
  "event": "GET_KEY",
445
520
  "variant": "primary",
446
- "icon": "download"
521
+ "icon": "download",
522
+ "type": "button",
523
+ "label": "Get"
447
524
  },
448
525
  {
526
+ "icon": "upload",
449
527
  "type": "button",
450
- "label": "Set",
451
- "event": "SET_KEY",
452
528
  "variant": "primary",
453
- "icon": "upload"
529
+ "event": "SET_KEY",
530
+ "label": "Set"
454
531
  },
455
532
  {
456
- "type": "button",
457
- "label": "Delete",
458
533
  "event": "DELETE_KEY",
534
+ "icon": "trash-2",
535
+ "label": "Delete",
459
536
  "variant": "destructive",
460
- "icon": "trash-2"
537
+ "type": "button"
461
538
  }
462
- ]
539
+ ],
540
+ "type": "stack",
541
+ "direction": "horizontal",
542
+ "gap": "sm",
543
+ "justify": "center"
463
544
  }
464
- ]
545
+ ],
546
+ "type": "stack",
547
+ "direction": "vertical",
548
+ "align": "center"
465
549
  }
466
550
  ]
467
551
  ]
@@ -475,14 +559,14 @@
475
559
  "render-ui",
476
560
  "main",
477
561
  {
478
- "type": "stack",
479
- "direction": "vertical",
480
562
  "gap": "lg",
481
563
  "align": "center",
564
+ "type": "stack",
565
+ "direction": "vertical",
482
566
  "children": [
483
567
  {
484
- "type": "stack",
485
568
  "direction": "horizontal",
569
+ "type": "stack",
486
570
  "gap": "md",
487
571
  "align": "center",
488
572
  "children": [
@@ -515,44 +599,44 @@
515
599
  {
516
600
  "type": "input",
517
601
  "label": "Value",
518
- "bind": "@entity.value",
519
- "placeholder": "cache-value"
602
+ "placeholder": "cache-value",
603
+ "bind": "@entity.value"
520
604
  },
521
605
  {
522
606
  "type": "input",
523
- "label": "TTL (seconds)",
524
607
  "bind": "@entity.ttl",
525
608
  "inputType": "number",
609
+ "label": "TTL (seconds)",
526
610
  "placeholder": "3600"
527
611
  }
528
612
  ]
529
613
  },
530
614
  {
531
- "type": "stack",
532
615
  "direction": "horizontal",
533
- "gap": "sm",
534
616
  "justify": "center",
617
+ "type": "stack",
618
+ "gap": "sm",
535
619
  "children": [
536
620
  {
537
- "type": "button",
538
621
  "label": "Get",
539
- "event": "GET_KEY",
622
+ "type": "button",
540
623
  "variant": "primary",
541
- "icon": "download"
624
+ "icon": "download",
625
+ "event": "GET_KEY"
542
626
  },
543
627
  {
628
+ "variant": "primary",
544
629
  "type": "button",
545
630
  "label": "Set",
546
631
  "event": "SET_KEY",
547
- "variant": "primary",
548
632
  "icon": "upload"
549
633
  },
550
634
  {
551
- "type": "button",
552
635
  "label": "Delete",
553
- "event": "DELETE_KEY",
554
636
  "variant": "destructive",
555
- "icon": "trash-2"
637
+ "icon": "trash-2",
638
+ "type": "button",
639
+ "event": "DELETE_KEY"
556
640
  }
557
641
  ]
558
642
  }
@@ -562,7 +646,8 @@
562
646
  ]
563
647
  }
564
648
  ]
565
- }
649
+ },
650
+ "scope": "instance"
566
651
  }
567
652
  ],
568
653
  "pages": [
@@ -578,4 +663,4 @@
578
663
  ]
579
664
  }
580
665
  ]
581
- }
666
+ }